Lines Matching refs:crc1
12 uint32_t crc1 = crc0; in LLVMFuzzerTestOneInput() local
35 uint32_t crc4 = crc32_combine_op(crc1, crc3, op); in LLVMFuzzerTestOneInput()
36 crc1 = crc32_z(crc1, data + offset, buffSize); in LLVMFuzzerTestOneInput()
37 assert(crc1 == crc4); in LLVMFuzzerTestOneInput()
39 crc1 = crc32_z(crc1, data + offset, dataLen % buffSize); in LLVMFuzzerTestOneInput()
43 assert(crc1 == crc2); in LLVMFuzzerTestOneInput()
44 assert(crc32_combine(crc1, crc2, dataLen) == in LLVMFuzzerTestOneInput()
45 crc32_combine(crc1, crc1, dataLen)); in LLVMFuzzerTestOneInput()
49 assert(crc32_combine_op(crc1, crc2, op) == in LLVMFuzzerTestOneInput()
50 crc32_combine_op(crc2, crc1, op)); in LLVMFuzzerTestOneInput()
51 assert(crc32_combine(crc1, crc2, dataLen) == in LLVMFuzzerTestOneInput()
52 crc32_combine_op(crc2, crc1, op)); in LLVMFuzzerTestOneInput()