Home
last modified time | relevance | path

Searched refs:loc64 (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/util/zip/
DZipFile.java1569 byte[] loc64 = new byte[ZIP64_LOCHDR]; in findEND()
1571 readFullyAt(loc64, 0, loc64.length, end.endpos - ZIP64_LOCHDR) in findEND()
1572 != loc64.length || GETSIG(loc64) != ZIP64_LOCSIG) { in findEND()
1575 long end64pos = ZIP64_LOCOFF(loc64); in findEND()
/libcore/ojluni/src/main/native/
Dzip_util.c412 char loc64[ZIP64_LOCHDR]; in findEND64() local
414 if (readFullyAt(zip->zfd, loc64, ZIP64_LOCHDR, endpos - ZIP64_LOCHDR) == -1) { in findEND64()
417 end64pos = ZIP64_LOCOFF(loc64); in findEND64()