Searched defs:peekShort (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/util/zip/
H A DZipInputStream.java230 int version = peekShort(0) & 0xff;
234 int flags = peekShort(LOCFLG - LOCVER);
240 int ceLastModifiedTime = peekShort(LOCTIM - LOCVER);
241 int ceLastModifiedDate = peekShort(LOCTIM - LOCVER + 2);
242 int ceCompressionMethod = peekShort(LOCHOW - LOCVER);
249 int nameLength = peekShort(LOCNAM - LOCVER);
253 int extraLength = peekShort(LOCEXT - LOCVER);
289 private int peekShort(int offset) { method in class:ZipInputStream
290 return Memory.peekShort(hdrBuf, offset, ByteOrder.LITTLE_ENDIAN) & 0xffff;
/libcore/luni/src/main/java/java/nio/
H A DMemoryBlock.java237 public final short peekShort(int offset, ByteOrder order) { method in class:MemoryBlock
238 return Memory.peekShort(address + offset, order.needsSwap);
/libcore/luni/src/main/java/libcore/io/
H A DMemory.java83 public static short peekShort(byte[] src, int offset, ByteOrder order) { method in class:Memory
173 public static short peekShort(long address, boolean swap) { method in class:Memory

Completed in 547 milliseconds