Searched refs:F_COMPRESSED_SIZE (Results 1 – 2 of 2) sorted by relevance
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/ |
D | StoredEntry.java | 127 private static final ZipField.F4 F_COMPRESSED_SIZE = new ZipField.F4(F_CRC32.endOffset(), field in StoredEntry 134 F_COMPRESSED_SIZE.endOffset(), "Uncompressed size", new ZipFieldInvariantNonNegative()); 459 F_COMPRESSED_SIZE.skip(bytes); in readLocalHeader() 463 F_COMPRESSED_SIZE.verify(bytes, compressInfo.getCompressedSize(), verifyLog); in readLocalHeader() 724 F_COMPRESSED_SIZE.write(out, compressInfo.getCompressedSize()); in toHeaderData()
|
D | CentralDirectory.java | 98 private static final ZipField.F4 F_COMPRESSED_SIZE = new ZipField.F4(F_CRC32.endOffset(), field in CentralDirectory 108 F_COMPRESSED_SIZE.endOffset(), "Uncompressed size", new ZipFieldInvariantNonNegative()); 311 long compressedSize = F_COMPRESSED_SIZE.read(bytes); in readEntry() 468 F_COMPRESSED_SIZE.write(out, compressInfos[idx].getCompressedSize()); in computeByteRepresentation()
|