Home
last modified time | relevance | path

Searched refs:XXH64 (Results 1 – 9 of 9) sorted by relevance

/freebsd/sys/contrib/openzfs/module/zstd/lib/common/
H A Dxxhash.h106 # define XXH64 XXH_NAME2(XXH_NAMESPACE, XXH64) macro
144 XXH_PUBLIC_API XXH64_hash_t XXH64 (const void* input, size_t length, unsigned long long seed);
H A Dxxhash.c500 XXH_PUBLIC_API unsigned long long XXH64 (const void* input, size_t len, unsigned long long seed) in XXH64() function
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_ldm.c292 U64 const xxhash = XXH64(split, minMatchLength, 0); in ZSTD_ldm_fillHashTable()
370 U64 const xxhash = XXH64(split, minMatchLength, 0); in ZSTD_ldm_generateSequences_internal()
/freebsd/sys/contrib/zstd/programs/
H A Dbenchzstd.c391 { U64 const crcOrig = (adv->mode == BMK_decodeOnly) ? 0 : XXH64(srcBuffer, srcSize, 0); in BMK_benchMemAdvancedNoAlloc()
497 U64 const crcCheck = XXH64(resultBuffer, srcSize, 0); in BMK_benchMemAdvancedNoAlloc()
H A DREADME.md167 --[no-]check : during compression, add XXH64 integrity checksum to frame (default: enabled). If spe…
/freebsd/sys/contrib/zstd/zlibWrapper/examples/
H A Dzwrapbench.c201 U64 const crcOrig = XXH64(srcBuffer, srcSize, 0); in BMK_benchMem()
534 { U64 const crcCheck = XXH64(resultBuffer, srcSize, 0); in BMK_benchMem()
/freebsd/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c951 { U64 const randomID = XXH64(customDictContent, dictContentSize, 0); in ZDICT_finalizeDictionary()
1035 …{ U64 const randomID = XXH64((char*)dictBuffer + dictBufferCapacity - dictContentSize, dictConte… in ZDICT_addEntropyTablesFromBuffer_advanced()
/freebsd/sys/contrib/zstd/lib/common/
H A Dxxhash.h136 # undef XXH64
265 # define XXH64 XXH_NAME2(XXH_NAMESPACE, XXH64) macro
701 XXH_PUBLIC_API XXH64_hash_t XXH64(const void* input, size_t length, XXH64_hash_t seed);
2508 XXH_PUBLIC_API XXH64_hash_t XXH64 (const void* input, size_t len, XXH64_hash_t seed) in XXH64() function
/freebsd/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c94 const U64 hash = XXH64(&dictID, sizeof(U32), 0); in ZSTD_DDictHashSet_getIndex()