Searched refs:prime4bytes (Results 1 – 2 of 2) sorted by relevance
845 static const U32 prime4bytes = 2654435761U; variable846 static U32 ZSTD_hash4(U32 u, U32 h) { return (u * prime4bytes) >> (32-h) ; } in ZSTD_hash4()
904 static const U32 prime4bytes = 2654435761U; variable905 static U32 ZSTD_hash4(U32 u, U32 h, U32 s) { assert(h <= 32); return ((u * prime4bytes) ^ s) >> … in ZSTD_hash4()