Searched refs:get32 (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/java/util/zip/ |
D | ZipInputStream.java | 313 if (get32(tmpbuf, 0) != LOCSIG) { in readLOC() 340 e.xdostime = get32(tmpbuf, LOCTIM); in readLOC() 353 e.crc = get32(tmpbuf, LOCCRC); in readLOC() 354 e.csize = get32(tmpbuf, LOCSIZ); in readLOC() 355 e.size = get32(tmpbuf, LOCLEN); in readLOC() 405 long sig = get32(tmpbuf, 0); in readEnd() 413 e.crc = get32(tmpbuf, ZIP64_EXTCRC); in readEnd() 419 long sig = get32(tmpbuf, 0); in readEnd() 422 e.csize = get32(tmpbuf, EXTSIZ - EXTCRC); in readEnd() 423 e.size = get32(tmpbuf, EXTLEN - EXTCRC); in readEnd() [all …]
|
D | ZipUtils.java | 176 public static final long get32(byte b[], int off) { in get32() method in ZipUtils 185 return get32(b, off) | (get32(b, off+4) << 32); in get64()
|