Modifier and Type | Method 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 | |
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 | |
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. |
addressOf | back 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.
|
addressOf | back 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.
|
read | back to summary |
---|---|
public float read() Reads the value at the pointer address.
|
read | back 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.
|
read | back 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.
|
write | back to summary |
---|---|
public void write(float value) Writes the value at the pointer address.
|
write | back 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.
|
write | back 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.
|