Class XXH32State

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class XXH32State extends Struct<XXH32State> implements NativeResource

 struct XXH32_state_t {
     XXH32_hash_t total_len_32;
     XXH32_hash_t large_len;
     XXH32_hash_t acc[4];
     unsigned char buffer[16];
     XXH32_hash_t bufferedSize;
     XXH32_hash_t reserved;
 }
  • Field Details

    • SIZEOF

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

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

      public static final int TOTAL_LEN_32
      The struct member offsets.
    • LARGE_LEN

      public static final int LARGE_LEN
      The struct member offsets.
    • ACC

      public static final int ACC
      The struct member offsets.
    • BUFFER

      public static final int BUFFER
      The struct member offsets.
    • BUFFEREDSIZE

      public static final int BUFFEREDSIZE
      The struct member offsets.
    • RESERVED

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

    • XXH32State

      public XXH32State(ByteBuffer container)
      Creates a XXH32State 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<XXH32State>
    • total_len_32

      public int total_len_32()
      Returns:
      the value of the total_len_32 field.
    • large_len

      public int large_len()
      Returns:
      the value of the large_len field.
    • acc

      public IntBuffer acc()
      Returns:
      a IntBuffer view of the acc field.
    • acc

      public int acc(int index)
      Returns:
      the value at the specified index of the acc field.
    • buffer

      public ByteBuffer buffer()
      Returns:
      a ByteBuffer view of the buffer field.
    • buffer

      public byte buffer(int index)
      Returns:
      the value at the specified index of the buffer field.
    • bufferedSize

      public int bufferedSize()
      Returns:
      the value of the bufferedSize field.
    • reserved

      public int reserved()
      Returns:
      the value of the reserved field.
    • malloc

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

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

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

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

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

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

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

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

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

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

      @Deprecated public static XXH32State mallocStack()
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(MemoryStack) instead.
    • callocStack

      @Deprecated public static XXH32State callocStack()
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
    • mallocStack

      @Deprecated public static XXH32State mallocStack(MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(MemoryStack) instead.
    • callocStack

      @Deprecated public static XXH32State callocStack(MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
    • mallocStack

      @Deprecated public static XXH32State.Buffer mallocStack(int capacity)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(int, MemoryStack) instead.
    • callocStack

      @Deprecated public static XXH32State.Buffer callocStack(int capacity)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(int, MemoryStack) instead.
    • mallocStack

      @Deprecated public static XXH32State.Buffer mallocStack(int capacity, MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(int, MemoryStack) instead.
    • callocStack

      @Deprecated public static XXH32State.Buffer callocStack(int capacity, MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(int, MemoryStack) instead.
    • malloc

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

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

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

      public static XXH32State.Buffer calloc(int capacity, MemoryStack stack)
      Returns a new XXH32State.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
    • ntotal_len_32

      public static int ntotal_len_32(long struct)
      Unsafe version of total_len_32().
    • nlarge_len

      public static int nlarge_len(long struct)
      Unsafe version of large_len().
    • nacc

      public static IntBuffer nacc(long struct)
      Unsafe version of acc().
    • nacc

      public static int nacc(long struct, int index)
      Unsafe version of acc.
    • nbuffer

      public static ByteBuffer nbuffer(long struct)
      Unsafe version of buffer().
    • nbuffer

      public static byte nbuffer(long struct, int index)
      Unsafe version of buffer.
    • nbufferedSize

      public static int nbufferedSize(long struct)
      Unsafe version of bufferedSize().
    • nreserved

      public static int nreserved(long struct)
      Unsafe version of reserved().