/external/lz4/tests/ |
D | fuzzer.c | 372 U32 const crcOrig = XXH32(block, blockSize, 0); in FUZ_test() 397 U32 const crcBase = XXH32(block, srcSize, 0); in FUZ_test() 407 { U32 const crcDec = XXH32(decodedBuffer, srcSize, 0); in FUZ_test() 432 U32 const crcBase = XXH32(block, srcSize, 0); in FUZ_test() 442 { U32 const crcDec = XXH32(decodedBuffer, srcSize, 0); in FUZ_test() 489 { U32 const crcCheck = XXH32(decodedBuffer, blockSize, 0); in FUZ_test() 537 { U32 const crcCheck = XXH32(decodedBuffer, blockSize, 0); in FUZ_test() 549 { U32 const crcCheck = XXH32(decodedBuffer, blockSize, 0); in FUZ_test() 655 { U32 const crcCheck = XXH32(decodedBuffer+dictSize, blockSize, 0); in FUZ_test() 663 { U32 const crcCheck = XXH32(decodedBuffer+dictSize, blockSize, 0); in FUZ_test() [all …]
|
D | roundTripTest.c | 83 unsigned const h32 = XXH32(refBuff, hashLength, 0); in select_clevel()
|
D | fullbench.c | 414 crcOriginal = XXH32(orig_buff, benchedSize,0); in fullSpeedBench() 613 crcDecoded = XXH32(orig_buff, (int)benchedSize, 0); in fullSpeedBench()
|
/external/lz4/lib/ |
D | xxhash.h | 126 # define XXH32 XXH_NAME2(XXH_NAMESPACE, XXH32) macro 167 XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t length, unsigned int seed);
|
D | lz4frame.c | 279 U32 const xxh = XXH32(header, length, 0); in LZ4F_headerChecksum() 732 U32 const crc32 = XXH32(cSizePtr+4, cSize, 0); /* checksum of compressed data */ in LZ4F_makeBlock() 1540 U32 const calcBlockCrc = XXH32(selectedIn, dctx->tmpInTarget, 0); in LZ4F_decompress()
|
D | xxhash.c | 326 XXH_PUBLIC_API unsigned int XXH32 (const void* input, size_t len, unsigned int seed) in XXH32() function
|
/external/vulkan-validation-layers/layers/ |
D | xxhash.h | 126 # define XXH32 XXH_NAME2(XXH_NAMESPACE, XXH32) macro 167 XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t length, unsigned int seed);
|
D | xxhash.c | 320 XXH_PUBLIC_API unsigned int XXH32 (const void* input, size_t len, unsigned int seed) in XXH32() function
|
/external/angle/src/common/third_party/xxhash/ |
D | xxhash.h | 131 # define XXH32 XXH_NAME2(XXH_NAMESPACE, XXH32) macro 171 XXH_PUBLIC_API XXH32_hash_t XXH32(const void *input, size_t length, unsigned int seed);
|
D | xxhash_fuzzer.cpp | 42 XXH32(&data[seedSize32], size - seedSize32, seed32); in LLVMFuzzerTestOneInput()
|
D | README.md | 52 | XXH32 | 6.8 GB/s | 6.0 GB/s |
|
D | xxhash.c | 392 XXH_PUBLIC_API unsigned int XXH32 (const void* input, size_t len, unsigned int seed) in XXH32() function
|
/external/mesa3d/src/util/ |
D | hash_table.c | 575 return XXH32(data, size, 0); in _mesa_hash_data() 581 return XXH32(key, sizeof(int), 0); in _mesa_hash_int() 587 return XXH32(key, sizeof(unsigned), 0); in _mesa_hash_uint() 593 return XXH32(key, 4, 0); in _mesa_hash_u32() 606 hash = XXH32(key, len, hash); in _mesa_hash_string()
|
D | xxhash.h | 145 # define XXH32 XXH_NAME2(XXH_NAMESPACE, XXH32) macro 209 XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t length, XXH32_hash_t seed); 813 XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t len, XXH32_hash_t seed) in XXH32() function
|
/external/angle/src/common/ |
D | hash_utils.h | 27 return XXH32(key, keySize, kSeed); in ComputeGenericHash()
|
/external/mesa3d/src/compiler/nir/ |
D | nir_lower_locals_to_regs.c | 54 return XXH32(&deref->var, sizeof(deref->var), hash); in hash_deref() 60 hash = XXH32(&deref->strct.index, sizeof(deref->strct.index), hash); in hash_deref()
|
D | nir_instr_set.c | 86 #define HASH(hash, data) XXH32(&(data), sizeof(data), hash) 203 hash = XXH32(instr->value, size, hash); in hash_load_const() 251 hash = XXH32(instr->const_index, info->num_indices * sizeof(instr->const_index[0]), hash); in hash_intrinsic()
|
D | nir_opt_load_store_vectorize.c | 205 hash = XXH32(&key->resource->index, sizeof(key->resource->index), hash); in hash_entry_key() 207 hash = XXH32(&key->var->index, sizeof(key->var->index), hash); in hash_entry_key() 209 hash = XXH32(&mode, sizeof(mode), hash); in hash_entry_key() 213 hash = XXH32(&key->offset_defs[i]->index, sizeof(key->offset_defs[i]->index), hash); in hash_entry_key() 215 hash = XXH32(key->offset_defs_mul, key->offset_def_count * sizeof(uint64_t), hash); in hash_entry_key()
|
D | nir_opt_vectorize.c | 30 #define HASH(hash, data) XXH32(&data, sizeof(data), hash)
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_batch_cache.c | 104 hash = XXH32(key, offsetof(struct key, surf[0]), hash); in key_hash() 105 hash = XXH32(key->surf, sizeof(key->surf[0]) * key->num_surfs , hash); in key_hash()
|
/external/mesa3d/src/gallium/drivers/freedreno/ir3/ |
D | ir3_cache.c | 40 return XXH32(key, sizeof(*key), 0); in key_hash()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_program_cache.c | 102 hash = XXH32(&item->cache_id, sizeof(item->cache_id), hash); in hash_key() 103 hash = XXH32(item->key, item->key_size, hash); in hash_key()
|
/external/mesa3d/src/gallium/drivers/zink/nir_to_spirv/ |
D | spirv_builder.c | 830 hash = XXH32(&type->op, sizeof(type->op), hash); in non_aggregate_type_hash() 831 hash = XXH32(type->args, sizeof(uint32_t) * type->num_args, hash); in non_aggregate_type_hash() 1045 hash = XXH32(&key->op, sizeof(key->op), hash); in const_hash() 1046 hash = XXH32(&key->type, sizeof(key->type), hash); in const_hash() 1047 hash = XXH32(key->args, sizeof(uint32_t) * key->num_args, hash); in const_hash()
|
/external/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_nir_vectorize_vs_inputs.c | 226 #define HASH(hash, data) XXH32(&(data), sizeof(data), (hash))
|
/external/mesa3d/src/gallium/drivers/freedreno/a6xx/ |
D | fd6_texture.c | 392 return XXH32(key, sizeof(*key), 0); in key_hash()
|