Lines Matching refs:compressedSize
370 int compressedSize, HCcompressedSize; in FUZ_test() local
401 compressedSize = ret; in FUZ_test()
403 ret = LZ4_decompress_safe(compressedBuffer, decodedBuffer, compressedSize, srcSize); in FUZ_test()
436 compressedSize = ret; in FUZ_test()
438 ret = LZ4_decompress_safe(compressedBuffer, decodedBuffer, compressedSize, srcSize); in FUZ_test()
480 compressedSize = ret; in FUZ_test()
488 …FUZ_CHECKTEST(ret!=compressedSize, "LZ4_decompress_fast failed : did not fully read compressed dat… in FUZ_test()
533 ret = LZ4_decompress_safe(compressedBuffer, decodedBuffer, compressedSize, blockSize); in FUZ_test()
545 ret = LZ4_decompress_safe(compressedBuffer, decodedBuffer, compressedSize, blockSize+1); in FUZ_test()
556 ret = LZ4_decompress_safe(compressedBuffer, decodedBuffer, compressedSize, blockSize-1); in FUZ_test()
564 … ret = LZ4_decompress_safe(compressedBuffer, decodedBuffer, compressedSize, blockSize-10); in FUZ_test()
571 ret = LZ4_decompress_safe(compressedBuffer, decodedBuffer, compressedSize-1, blockSize); in FUZ_test()
572 …ing one byte too short (blockSize=%i, ret=%i, compressedSize=%i)", blockSize, ret, compressedSize); in FUZ_test()
577 ret = LZ4_decompress_safe(compressedBuffer, decodedBuffer, compressedSize+1, blockSize); in FUZ_test()
586 …esult = LZ4_decompress_safe_partial(compressedBuffer, decodedBuffer, compressedSize, targetSize, b… in FUZ_test()
596 ret = LZ4_compress_default(block, compressedBuffer, blockSize, compressedSize); in FUZ_test()
601 … ret = LZ4_compress_fast_extState(stateLZ4, block, compressedBuffer, blockSize, compressedSize, 1); in FUZ_test()
617 if (missingBytes >= compressedSize) missingBytes = compressedSize-1; in FUZ_test()
619 compressedBuffer[compressedSize-missingBytes] = 0; in FUZ_test()
620 … ret = LZ4_compress_default(block, compressedBuffer, blockSize, compressedSize-missingBytes); in FUZ_test()
622 …FUZ_CHECKTEST(compressedBuffer[compressedSize-missingBytes], "LZ4_compress_default overran output … in FUZ_test()
924 cbytes += compressedSize; in FUZ_test()
1010 int compressedSize; in FUZ_unitTests() local
1024 …compressedSize = LZ4_compress_fast_continue(&streamingState, ringBuffer + rNext, testCompressed, m… in FUZ_unitTests()
1025 FUZ_CHECKTEST(compressedSize==0, "LZ4_compress_fast_continue() compression failed"); in FUZ_unitTests()
1027 …s_safe_continue(&decodeStateSafe, testCompressed, testVerify + dNext, compressedSize, messageSize); in FUZ_unitTests()
1035 … FUZ_CHECKTEST(result!=compressedSize, "ringBuffer : LZ4_decompress_fast_continue() test failed"); in FUZ_unitTests()
1170 int compressedSize; in FUZ_unitTests() local
1184 …compressedSize = LZ4_compress_HC_continue(&sHC, ringBuffer + rNext, testCompressed, messageSize, t… in FUZ_unitTests()
1185 FUZ_CHECKTEST(compressedSize==0, "LZ4_compress_HC_continue() compression failed"); in FUZ_unitTests()
1187 …s_safe_continue(&decodeStateSafe, testCompressed, testVerify + dNext, compressedSize, messageSize); in FUZ_unitTests()
1195 … FUZ_CHECKTEST(result!=compressedSize, "ringBuffer : LZ4_decompress_fast_continue() test failed"); in FUZ_unitTests()
1230 int compressedSize; in FUZ_unitTests() local
1247 …compressedSize = LZ4_compress_HC_continue(&sHC, testInput + iNext, testCompressed, messageSize, te… in FUZ_unitTests()
1248 FUZ_CHECKTEST(compressedSize==0, "LZ4_compress_HC_continue() compression failed"); in FUZ_unitTests()
1250 …fe_continue(&decodeStateSafe, testCompressed, ringBufferSafe + dNext, compressedSize, messageSize); in FUZ_unitTests()
1258 …FUZ_CHECKTEST(result!=compressedSize, "64K D.ringBuffer : LZ4_decompress_fast_continue() test fail… in FUZ_unitTests()
1278 …compressedSize = LZ4_compress_HC_continue(&sHC, testInput + iNext, testCompressed, messageSize, te… in FUZ_unitTests()
1279 FUZ_CHECKTEST(compressedSize==0, "LZ4_compress_HC_continue() compression failed"); in FUZ_unitTests()
1280 DISPLAYLEVEL(5, "compressed %i bytes to %i bytes \n", messageSize, compressedSize); in FUZ_unitTests()
1287 …compressedSize, dBufferSize - dNext); /* works without knowing messageSize, under assumption tha… in FUZ_unitTests()
1297 …FUZ_CHECKTEST(result!=compressedSize, "D.ringBuffer : LZ4_decompress_fast_continue() test failed"); in FUZ_unitTests()