Lines Matching full:v3
60 sipround(uint64_t *v0, uint64_t *v1, uint64_t *v2, uint64_t *v3) in sipround() argument
63 *v2 += *v3; in sipround()
65 *v3 = rotl64(*v3, 16) ^ *v2; in sipround()
68 *v0 += *v3; in sipround()
70 *v3 = rotl64(*v3, 21) ^ *v0; in sipround()
82 uint64_t v3 = k1 ^ 0x7465646279746573; in siphash24() local
90 v3 ^= mi; in siphash24()
91 sipround(&v0, &v1, &v2, &v3); in siphash24()
92 sipround(&v0, &v1, &v2, &v3); in siphash24()
100 v3 ^= mi; in siphash24()
101 sipround(&v0, &v1, &v2, &v3); in siphash24()
102 sipround(&v0, &v1, &v2, &v3); in siphash24()
107 sipround(&v0, &v1, &v2, &v3); in siphash24()
108 sipround(&v0, &v1, &v2, &v3); in siphash24()
109 sipround(&v0, &v1, &v2, &v3); in siphash24()
110 sipround(&v0, &v1, &v2, &v3); in siphash24()
111 return v0 ^ v1 ^ v2 ^ v3; in siphash24()