Searched refs:unpaddedSize (Results 1 – 7 of 7) sorted by relevance
/external/xz-java/src/org/tukaani/xz/index/ |
D | IndexHash.java | 35 public void add(long unpaddedSize, long uncompressedSize) in add() argument 37 super.add(unpaddedSize, uncompressedSize); in add() 40 buf.putLong(unpaddedSize); in add() 65 long unpaddedSize = DecoderUtil.decodeVLI(inChecked); in validate() local 69 stored.add(unpaddedSize, uncompressedSize); in validate()
|
D | IndexBase.java | 44 void add(long unpaddedSize, long uncompressedSize) throws XZIOException { in add() argument 45 blocksSum += (unpaddedSize + 3) & ~3; in add() 47 indexListSize += Util.getVLISize(unpaddedSize) in add()
|
D | IndexEncoder.java | 28 public void add(long unpaddedSize, long uncompressedSize) in add() argument 30 super.add(unpaddedSize, uncompressedSize); in add() 31 records.add(new IndexRecord(unpaddedSize, uncompressedSize)); in add()
|
D | IndexDecoder.java | 90 long unpaddedSize = DecoderUtil.decodeVLI(inChecked); in IndexDecoder() local 101 unpadded[record] = blocksSum + unpaddedSize; in IndexDecoder() 104 super.add(unpaddedSize, uncompressedSize); in IndexDecoder() 216 info.unpaddedSize = unpadded[pos] - info.compressedOffset;
|
D | BlockInfo.java | 18 public long unpaddedSize = -1; field in BlockInfo
|
/external/xz-java/src/org/tukaani/xz/ |
D | SeekableXZInputStream.java | 714 return (queriedBlockInfo.unpaddedSize + 3) & ~3; in getBlockCompSize() 1138 curBlockInfo.unpaddedSize, curBlockInfo.uncompressedSize,
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/tar/ |
D | TarArchiveOutputStreamTest.java | 689 int unpaddedSize = headerSize + fileRecordsSize + endOfArchiveSize; in testPadding() local 690 int paddedSize = (int) Math.ceil((double)unpaddedSize/blockSize)*blockSize; in testPadding()
|