Lines Matching refs:b
28 u64 b = ((u64)(len)) << 56; \
35 v3 ^= b; \
38 v0 ^= b; \
62 b |= le64_to_cpu((__force __le64)(load_unaligned_zeropad(data) & in __siphash_aligned()
66 case 7: b |= ((u64)end[6]) << 48; fallthrough; in __siphash_aligned()
67 case 6: b |= ((u64)end[5]) << 40; fallthrough; in __siphash_aligned()
68 case 5: b |= ((u64)end[4]) << 32; fallthrough; in __siphash_aligned()
69 case 4: b |= le32_to_cpup(data); break; in __siphash_aligned()
70 case 3: b |= ((u64)end[2]) << 16; fallthrough; in __siphash_aligned()
71 case 2: b |= le16_to_cpup(data); break; in __siphash_aligned()
72 case 1: b |= end[0]; in __siphash_aligned()
95 b |= le64_to_cpu((__force __le64)(load_unaligned_zeropad(data) & in __siphash_unaligned()
99 case 7: b |= ((u64)end[6]) << 48; fallthrough; in __siphash_unaligned()
100 case 6: b |= ((u64)end[5]) << 40; fallthrough; in __siphash_unaligned()
101 case 5: b |= ((u64)end[4]) << 32; fallthrough; in __siphash_unaligned()
102 case 4: b |= get_unaligned_le32(end); break; in __siphash_unaligned()
103 case 3: b |= ((u64)end[2]) << 16; fallthrough; in __siphash_unaligned()
104 case 2: b |= get_unaligned_le16(end); break; in __siphash_unaligned()
105 case 1: b |= end[0]; in __siphash_unaligned()
211 b |= first; in siphash_1u32()
225 b |= third; in siphash_3u32()
238 v3 ^= b; \
240 v0 ^= b; \
262 b |= le64_to_cpu((__force __le64)(load_unaligned_zeropad(data) & in __hsiphash_aligned()
266 case 7: b |= ((u64)end[6]) << 48; fallthrough; in __hsiphash_aligned()
267 case 6: b |= ((u64)end[5]) << 40; fallthrough; in __hsiphash_aligned()
268 case 5: b |= ((u64)end[4]) << 32; fallthrough; in __hsiphash_aligned()
269 case 4: b |= le32_to_cpup(data); break; in __hsiphash_aligned()
270 case 3: b |= ((u64)end[2]) << 16; fallthrough; in __hsiphash_aligned()
271 case 2: b |= le16_to_cpup(data); break; in __hsiphash_aligned()
272 case 1: b |= end[0]; in __hsiphash_aligned()
295 b |= le64_to_cpu((__force __le64)(load_unaligned_zeropad(data) & in __hsiphash_unaligned()
299 case 7: b |= ((u64)end[6]) << 48; fallthrough; in __hsiphash_unaligned()
300 case 6: b |= ((u64)end[5]) << 40; fallthrough; in __hsiphash_unaligned()
301 case 5: b |= ((u64)end[4]) << 32; fallthrough; in __hsiphash_unaligned()
302 case 4: b |= get_unaligned_le32(end); break; in __hsiphash_unaligned()
303 case 3: b |= ((u64)end[2]) << 16; fallthrough; in __hsiphash_unaligned()
304 case 2: b |= get_unaligned_le16(end); break; in __hsiphash_unaligned()
305 case 1: b |= end[0]; in __hsiphash_unaligned()
320 b |= first; in hsiphash_1u32()
357 b |= third; in hsiphash_3u32()
393 u32 b = ((u32)(len)) << 24; \
400 v3 ^= b; \
402 v0 ^= b; \
423 case 3: b |= ((u32)end[2]) << 16; fallthrough; in __hsiphash_aligned()
424 case 2: b |= le16_to_cpup(data); break; in __hsiphash_aligned()
425 case 1: b |= end[0]; in __hsiphash_aligned()
446 case 3: b |= ((u32)end[2]) << 16; fallthrough; in __hsiphash_unaligned()
447 case 2: b |= get_unaligned_le16(end); break; in __hsiphash_unaligned()
448 case 1: b |= end[0]; in __hsiphash_unaligned()