Searched refs:peekLong (Results 1 - 10 of 10) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DUUID.java156 long msb = Memory.peekLong(hash, 0, ByteOrder.BIG_ENDIAN);
157 long lsb = Memory.peekLong(hash, 8, ByteOrder.BIG_ENDIAN);
/libcore/luni/src/main/java/java/nio/
H A DMemoryBlock.java253 public final long peekLong(int offset, ByteOrder order) { method in class:MemoryBlock
254 return Memory.peekLong(address + offset, order.needsSwap);
H A DDirectByteBuffer.java198 double result = Double.longBitsToDouble(this.block.peekLong(offset + position, order));
206 return Double.longBitsToDouble(this.block.peekLong(offset + index, order));
249 long result = this.block.peekLong(offset + position, order);
257 return this.block.peekLong(offset + index, order);
H A DByteArrayBuffer.java213 long result = Memory.peekLong(backingArray, arrayOffset + position, order);
220 return Memory.peekLong(backingArray, arrayOffset + index, order);
/libcore/luni/src/main/java/libcore/io/
H A DMemory.java59 public static long peekLong(byte[] src, int offset, ByteOrder order) { method in class:Memory
164 public static long peekLong(long address, boolean swap) { method in class:Memory
/libcore/luni/src/main/java/java/io/
H A DDataInputStream.java148 return Memory.peekLong(scratch, 0, ByteOrder.BIG_ENDIAN);
H A DRandomAccessFile.java500 return Memory.peekLong(scratch, 0, ByteOrder.BIG_ENDIAN);
H A DObjectStreamClass.java603 return Memory.peekLong(hash, 0, ByteOrder.LITTLE_ENDIAN);
/libcore/luni/src/test/java/libcore/io/
H A DMemoryTest.java103 assertEquals(expectedValues[i], Memory.peekLong(ptr + SizeOf.LONG * i, swap));
/libcore/luni/src/main/java/java/util/zip/
H A DZipInputStream.java205 currentEntry.compressedSize = Memory.peekLong(hdrBuf, EXTSIZ, ByteOrder.LITTLE_ENDIAN);
208 currentEntry.size = Memory.peekLong(hdrBuf, EXTLEN + 4, ByteOrder.LITTLE_ENDIAN);

Completed in 190 milliseconds