Class ZSTD_outBuffer_s

java.lang.Object
dev.freya02.discord.zstd.ffm.ZSTD_outBuffer_s
Direct Known Subclasses:
ZSTD_outBuffer

public class ZSTD_outBuffer_s extends Object
struct ZSTD_outBuffer_s {
    void *dst;
    size_t size;
    size_t pos;
}
  • Method Details

    • layout

      public static final GroupLayout layout()
      The layout of this struct
    • dst

      public static MemorySegment dst(MemorySegment struct)
      Getter for field:
      void *dst
      
    • dst

      public static void dst(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      void *dst
      
    • size

      public static long size(MemorySegment struct)
      Getter for field:
      size_t size
      
    • size

      public static void size(MemorySegment struct, long fieldValue)
      Setter for field:
      size_t size
      
    • pos

      public static long pos(MemorySegment struct)
      Getter for field:
      size_t pos
      
    • pos

      public static void pos(MemorySegment struct, long fieldValue)
      Setter for field:
      size_t pos
      
    • asSlice

      public static MemorySegment asSlice(MemorySegment array, long index)
      Obtains a slice of arrayParam which selects the array element at index. The returned segment has address arrayParam.address() + index * layout().byteSize()
    • sizeof

      public static long sizeof()
      The size (in bytes) of this struct
    • allocate

      public static MemorySegment allocate(SegmentAllocator allocator)
      Allocate a segment of size layout().byteSize() using allocator
    • allocateArray

      public static MemorySegment allocateArray(long elementCount, SegmentAllocator allocator)
      Allocate an array of size elementCount using allocator. The returned segment has size elementCount * layout().byteSize().
    • reinterpret

      public static MemorySegment reinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup)
      Reinterprets addr using target arena and cleanupAction (if any). The returned segment has size layout().byteSize()
    • reinterpret

      public static MemorySegment reinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup)
      Reinterprets addr using target arena and cleanupAction (if any). The returned segment has size elementCount * layout().byteSize()