Searched refs:dSize (Results 1 - 5 of 5) sorted by relevance
/third_party/lz4/tests/ |
H A D | abiTest.c | 86 { int const dSize = LZ4_decompress_safe_continue (&LZ4_dState, (const char*)compressedBuff, (char*)resultBuff, cSize, (int)resultBuffCapacity); in roundTripTest() local 87 CONTROL_MSG(dSize < 0, "Decompression detected an error !"); in roundTripTest() 88 CONTROL_MSG(dSize != (int)srcSize, "Decompression corruption error : wrong decompressed size !"); in roundTripTest()
|
H A D | roundTripTest.c | 112 { int const dSize = LZ4_decompress_safe((const char*)compressedBuff, (char*)resultBuff, cSize, (int)resultBuffCapacity); in roundTripTest() local 113 CONTROL_MSG(dSize < 0, "Decompression detected an error !"); in roundTripTest() 114 CONTROL_MSG(dSize != (int)srcSize, "Decompression corruption error : wrong decompressed size !"); in roundTripTest()
|
H A D | fuzzer.c | 416 { int const dSize = LZ4_decompress_safe(compressedBuffer, decodedBuffer, cSize, srcSize); in FUZ_test() local 417 FUZ_CHECKTEST(dSize<0, "LZ4_decompress_safe() failed on data compressed by LZ4_compress_destSize"); in FUZ_test() 418 FUZ_CHECKTEST(dSize!=srcSize, "LZ4_decompress_safe() failed : did not fully decompressed data"); in FUZ_test() 449 { int const dSize = LZ4_decompress_safe(compressedBuffer, decodedBuffer, cSize, srcSize); in FUZ_test() local 450 FUZ_CHECKTEST(dSize<0, "LZ4_decompress_safe failed (%i) on data compressed by LZ4_compressHC_destSize", dSize); in FUZ_test() 451 FUZ_CHECKTEST(dSize!=srcSize, "LZ4_decompress_safe failed : decompressed %i bytes, was supposed to decompress %i bytes", dSize, srcSize); in FUZ_test() 1145 { int const dSize = LZ4_decompress_safe(testCompressed, testVerify, cSize, testInputSize); in FUZ_unitTests() local 1146 assert(dSize in FUZ_unitTests() 1169 { int const dSize = LZ4_decompress_safe(startInput, testVerify, cSize, sampleSize); FUZ_unitTests() local 1393 { int const dSize = LZ4_decompress_safe_usingDict(testCompressed, testVerify, cSize, testCompressedSize, testInput, 64 KB); FUZ_unitTests() local [all...] |
/third_party/lz4/ossfuzz/ |
H A D | round_trip_stream_fuzzer.c | 107 int const dSize = LZ4_decompress_safe_continue(state->dstream, src, dst, in state_decompress() local 109 FUZZ_ASSERT(dSize >= 0); in state_decompress() 110 state->roundTrip.pos += dSize; in state_decompress()
|
/third_party/backends/backend/ |
H A D | hp3900_rts8822.c | 217 static SANE_Int RTS_GetImage_GetBuffer (struct st_device *dev, double dSize, 10205 RTS_GetImage_GetBuffer (struct st_device *dev, double dSize, in RTS_GetImage_GetBuffer() argument 10212 DBG (DBG_FNC, "+ RTS_GetImage_GetBuffer(dSize=%f, buffer, transferred):\n", in RTS_GetImage_GetBuffer() 10213 dSize); in RTS_GetImage_GetBuffer() 10216 dSize /= 2; in RTS_GetImage_GetBuffer() 10218 if (dSize > 0) in RTS_GetImage_GetBuffer() 10227 (dSize <= in RTS_GetImage_GetBuffer() 10228 RTS_Debug->dmasetlength) ? dSize : RTS_Debug->dmasetlength; in RTS_GetImage_GetBuffer() 10246 dSize -= itransferred; in RTS_GetImage_GetBuffer() 10249 while (dSize > in RTS_GetImage_GetBuffer() 10278 double dSize = scancfg->bytesperline * scancfg->coord.height; RTS_GetImage_Read() local [all...] |
Completed in 16 milliseconds