Searched defs:LL (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipConstants.java199 static final long LL(byte[] b, int n) { method in class:ZipConstants
233 static final long ZIP64_ENDTOD(byte[] b) { return LL(b, 24);} // total number of entries on disk
234 static final long ZIP64_ENDTOT(byte[] b) { return LL(b, 32);} // total number of entries
235 static final long ZIP64_ENDSIZ(byte[] b) { return LL(b, 40);} // central directory size
236 static final long ZIP64_ENDOFF(byte[] b) { return LL(b, 48);} // central directory offset
237 static final long ZIP64_LOCOFF(byte[] b) { return LL(b, 8);} // zip64 end offset
/openjdk7/jdk/src/share/native/java/util/zip/
H A Dzip_util.h68 #define LL(b, n) (((jlong)LG(b, n)) | (((jlong)LG(b, n+4)) << 32)) macro
122 #define ZIP64_ENDLEN(b) LL(b, 4) /* size of zip64 end of central dir */
127 #define ZIP64_ENDTOD(b) LL(b, 24) /* total number of entries on this disk */
128 #define ZIP64_ENDTOT(b) LL(b, 32) /* total number of entries */
129 #define ZIP64_ENDSIZ(b) LL(b, 40) /* central directory size in bytes */
130 #define ZIP64_ENDOFF(b) LL(b, 48) /* offset of first CEN header */
136 #define ZIP64_LOCOFF(b) LL(b, 8) /* offset of zip64 end */

Completed in 93 milliseconds