| java.lang.Object org.apache.harmony.awt.nativebridge.VoidPointer org.apache.harmony.awt.nativebridge.Int64Pointer
Method Summary | |
public void | fill(long value, int size) | public long | get(int index) returns the element at the specified position. | public void | get(long[] dst, int offset, int length) This method transfers long values into the given destination array. | public Int64Pointer | getElementPointer(int index) returns class that represents the pointer to specified index. | public void | set(int index, long value) sets the element at the specified position. | public void | set(long[] src, int offset, int length) This method transfers long values from the given destination array. | public int | size() returns the number of elements in array referenced by this object. |
Int64Pointer | Int64Pointer(int size, boolean direct)(Code) | | |
Int64Pointer | Int64Pointer(long addr)(Code) | | |
fill | public void fill(long value, int size)(Code) | | |
get | public long get(int index)(Code) | | returns the element at the specified position.
|
get | public void get(long[] dst, int offset, int length)(Code) | | This method transfers long values into the given destination array.
Parameters: dst - - The array into which values are to be written Parameters: offset - - The offset within the array of the first element to be written;must be non-negative and no larger than dst.length Parameters: length - - The maximum number of elements to be written to the given array;must be non-negative and no larger than dst.length - offset |
getElementPointer | public Int64Pointer getElementPointer(int index)(Code) | | returns class that represents the pointer to specified index.
|
set | public void set(int index, long value)(Code) | | sets the element at the specified position.
|
set | public void set(long[] src, int offset, int length)(Code) | | This method transfers long values from the given destination array.
Parameters: src - - The array from which values are to be read Parameters: offset - - The offset within the array of the first element to be read;must be non-negative and no larger than dst.length Parameters: length - - The maximum number of elements to be read from the given array;must be non-negative and no larger than dst.length - offset |
size | public int size()(Code) | | returns the number of elements in array referenced by this object. If size is unknown returns -1.
|
|
|