Home
last modified time | relevance | path

Searched refs:xxhash (Results 1 – 5 of 5) sorted by relevance

/linux/lib/zstd/compress/
H A Dzstd_ldm.c312 U64 const xxhash = xxh64(split, minMatchLength, 0); in ZSTD_ldm_fillHashTable() local
313 U32 const hash = (U32)(xxhash & (((U32)1 << hBits) - 1)); in ZSTD_ldm_fillHashTable()
317 entry.checksum = (U32)(xxhash >> 32); in ZSTD_ldm_fillHashTable()
392 U64 const xxhash = xxh64(split, minMatchLength, 0); in ZSTD_ldm_generateSequences_internal() local
393 U32 const hash = (U32)(xxhash & (((U32)1 << hBits) - 1)); in ZSTD_ldm_generateSequences_internal()
397 candidates[n].checksum = (U32)(xxhash >> 32); in ZSTD_ldm_generateSequences_internal()
/linux/include/linux/
H A Dxxhash.h123 static inline unsigned long xxhash(const void *input, size_t length, in xxhash() function
/linux/drivers/firmware/efi/libstub/
H A DMakefile96 zboot-obj-$(CONFIG_KERNEL_ZSTD) := zboot-decompress-zstd.o lib-xxhash.o
/linux/lib/
H A DMakefile151 obj-$(CONFIG_XXHASH) += xxhash.o
/linux/mm/
H A Dksm.c1267 checksum = xxhash(addr, PAGE_SIZE, 0); in calc_checksum()