Searched refs:crc64 (Results 1 – 6 of 6) sorted by relevance
/external/lzma/C/ |
D | Xz.c | 53 case XZ_CHECK_CRC64: p->crc64 = CRC64_INIT_VAL; break; in XzCheck_Init() 63 case XZ_CHECK_CRC64: p->crc64 = Crc64Update(p->crc64, data, size); break; in XzCheck_Update() 78 UInt64 v = CRC64_GET_DIGEST(p->crc64); in XzCheck_Final()
|
D | Xz.h | 88 UInt64 crc64; member
|
/external/libaom/libaom/av1/encoder/x86/ |
D | hash_sse42.c | 43 uint64_t crc64 = crc; in av1_get_crc32c_value_sse4_2() local 44 CALC_CRC(_mm_crc32_u64, crc64, uint64_t, buf, len); in av1_get_crc32c_value_sse4_2() 45 crc = (uint32_t)crc64; in av1_get_crc32c_value_sse4_2()
|
/external/brotli/java/org/brotli/dec/ |
D | DictionaryTest.java | 22 private static long crc64(ByteBuffer data) { in crc64() method in DictionaryTest 36 assertEquals(37084801881332636L, crc64(Dictionary.getData())); in testGetData()
|
D | TransformTest.java | 23 private static long crc64(byte[] data) { in crc64() method in TransformTest 69 assertEquals(8929191060211225186L, crc64(output)); in testAllTransforms()
|
/external/lz4/tests/ |
D | fuzzer.c | 1194 { U64 const crc64 = XXH64(testInput, testCompressedSize, 0); in FUZ_unitTests() local 1203 FUZ_CHECKTEST(crc64!=crcNew, "LZ4_decompress_safe() decompression corruption"); in FUZ_unitTests() 1237 { U64 const crc64 = XXH64(testInput + 64 KB, testCompressedSize, 0); in FUZ_unitTests() local 1247 …FUZ_CHECKTEST(crc64!=crcNew, "LZ4_decompress_safe() simple dictionary decompression test : corrupt… in FUZ_unitTests() 1254 …XXH64_hash_t const crc64 = ( (void)assert((unsigned)segSize + testCompressedSize < testInputSize) , in FUZ_unitTests() local 1270 … FUZ_CHECKTEST(crc64!=crcNew, "LZ4_decompress_safe() dictionary decompression corruption"); in FUZ_unitTests() 1274 { U64 const crc64 = XXH64(testInput + 64 KB, testCompressedSize, 0); in FUZ_unitTests() local 1284 … FUZ_CHECKTEST(crc64!=crcNew, "LZ4_decompress_safe_usingDict() decompression corruption"); in FUZ_unitTests()
|