Lines Matching defs:second
131 * @second: second u64
134 u64 siphash_2u64(const u64 first, const u64 second, const siphash_key_t *key)
141 v3 ^= second;
144 v0 ^= second;
152 * @second: second u64
156 u64 siphash_3u64(const u64 first, const u64 second, const u64 third,
164 v3 ^= second;
167 v0 ^= second;
179 * @second: second u64
184 u64 siphash_4u64(const u64 first, const u64 second, const u64 third,
192 v3 ^= second;
195 v0 ^= second;
216 u64 siphash_3u32(const u32 first, const u32 second, const u32 third,
219 u64 combined = (u64)second << 32 | first;
328 * @second: second u32
331 u32 hsiphash_2u32(const u32 first, const u32 second, const hsiphash_key_t *key)
333 u64 combined = (u64)second << 32 | first;
345 * @second: second u32
349 u32 hsiphash_3u32(const u32 first, const u32 second, const u32 third,
352 u64 combined = (u64)second << 32 | first;
365 * @second: second u32
370 u32 hsiphash_4u32(const u32 first, const u32 second, const u32 third,
373 u64 combined = (u64)second << 32 | first;
472 * @second: second u32
475 u32 hsiphash_2u32(const u32 first, const u32 second, const hsiphash_key_t *key)
481 v3 ^= second;
483 v0 ^= second;
491 * @second: second u32
495 u32 hsiphash_3u32(const u32 first, const u32 second, const u32 third,
502 v3 ^= second;
504 v0 ^= second;
515 * @second: second u32
520 u32 hsiphash_4u32(const u32 first, const u32 second, const u32 third,
527 v3 ^= second;
529 v0 ^= second;