HomeSort by relevance Sort by last modified time
    Searched refs:peekShort (Results 1 - 13 of 13) sorted by null

  /libcore/luni/src/main/java/java/util/zip/
ZipInputStream.java 243 int version = peekShort(0) & 0xff;
247 int flags = peekShort(LOCFLG - LOCVER);
249 int ceLastModifiedTime = peekShort(LOCTIM - LOCVER);
250 int ceLastModifiedDate = peekShort(LOCTIM - LOCVER + 2);
251 int ceCompressionMethod = peekShort(LOCHOW - LOCVER);
258 int nameLength = peekShort(LOCNAM - LOCVER);
262 int extraLength = peekShort(LOCEXT - LOCVER);
288 private int peekShort(int offset) {
289 return Memory.peekShort(hdrBuf, offset, ByteOrder.LITTLE_ENDIAN) & 0xffff;
GZIPInputStream.java 99 short magic = Memory.peekShort(header, 0, ByteOrder.LITTLE_ENDIAN);
113 int length = Memory.peekShort(header, 0, ByteOrder.LITTLE_ENDIAN) & 0xffff;
134 short crc16 = Memory.peekShort(header, 0, ByteOrder.LITTLE_ENDIAN);
  /libcore/luni/src/main/java/java/nio/
DirectByteBuffer.java 103 char result = (char) this.block.peekShort(offset + position, order);
111 return (char) this.block.peekShort(offset + index, order);
188 short result = this.block.peekShort(offset + position, order);
196 return this.block.peekShort(offset + index, order);
HeapByteBuffer.java 125 char result = (char) Memory.peekShort(backingArray, offset + position, order);
133 return (char) Memory.peekShort(backingArray, offset + index, order);
196 short result = Memory.peekShort(backingArray, offset + position, order);
204 return Memory.peekShort(backingArray, offset + index, order);
MemoryBlock.java 216 public final short peekShort(int offset, ByteOrder order) {
217 return Memory.peekShort(address + offset, order.needsSwap);
  /libcore/luni/src/main/java/libcore/io/
HeapBufferIterator.java 74 short result = Memory.peekShort(buffer, offset + position, order);
NioBufferIterator.java 71 short result = Memory.peekShort(address + position, swap);
Memory.java 83 public static short peekShort(byte[] src, int offset, ByteOrder order) {
156 public static native short peekShort(int address, boolean swap);
  /libcore/luni/src/main/java/java/net/
Socks4Message.java 80 return Memory.peekShort(buffer, INDEX_PORT, ByteOrder.BIG_ENDIAN);
  /libcore/luni/src/main/java/java/io/
DataInputStream.java 170 return Memory.peekShort(scratch, 0, ByteOrder.BIG_ENDIAN);
RandomAccessFile.java 518 return Memory.peekShort(scratch, 0, ByteOrder.BIG_ENDIAN);
  /libcore/luni/src/test/java/libcore/io/
MemoryTest.java 141 assertEquals(expectedValues[i], Memory.peekShort(ptr + SizeOf.SHORT * i, swap));
  /libcore/luni/src/main/native/
libcore_io_Memory.cpp 385 NATIVE_METHOD(Memory, peekShort, "!(IZ)S"),

Completed in 3450 milliseconds