Searched refs:LL (Results 1 – 3 of 3) sorted by relevance
/libcore/ojluni/src/main/native/ |
D | zip_util.h | 69 #define LL(b, n) (((jlong)LG(b, n)) | (((jlong)LG(b, n+4)) << 32)) macro 123 #define ZIP64_ENDLEN(b) LL(b, 4) /* size of zip64 end of central dir */ 128 #define ZIP64_ENDTOD(b) LL(b, 24) /* total number of entries on this disk */ 129 #define ZIP64_ENDTOT(b) LL(b, 32) /* total number of entries */ 130 #define ZIP64_ENDSIZ(b) LL(b, 40) /* central directory size in bytes */ 131 #define ZIP64_ENDOFF(b) LL(b, 48) /* offset of first CEN header */ 137 #define ZIP64_LOCOFF(b) LL(b, 8) /* offset of zip64 end */
|
D | zip_util.c | 1168 ze->size = LL(extra, off); in newEntry() 1175 ze->csize = LL(extra, off); in newEntry() 1182 ze->pos = -(zip->locpos + LL(extra, off)); in newEntry()
|
/libcore/ojluni/src/main/java/java/util/zip/ |
D | ZipUtils.java | 210 static final long LL(byte[] b, int n) { in LL() method in ZipUtils 255 … static final long ZIP64_ENDTOD(byte[] b) { return LL(b, 24);} // total number of entries on disk in ZIP64_ENDTOD() 256 static final long ZIP64_ENDTOT(byte[] b) { return LL(b, 32);} // total number of entries in ZIP64_ENDTOT() 257 static final long ZIP64_ENDSIZ(byte[] b) { return LL(b, 40);} // central directory size in ZIP64_ENDSIZ() 258 static final long ZIP64_ENDOFF(byte[] b) { return LL(b, 48);} // central directory offset in ZIP64_ENDOFF() 259 static final long ZIP64_LOCOFF(byte[] b) { return LL(b, 8);} // zip64 end offset in ZIP64_LOCOFF()
|