Lines Matching +full:32 +full:m

50 	u64 m;  in __siphash_aligned()  local
53 m = le64_to_cpup(data); in __siphash_aligned()
54 v3 ^= m; in __siphash_aligned()
57 v0 ^= m; in __siphash_aligned()
67 case 5: b |= ((u64)end[4]) << 32; fallthrough; in __siphash_aligned()
83 u64 m; in __siphash_unaligned() local
86 m = get_unaligned_le64(data); in __siphash_unaligned()
87 v3 ^= m; in __siphash_unaligned()
90 v0 ^= m; in __siphash_unaligned()
100 case 5: b |= ((u64)end[4]) << 32; fallthrough; in __siphash_unaligned()
186 PREAMBLE(32) in siphash_4u64()
218 u64 combined = (u64)second << 32 | first; in siphash_3u32()
231 * performance reasons. On 32-bit, below, we actually implement HalfSipHash1-3.
251 u64 m; in __hsiphash_aligned() local
254 m = le64_to_cpup(data); in __hsiphash_aligned()
255 v3 ^= m; in __hsiphash_aligned()
257 v0 ^= m; in __hsiphash_aligned()
267 case 5: b |= ((u64)end[4]) << 32; fallthrough; in __hsiphash_aligned()
284 u64 m; in __hsiphash_unaligned() local
287 m = get_unaligned_le64(data); in __hsiphash_unaligned()
288 v3 ^= m; in __hsiphash_unaligned()
290 v0 ^= m; in __hsiphash_unaligned()
300 case 5: b |= ((u64)end[4]) << 32; fallthrough; in __hsiphash_unaligned()
325 * hsiphash_2u32 - compute 32-bit hsiphash PRF value of 2 u32
332 u64 combined = (u64)second << 32 | first; in hsiphash_2u32()
342 * hsiphash_3u32 - compute 32-bit hsiphash PRF value of 3 u32
351 u64 combined = (u64)second << 32 | first; in hsiphash_3u32()
362 * hsiphash_4u32 - compute 32-bit hsiphash PRF value of 4 u32
372 u64 combined = (u64)second << 32 | first; in hsiphash_4u32()
377 combined = (u64)forth << 32 | third; in hsiphash_4u32()
413 u32 m; in __hsiphash_aligned() local
416 m = le32_to_cpup(data); in __hsiphash_aligned()
417 v3 ^= m; in __hsiphash_aligned()
419 v0 ^= m; in __hsiphash_aligned()
436 u32 m; in __hsiphash_unaligned() local
439 m = get_unaligned_le32(data); in __hsiphash_unaligned()
440 v3 ^= m; in __hsiphash_unaligned()
442 v0 ^= m; in __hsiphash_unaligned()
454 * hsiphash_1u32 - compute 32-bit hsiphash PRF value of a u32
469 * hsiphash_2u32 - compute 32-bit hsiphash PRF value of 2 u32
488 * hsiphash_3u32 - compute 32-bit hsiphash PRF value of 3 u32
512 * hsiphash_4u32 - compute 32-bit hsiphash PRF value of 4 u32