Top Description Methods
org.graalvm.nativeimage.c.type

public Interface CFloatPointer

extends PointerBase
Annotations
@CPointerTo
nameOfCType:float
Imports
org.graalvm.nativeimage.c.struct.CPointerTo, org.graalvm.word.PointerBase, .SignedWord

A pointer to a C primitive 'float' value.
Since
19.0

Method Summary

Modifier and TypeMethod and Description
public CFloatPointer
addressOf(int index)

Computes the address of the array element with the specified index, treating the pointer as an array of the C type.

public CFloatPointer
addressOf(SignedWord index)

Computes the address of the array element with the specified index, treating the pointer as an array of the C type.

public float
read()

Reads the value at the pointer address.

public float
read(int index)

Reads the value of the array element with the specified index, treating the pointer as an array of the C type.

public float
read(SignedWord index)

Reads the value of the array element with the specified index, treating the pointer as an array of the C type.

public void
write(float value)

Writes the value at the pointer address.

public void
write(int index, float value)

Writes the value of the array element with the specified index, treating the pointer as an array of the C type.

public void
write(SignedWord index, float value)

Writes the value of the array element with the specified index, treating the pointer as an array of the C type.

Inherited from org.graalvm.word.PointerBase:
isNonNullisNull

Method Detail

addressOfback to summary
public CFloatPointer addressOf(int index)

Computes the address of the array element with the specified index, treating the pointer as an array of the C type.

Since
19.0
addressOfback to summary
public CFloatPointer addressOf(SignedWord index)

Computes the address of the array element with the specified index, treating the pointer as an array of the C type.

Since
19.0
readback to summary
public float read()

Reads the value at the pointer address.

Since
19.0
readback to summary
public float read(int index)

Reads the value of the array element with the specified index, treating the pointer as an array of the C type.

Since
19.0
readback to summary
public float read(SignedWord index)

Reads the value of the array element with the specified index, treating the pointer as an array of the C type.

Since
19.0
writeback to summary
public void write(float value)

Writes the value at the pointer address.

Since
19.0
writeback to summary
public void write(int index, float value)

Writes the value of the array element with the specified index, treating the pointer as an array of the C type.

Since
19.0
writeback to summary
public void write(SignedWord index, float value)

Writes the value of the array element with the specified index, treating the pointer as an array of the C type.

Since
19.0