Package org.lwjgl.util.hwloc
Class hwloc_cache_attr_s
- All Implemented Interfaces:
Pointer
struct hwloc_cache_attr_s {
hwloc_uint64_t size;
unsigned depth;
unsigned linesize;
int associativity;
hwloc_obj_cache_type_t type;
}
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
Struct.StructValidation
Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
The struct alignment in bytes.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct member offsets.static final int
The struct size in bytes.static final int
The struct member offsets.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE
-
Constructor Summary
ConstructorsConstructorDescriptionhwloc_cache_attr_s
(ByteBuffer container) Creates ahwloc_cache_attr_s
instance at the current position of the specifiedByteBuffer
container. -
Method Summary
Modifier and TypeMethodDescriptionint
static hwloc_cache_attr_s
create
(long address) Returns a newhwloc_cache_attr_s
instance for the specified memory address.static hwloc_cache_attr_s.Buffer
create
(long address, int capacity) Create ahwloc_cache_attr_s.Buffer
instance at the specified memory.static @Nullable hwloc_cache_attr_s
createSafe
(long address) static @Nullable hwloc_cache_attr_s.Buffer
createSafe
(long address, int capacity) int
depth()
int
linesize()
static int
nassociativity
(long struct) Unsafe version ofassociativity()
.static int
ndepth
(long struct) Unsafe version ofdepth()
.static int
nlinesize
(long struct) Unsafe version oflinesize()
.static long
nsize
(long struct) Unsafe version ofsize()
.static int
ntype
(long struct) Unsafe version oftype()
.long
size()
int
sizeof()
Returnssizeof(struct)
.int
type()
Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toString
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
SIZE
public static final int SIZEThe struct member offsets. -
DEPTH
public static final int DEPTHThe struct member offsets. -
LINESIZE
public static final int LINESIZEThe struct member offsets. -
ASSOCIATIVITY
public static final int ASSOCIATIVITYThe struct member offsets. -
TYPE
public static final int TYPEThe struct member offsets.
-
-
Constructor Details
-
hwloc_cache_attr_s
Creates ahwloc_cache_attr_s
instance at the current position of the specifiedByteBuffer
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
Returnssizeof(struct)
.- Specified by:
sizeof
in classStruct<hwloc_cache_attr_s>
-
size
public long size()- Returns:
- the value of the
size
field.
-
depth
public int depth()- Returns:
- the value of the
depth
field.
-
linesize
public int linesize()- Returns:
- the value of the
linesize
field.
-
associativity
public int associativity()- Returns:
- the value of the
associativity
field.
-
type
public int type()- Returns:
- the value of the
type
field.
-
create
Returns a newhwloc_cache_attr_s
instance for the specified memory address. -
createSafe
-
create
Create ahwloc_cache_attr_s.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
-
nsize
public static long nsize(long struct) Unsafe version ofsize()
. -
ndepth
public static int ndepth(long struct) Unsafe version ofdepth()
. -
nlinesize
public static int nlinesize(long struct) Unsafe version oflinesize()
. -
nassociativity
public static int nassociativity(long struct) Unsafe version ofassociativity()
. -
ntype
public static int ntype(long struct) Unsafe version oftype()
.
-