OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:peekLong
(Results
1 - 3
of
3
) sorted by null
/libcore/luni/src/main/java/libcore/io/
Memory.java
59
public static long
peekLong
(byte[] src, int offset, ByteOrder order) {
164
public static long
peekLong
(long address, boolean swap) {
/libcore/luni/src/test/java/libcore/io/
MemoryTest.java
103
assertEquals(expectedValues[i], Memory.
peekLong
(ptr + SizeOf.LONG * i, swap));
/libcore/ojluni/src/main/java/java/nio/
DirectByteBuffer.java
563
return Memory.
peekLong
(a, !nativeByteOrder);
728
long x = Memory.
peekLong
(a, !nativeByteOrder);
Completed in 427 milliseconds