Searched refs:crcCheck (Results 1 – 2 of 2) sorted by relevance
/lz4-3.4.0-2.7.6/tests/ |
D | fuzzer.c | 505 { U32 const crcCheck = XXH32(decodedBuffer, (size_t)blockSize, 0); in FUZ_test() local 506 FUZ_CHECKTEST(crcCheck!=crcOrig, "LZ4_decompress_fast corrupted decoded data"); in FUZ_test() 531 { U32 const crcCheck = XXH32(decodedBuffer, (size_t)blockSize, 0); in FUZ_test() local 532 FUZ_CHECKTEST(crcCheck!=crcOrig, "LZ4_decompress_safe corrupted decoded data"); in FUZ_test() 544 { U32 const crcCheck = XXH32(decodedBuffer, (size_t)blockSize, 0); in FUZ_test() local 545 FUZ_CHECKTEST(crcCheck!=crcOrig, "LZ4_decompress_safe corrupted decoded data"); in FUZ_test() 698 { U32 const crcCheck = XXH32(decodedBuffer+dictSize, (size_t)blockSize, 0); in FUZ_test() local 699 if (crcCheck!=crcOrig) { in FUZ_test() 707 { U32 const crcCheck = XXH32(decodedBuffer+dictSize, (size_t)blockSize, 0); in FUZ_test() local 708 … FUZ_CHECKTEST(crcCheck!=crcOrig, "LZ4_decompress_safe_usingDict corrupted decoded data"); in FUZ_test() [all …]
|
/lz4-3.4.0-2.7.6/programs/ |
D | bench.c | 482 { U64 const crcCheck = XXH64(resultBuffer, srcSize, 0); in BMK_benchMem() local 483 if (crcOrig!=crcCheck) { in BMK_benchMem() 485 … !!! %17s : Invalid Checksum : %x != %x \n", displayName, (unsigned)crcOrig, (unsigned)crcCheck); in BMK_benchMem()
|