Lines Matching refs:b
27 u64 b = ((u64)(len)) << 56; \
34 v3 ^= b; \
37 v0 ^= b; \
61 b |= le64_to_cpu((__force __le64)(load_unaligned_zeropad(data) & in __siphash_aligned()
65 case 7: b |= ((u64)end[6]) << 48; fallthrough; in __siphash_aligned()
66 case 6: b |= ((u64)end[5]) << 40; fallthrough; in __siphash_aligned()
67 case 5: b |= ((u64)end[4]) << 32; fallthrough; in __siphash_aligned()
68 case 4: b |= le32_to_cpup(data); break; in __siphash_aligned()
69 case 3: b |= ((u64)end[2]) << 16; fallthrough; in __siphash_aligned()
70 case 2: b |= le16_to_cpup(data); break; in __siphash_aligned()
71 case 1: b |= end[0]; in __siphash_aligned()
94 b |= le64_to_cpu((__force __le64)(load_unaligned_zeropad(data) & in __siphash_unaligned()
98 case 7: b |= ((u64)end[6]) << 48; fallthrough; in __siphash_unaligned()
99 case 6: b |= ((u64)end[5]) << 40; fallthrough; in __siphash_unaligned()
100 case 5: b |= ((u64)end[4]) << 32; fallthrough; in __siphash_unaligned()
101 case 4: b |= get_unaligned_le32(end); break; in __siphash_unaligned()
102 case 3: b |= ((u64)end[2]) << 16; fallthrough; in __siphash_unaligned()
103 case 2: b |= get_unaligned_le16(end); break; in __siphash_unaligned()
104 case 1: b |= end[0]; in __siphash_unaligned()
210 b |= first; in siphash_1u32()
224 b |= third; in siphash_3u32()
237 v3 ^= b; \
239 v0 ^= b; \
261 b |= le64_to_cpu((__force __le64)(load_unaligned_zeropad(data) & in __hsiphash_aligned()
265 case 7: b |= ((u64)end[6]) << 48; fallthrough; in __hsiphash_aligned()
266 case 6: b |= ((u64)end[5]) << 40; fallthrough; in __hsiphash_aligned()
267 case 5: b |= ((u64)end[4]) << 32; fallthrough; in __hsiphash_aligned()
268 case 4: b |= le32_to_cpup(data); break; in __hsiphash_aligned()
269 case 3: b |= ((u64)end[2]) << 16; fallthrough; in __hsiphash_aligned()
270 case 2: b |= le16_to_cpup(data); break; in __hsiphash_aligned()
271 case 1: b |= end[0]; in __hsiphash_aligned()
294 b |= le64_to_cpu((__force __le64)(load_unaligned_zeropad(data) & in __hsiphash_unaligned()
298 case 7: b |= ((u64)end[6]) << 48; fallthrough; in __hsiphash_unaligned()
299 case 6: b |= ((u64)end[5]) << 40; fallthrough; in __hsiphash_unaligned()
300 case 5: b |= ((u64)end[4]) << 32; fallthrough; in __hsiphash_unaligned()
301 case 4: b |= get_unaligned_le32(end); break; in __hsiphash_unaligned()
302 case 3: b |= ((u64)end[2]) << 16; fallthrough; in __hsiphash_unaligned()
303 case 2: b |= get_unaligned_le16(end); break; in __hsiphash_unaligned()
304 case 1: b |= end[0]; in __hsiphash_unaligned()
319 b |= first; in hsiphash_1u32()
356 b |= third; in hsiphash_3u32()
392 u32 b = ((u32)(len)) << 24; \
399 v3 ^= b; \
401 v0 ^= b; \
422 case 3: b |= ((u32)end[2]) << 16; fallthrough; in __hsiphash_aligned()
423 case 2: b |= le16_to_cpup(data); break; in __hsiphash_aligned()
424 case 1: b |= end[0]; in __hsiphash_aligned()
445 case 3: b |= ((u32)end[2]) << 16; fallthrough; in __hsiphash_unaligned()
446 case 2: b |= get_unaligned_le16(end); break; in __hsiphash_unaligned()
447 case 1: b |= end[0]; in __hsiphash_unaligned()