Class ZDICTCoverParams

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class ZDICTCoverParams extends Struct<ZDICTCoverParams> implements NativeResource

 struct ZDICT_cover_params_t {
     unsigned k;
     unsigned d;
     unsigned steps;
     unsigned nbThreads;
     double splitPoint;
     ZDICT_params_t zParams;
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • K

      public static final int K
      The struct member offsets.
    • D

      public static final int D
      The struct member offsets.
    • STEPS

      public static final int STEPS
      The struct member offsets.
    • NBTHREADS

      public static final int NBTHREADS
      The struct member offsets.
    • SPLITPOINT

      public static final int SPLITPOINT
      The struct member offsets.
    • ZPARAMS

      public static final int ZPARAMS
      The struct member offsets.
  • Constructor Details

    • ZDICTCoverParams

      public ZDICTCoverParams(ByteBuffer container)
      Creates a ZDICTCoverParams instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details

    • sizeof

      public int sizeof()
      Description copied from class: Struct
      Returns sizeof(struct).
      Specified by:
      sizeof in class Struct<ZDICTCoverParams>
    • k

      public int k()
      Returns:
      the value of the k field.
    • d

      public int d()
      Returns:
      the value of the d field.
    • steps

      public int steps()
      Returns:
      the value of the steps field.
    • nbThreads

      public int nbThreads()
      Returns:
      the value of the nbThreads field.
    • splitPoint

      public double splitPoint()
      Returns:
      the value of the splitPoint field.
    • zParams

      public ZDICTParams zParams()
      Returns:
      a ZDICTParams view of the zParams field.
    • k

      public ZDICTCoverParams k(int value)
      Sets the specified value to the k field.
    • d

      public ZDICTCoverParams d(int value)
      Sets the specified value to the d field.
    • steps

      public ZDICTCoverParams steps(int value)
      Sets the specified value to the steps field.
    • nbThreads

      public ZDICTCoverParams nbThreads(int value)
      Sets the specified value to the nbThreads field.
    • splitPoint

      public ZDICTCoverParams splitPoint(double value)
      Sets the specified value to the splitPoint field.
    • zParams

      public ZDICTCoverParams zParams(ZDICTParams value)
      Copies the specified ZDICTParams to the zParams field.
    • zParams

      public ZDICTCoverParams zParams(Consumer<ZDICTParams> consumer)
      Passes the zParams field to the specified Consumer.
    • set

      public ZDICTCoverParams set(int k, int d, int steps, int nbThreads, double splitPoint, ZDICTParams zParams)
      Initializes this struct with the specified values.
    • set

      Copies the specified struct data to this struct.
      Parameters:
      src - the source struct
      Returns:
      this struct
    • malloc

      public static ZDICTCoverParams malloc()
      Returns a new ZDICTCoverParams instance allocated with memAlloc. The instance must be explicitly freed.
    • calloc

      public static ZDICTCoverParams calloc()
      Returns a new ZDICTCoverParams instance allocated with memCalloc. The instance must be explicitly freed.
    • create

      public static ZDICTCoverParams create()
      Returns a new ZDICTCoverParams instance allocated with BufferUtils.
    • create

      public static ZDICTCoverParams create(long address)
      Returns a new ZDICTCoverParams instance for the specified memory address.
    • createSafe

      public static @Nullable ZDICTCoverParams createSafe(long address)
      Like create, but returns null if address is NULL.
    • malloc

      public static ZDICTCoverParams.Buffer malloc(int capacity)
      Returns a new ZDICTCoverParams.Buffer instance allocated with memAlloc. The instance must be explicitly freed.
      Parameters:
      capacity - the buffer capacity
    • calloc

      public static ZDICTCoverParams.Buffer calloc(int capacity)
      Returns a new ZDICTCoverParams.Buffer instance allocated with memCalloc. The instance must be explicitly freed.
      Parameters:
      capacity - the buffer capacity
    • create

      public static ZDICTCoverParams.Buffer create(int capacity)
      Returns a new ZDICTCoverParams.Buffer instance allocated with BufferUtils.
      Parameters:
      capacity - the buffer capacity
    • create

      public static ZDICTCoverParams.Buffer create(long address, int capacity)
      Create a ZDICTCoverParams.Buffer instance at the specified memory.
      Parameters:
      address - the memory address
      capacity - the buffer capacity
    • createSafe

      public static @Nullable ZDICTCoverParams.Buffer createSafe(long address, int capacity)
      Like create, but returns null if address is NULL.
    • malloc

      public static ZDICTCoverParams malloc(MemoryStack stack)
      Returns a new ZDICTCoverParams instance allocated on the specified MemoryStack.
      Parameters:
      stack - the stack from which to allocate
    • calloc

      public static ZDICTCoverParams calloc(MemoryStack stack)
      Returns a new ZDICTCoverParams instance allocated on the specified MemoryStack and initializes all its bits to zero.
      Parameters:
      stack - the stack from which to allocate
    • malloc

      public static ZDICTCoverParams.Buffer malloc(int capacity, MemoryStack stack)
      Returns a new ZDICTCoverParams.Buffer instance allocated on the specified MemoryStack.
      Parameters:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • calloc

      public static ZDICTCoverParams.Buffer calloc(int capacity, MemoryStack stack)
      Returns a new ZDICTCoverParams.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero.
      Parameters:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • nk

      public static int nk(long struct)
      Unsafe version of k().
    • nd

      public static int nd(long struct)
      Unsafe version of d().
    • nsteps

      public static int nsteps(long struct)
      Unsafe version of steps().
    • nnbThreads

      public static int nnbThreads(long struct)
      Unsafe version of nbThreads().
    • nsplitPoint

      public static double nsplitPoint(long struct)
      Unsafe version of splitPoint().
    • nzParams

      public static ZDICTParams nzParams(long struct)
      Unsafe version of zParams().
    • nk

      public static void nk(long struct, int value)
      Unsafe version of k.
    • nd

      public static void nd(long struct, int value)
      Unsafe version of d.
    • nsteps

      public static void nsteps(long struct, int value)
      Unsafe version of steps.
    • nnbThreads

      public static void nnbThreads(long struct, int value)
      Unsafe version of nbThreads.
    • nsplitPoint

      public static void nsplitPoint(long struct, double value)
      Unsafe version of splitPoint.
    • nzParams

      public static void nzParams(long struct, ZDICTParams value)
      Unsafe version of zParams.