Home
last modified time | relevance | path

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

/linux/lib/
A Dxxhash.c52 #define xxh_rotl32(x, r) ((x << r) | (x >> (32 - r))) macro
97 seed = xxh_rotl32(seed, 13); in xxh32_round()
126 h32 = xxh_rotl32(v1, 1) + xxh_rotl32(v2, 7) + in xxh32()
127 xxh_rotl32(v3, 12) + xxh_rotl32(v4, 18); in xxh32()
136 h32 = xxh_rotl32(h32, 17) * PRIME32_4; in xxh32()
142 h32 = xxh_rotl32(h32, 11) * PRIME32_1; in xxh32()
347 h32 = xxh_rotl32(state->v1, 1) + xxh_rotl32(state->v2, 7) + in xxh32_digest()
348 xxh_rotl32(state->v3, 12) + xxh_rotl32(state->v4, 18); in xxh32_digest()
357 h32 = xxh_rotl32(h32, 17) * PRIME32_4; in xxh32_digest()
363 h32 = xxh_rotl32(h32, 11) * PRIME32_1; in xxh32_digest()

Completed in 3 milliseconds