Class ZSTD_outBuffer_s
java.lang.Object
dev.freya02.discord.zstd.ffm.ZSTD_outBuffer_s
- Direct Known Subclasses:
ZSTD_outBuffer
struct ZSTD_outBuffer_s {
void *dst;
size_t size;
size_t pos;
}
-
Method Summary
Modifier and TypeMethodDescriptionstatic MemorySegmentallocate(SegmentAllocator allocator) Allocate a segment of sizelayout().byteSize()usingallocatorstatic MemorySegmentallocateArray(long elementCount, SegmentAllocator allocator) Allocate an array of sizeelementCountusingallocator.static MemorySegmentasSlice(MemorySegment array, long index) Obtains a slice ofarrayParamwhich selects the array element atindex.static MemorySegmentdst(MemorySegment struct) Getter for field:void *dststatic voiddst(MemorySegment struct, MemorySegment fieldValue) Setter for field:void *dststatic final GroupLayoutlayout()The layout of this structstatic longpos(MemorySegment struct) Getter for field:size_t posstatic voidpos(MemorySegment struct, long fieldValue) Setter for field:size_t posstatic MemorySegmentreinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddrusing targetarenaandcleanupAction(if any).static MemorySegmentreinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddrusing targetarenaandcleanupAction(if any).static longsize(MemorySegment struct) Getter for field:size_t sizestatic voidsize(MemorySegment struct, long fieldValue) Setter for field:size_t sizestatic longsizeof()The size (in bytes) of this struct
-
Method Details
-
layout
The layout of this struct -
dst
Getter for field:void *dst -
dst
Setter for field:void *dst -
size
Getter for field:size_t size -
size
Setter for field:size_t size -
pos
Getter for field:size_t pos -
pos
Setter for field:size_t pos -
asSlice
Obtains a slice ofarrayParamwhich selects the array element atindex. The returned segment has addressarrayParam.address() + index * layout().byteSize() -
sizeof
public static long sizeof()The size (in bytes) of this struct -
allocate
Allocate a segment of sizelayout().byteSize()usingallocator -
allocateArray
Allocate an array of sizeelementCountusingallocator. The returned segment has sizeelementCount * layout().byteSize(). -
reinterpret
public static MemorySegment reinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddrusing targetarenaandcleanupAction(if any). The returned segment has sizelayout().byteSize() -
reinterpret
public static MemorySegment reinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddrusing targetarenaandcleanupAction(if any). The returned segment has sizeelementCount * layout().byteSize()
-