Searched refs:get32 (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/zip/
H A DZipInputStream.java293 if (get32(tmpbuf, 0) != LOCSIG) {
317 e.xdostime = get32(tmpbuf, LOCTIM);
325 e.crc = get32(tmpbuf, LOCCRC);
326 e.csize = get32(tmpbuf, LOCSIZ);
327 e.size = get32(tmpbuf, LOCLEN);
364 long sig = get32(tmpbuf, 0);
372 e.crc = get32(tmpbuf, ZIP64_EXTCRC);
378 long sig = get32(tmpbuf, 0);
381 e.csize = get32(tmpbuf, EXTSIZ - EXTCRC);
382 e.size = get32(tmpbu
[all...]
H A DZipUtils.java137 public static final long get32(byte b[], int off) { method in class:ZipUtils
146 return get32(b, off) | (get32(b, off+4) << 32);
H A DZipEntry.java533 mtime = unixTimeToFileTime(get32(extra, off + sz0));
537 atime = unixTimeToFileTime(get32(extra, off + sz0));
541 ctime = unixTimeToFileTime(get32(extra, off + sz0));

Completed in 58 milliseconds