OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pokeIntArray
(Results
1 - 3
of
3
) sorted by null
/libcore/luni/src/test/java/libcore/io/
MemoryTest.java
37
Memory.
pokeIntArray
(ptr, values, 0, values.length, false);
42
Memory.
pokeIntArray
(ptr, values, 0, values.length, true);
48
Memory.
pokeIntArray
(ptr + i * scale, values, i, 1, true);
/libcore/luni/src/main/java/libcore/io/
Memory.java
175
public static native void
pokeIntArray
(int address, int[] src, int offset, int count, boolean swap);
/libcore/luni/src/main/java/java/nio/
MemoryBlock.java
168
public final void
pokeIntArray
(int offset, int[] src, int srcOffset, int intCount, boolean swap) {
169
Memory.
pokeIntArray
(address + offset, src, srcOffset, intCount, swap);
Completed in 36 milliseconds