Class LibDivideU16

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

    public class LibDivideU16
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource

    Layout

    
     struct libdivide_u16_t {
         uint16_t magic;
         uint8_t more;
     }
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  LibDivideU16.Buffer
      An array of LibDivideU16 structs.
      • Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer

        org.lwjgl.system.Pointer.Default
      • Nested classes/interfaces inherited from class org.lwjgl.system.Struct

        org.lwjgl.system.Struct.StructValidation
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int ALIGNOF
      The struct alignment in bytes.
      static int MAGIC
      MORE
      The struct member offsets.
      static int SIZEOF
      The struct size in bytes.
      • Fields inherited from interface org.lwjgl.system.Pointer

        BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE
    • Constructor Summary

      Constructors 
      Constructor Description
      LibDivideU16​(java.nio.ByteBuffer container)
      Creates a LibDivideU16 instance at the current position of the specified ByteBuffer container.
    • Field Detail

      • SIZEOF

        The struct size in bytes.
      • ALIGNOF

        The struct alignment in bytes.
      • MAGIC, MORE

        The struct member offsets.
    • Constructor Detail

      • LibDivideU16

        public LibDivideU16​(java.nio.ByteBuffer container)
        Creates a LibDivideU16 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 Detail

      • sizeof

        public int sizeof()
        Specified by:
        sizeof in class org.lwjgl.system.Struct
      • magic

        public short magic()
        Returns:
        the value of the magic field.
      • more

        public byte more()
        Returns:
        the value of the more field.
      • magic

        public LibDivideU16 magic​(short value)
        Sets the specified value to the magic field.
      • more

        public LibDivideU16 more​(byte value)
        Sets the specified value to the more field.
      • set

        public LibDivideU16 set​(short magic,
                                byte more)
        Initializes this struct with the specified values.
      • set

        public LibDivideU16 set​(LibDivideU16 src)
        Copies the specified struct data to this struct.
        Parameters:
        src - the source struct
        Returns:
        this struct
      • malloc

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

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

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

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

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

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

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

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

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

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

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

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

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

        public static short nmagic​(long struct)
        Unsafe version of magic().
      • nmore

        public static byte nmore​(long struct)
        Unsafe version of more().
      • nmagic

        public static void nmagic​(long struct,
                                  short value)
        Unsafe version of magic.
      • nmore

        public static void nmore​(long struct,
                                 byte value)
        Unsafe version of more.