Home
last modified time | relevance | path

Searched refs:prime5bytes (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/zstd/lib/compress/
H A Dzstd_compress_internal.h803 static const U64 prime5bytes = 889523592379ULL; variable
804 …, U32 h, U64 s) { assert(h <= 64); return (size_t)((((u << (64-40)) * prime5bytes) ^ s) >> (64-h)… in ZSTD_hash5()
/aosp_15_r20/external/coreboot/util/cbfstool/lz4/lib/
H A Dlz4.c434 static const U64 prime5bytes = 889523592379ULL; variable
439 return ((sequence * prime5bytes) >> (40 - hashLog)) & hashMask; in LZ4_hashSequence64()
/aosp_15_r20/external/lz4/lib/
H A Dlz4.c789 const U64 prime5bytes = 889523592379ULL; in LZ4_hash5() local
790 return (U32)(((sequence << 24) * prime5bytes) >> (64 - hashLog)); in LZ4_hash5()