Package | Description |
---|---|
org.bridj |
Modifier and Type | Field and Description |
---|---|
static SizeT |
SizeT.ONE |
static SizeT |
SizeT.ZERO |
Modifier and Type | Method and Description |
---|---|
static SizeT |
SizeT.valueOf(long value) |
Modifier and Type | Method and Description |
---|---|
static Pointer<SizeT> |
Pointer.allocateSizeT()
Allocate enough memory for a SizeT value and return a pointer to it.
|
static Pointer<SizeT> |
Pointer.allocateSizeTs(long arrayLength)
Allocate enough memory for arrayLength SizeT values and return a pointer to that memory.
|
static PointerIO<SizeT> |
PointerIO.getSizeTInstance() |
static Pointer<SizeT> |
Pointer.pointerToSizeT(long value)
Allocate enough memory for a single SizeT value, copy the value provided in argument into it and return a pointer to that memory.
|
static Pointer<SizeT> |
Pointer.pointerToSizeT(SizeT value)
Allocate enough memory for a single SizeT value, copy the value provided in argument into it and return a pointer to that memory.
|
static Pointer<SizeT> |
Pointer.pointerToSizeTs(int[] values)
Allocate enough memory for values.length SizeT values, copy the values provided as argument into it and return a pointer to that memory.
|
static Pointer<SizeT> |
Pointer.pointerToSizeTs(long... values)
Allocate enough memory for values.length SizeT values, copy the values provided as argument into it and return a pointer to that memory.
|
static Pointer<SizeT> |
Pointer.pointerToSizeTs(SizeT... values)
Allocate enough memory for values.length SizeT values, copy the values provided as argument into it and return a pointer to that memory.
|
Modifier and Type | Method and Description |
---|---|
static Pointer<SizeT> |
Pointer.pointerToSizeT(SizeT value)
Allocate enough memory for a single SizeT value, copy the value provided in argument into it and return a pointer to that memory.
|
static Pointer<SizeT> |
Pointer.pointerToSizeTs(SizeT... values)
Allocate enough memory for values.length SizeT values, copy the values provided as argument into it and return a pointer to that memory.
|
Pointer<T> |
Pointer.setSizeT(SizeT value)
Write a SizeT value to the pointed memory location
|
Pointer<T> |
Pointer.setSizeTAtOffset(long byteOffset,
SizeT value)
Deprecated.
Avoid using the byte offset methods variants unless you know what you're doing (may cause alignment issues). Please favour
Pointer.setSizeT(SizeT) over this method. |
Pointer<T> |
Pointer.setSizeTs(SizeT[] values)
Write an array of SizeT values to the pointed memory location
|
Pointer<T> |
Pointer.setSizeTsAtOffset(long byteOffset,
SizeT... values)
Deprecated.
Avoid using the byte offset methods variants unless you know what you're doing (may cause alignment issues). Please favour
Pointer.setSizeTs(SizeT...) over this method. |
Copyright © 2009-2020. All Rights Reserved.