Lines Matching refs:U64
567 return (__builtin_ctzll((U64)val) >> 3); in ZSTD_NbCommonBytes()
577 return DeBruijnBytePos[((U64)((val & -(long long)val) * 0x0218A392CDABBD3FULL)) >> 58]; in ZSTD_NbCommonBytes()
667 static const U64 prime5bytes = 889523592379ULL;
668 static size_t ZSTD_hash5(U64 u, U32 h) { return (size_t)(((u << (64-40)) * prime5bytes) >> (64-h))… in ZSTD_hash5()
671 static const U64 prime6bytes = 227718039650203ULL;
672 static size_t ZSTD_hash6(U64 u, U32 h) { return (size_t)(((u << (64-48)) * prime6bytes) >> (64-h))… in ZSTD_hash6()
675 static const U64 prime7bytes = 58295818150454627ULL;
676 static size_t ZSTD_hash7(U64 u, U32 h) { return (size_t)(((u << (64-56)) * prime7bytes) >> (64-h))… in ZSTD_hash7()
679 static const U64 prime8bytes = 0xCF1BBCDCB7A56463ULL;
680 static size_t ZSTD_hash8(U64 u, U32 h) { return (size_t)(((u) * prime8bytes) >> (64-h)) ; } in ZSTD_hash8()
700 static U64 ZSTD_ipow(U64 base, U64 exponent) in ZSTD_ipow()
702 U64 power = 1; in ZSTD_ipow()
716 static U64 ZSTD_rollingHash_append(U64 hash, void const* buf, size_t size) in ZSTD_rollingHash_append()
730 MEM_STATIC U64 ZSTD_rollingHash_compute(void const* buf, size_t size) in ZSTD_rollingHash_compute()
739 MEM_STATIC U64 ZSTD_rollingHash_primePower(U32 length) in ZSTD_rollingHash_primePower()
747 MEM_STATIC U64 ZSTD_rollingHash_rotate(U64 hash, BYTE toRemove, BYTE toAdd, U64 primePower) in ZSTD_rollingHash_rotate()
1122 … const ZSTD_CCtx_params* CCtxParams, U64 srcSizeHint, size_t dictSize, ZSTD_cParamMode_e mode);