Home
last modified time | relevance | path

Searched refs:compressedDataLength (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/test/java/util/zip/
DDeflaterDictionaryTests.java99 … int compressedDataLength = deflater.deflate(output, 0, output.length, Deflater.NO_FLUSH); in testByteArray() local
102 deflater.getTotalOut(), compressedDataLength); in testByteArray()
106 inflater.setInput(output, 0, compressedDataLength); in testByteArray()
147 … int compressedDataLength = deflater.deflate(output, 0, output.length, Deflater.NO_FLUSH); in testHeapByteBuffer() local
150 deflater.getTotalOut(), compressedDataLength); in testHeapByteBuffer()
154 inflater.setInput(output, 0, compressedDataLength); in testHeapByteBuffer()
201 … int compressedDataLength = deflater.deflate(output, 0, output.length, Deflater.NO_FLUSH); in testByteBufferDirect() local
204 deflater.getTotalOut(), compressedDataLength); in testByteBufferDirect()
208 inflater.setInput(output, 0, compressedDataLength); in testByteBufferDirect()
/libcore/luni/src/test/java/libcore/java/util/zip/
DOldAndroidDeflateTest.java51 int compressedDataLength = compresser.deflate(output); in simpleTest() local
55 decompresser.setInput(output, 0, compressedDataLength); in simpleTest()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
DDeflaterTest.java1083 int compressedDataLength = def.deflate(output); in test_getBytesRead() local
1085 assertEquals(compressedDataLength, def.getTotalOut()); in test_getBytesRead()
1110 int compressedDataLength = def.deflate(output); in test_getBytesWritten() local
1112 assertEquals(compressedDataLength, def.getTotalOut()); in test_getBytesWritten()
1113 assertEquals(compressedDataLength, def.getBytesWritten()); in test_getBytesWritten()
DInflaterTest.java803 int compressedDataLength = inf.inflate(input); in test_getBytesRead() local
805 assertEquals(compressedDataLength, inf.getTotalOut()); in test_getBytesRead()
831 int compressedDataLength = inf.inflate(input); in test_getBytesWritten() local
833 assertEquals(compressedDataLength, inf.getTotalOut()); in test_getBytesWritten()