Searched refs:v3 (Results 1 – 3 of 3) sorted by relevance
/lib/ |
D | siphash.c | 24 v2 += v3; v3 = rol64(v3, 16); v3 ^= v2; \ 25 v0 += v3; v3 = rol64(v3, 21); v3 ^= v0; \ 33 u64 v3 = 0x7465646279746573ULL; \ 35 v3 ^= key->key[1]; \ 41 v3 ^= b; \ 50 return (v0 ^ v1) ^ (v2 ^ v3); 60 v3 ^= m; in __siphash_aligned() 93 v3 ^= m; in __siphash_unaligned() 126 v3 ^= first; in siphash_1u64() 143 v3 ^= first; in siphash_2u64() [all …]
|
D | xxhash.c | 112 uint32_t v3 = seed + 0; in xxh32() local 120 v3 = xxh32_round(v3, get_unaligned_le32(p)); in xxh32() 127 xxh_rotl32(v3, 12) + xxh_rotl32(v4, 18); in xxh32() 182 uint64_t v3 = seed + 0; in xxh64() local 190 v3 = xxh64_round(v3, get_unaligned_le64(p)); in xxh64() 197 xxh_rotl64(v3, 12) + xxh_rotl64(v4, 18); in xxh64() 200 h64 = xxh64_merge_round(h64, v3); in xxh64() 250 state.v3 = seed + 0; in xxh32_reset() 264 state.v3 = seed + 0; in xxh64_reset() 297 state->v3 = xxh32_round(state->v3, get_unaligned_le32(p32)); in xxh32_update() [all …]
|
D | atomic64_test.c | 152 long long v3 = 0x8000000000000000LL; in test_atomic64() local 243 INIT(v3); in test_atomic64()
|