Home
last modified time | relevance | path

Searched refs:ZIP64_ENDOFF (Results 1 – 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/util/zip/
DZipConstants64.java59 static final int ZIP64_ENDOFF = 48; // offset of first CEN header field in ZipConstants64
DZipUtils.java258 static final long ZIP64_ENDOFF(byte[] b) { return LL(b, 48);} // central directory offset in ZIP64_ENDOFF() method in ZipUtils
DZipFile.java1583 long cenoff64 = ZIP64_ENDOFF(end64buf); in findEND()
/libcore/ojluni/src/main/native/
Dzip_util.h131 #define ZIP64_ENDOFF(b) LL(b, 48) /* offset of first CEN header */ macro
Dzip_util.c628 cenoff = ZIP64_ENDOFF(end64buf); in readCEN()