Lines Matching refs:b
34 u64 b = ((u64)(len)) << 56; \
41 v3 ^= b; \
44 v0 ^= b; \
67 b |= le64_to_cpu((__force __le64)(load_unaligned_zeropad(data) & in __siphash_aligned()
71 case 7: b |= ((u64)end[6]) << 48; /* fall through */ in __siphash_aligned()
72 case 6: b |= ((u64)end[5]) << 40; /* fall through */ in __siphash_aligned()
73 case 5: b |= ((u64)end[4]) << 32; /* fall through */ in __siphash_aligned()
74 case 4: b |= le32_to_cpup(data); break; in __siphash_aligned()
75 case 3: b |= ((u64)end[2]) << 16; /* fall through */ in __siphash_aligned()
76 case 2: b |= le16_to_cpup(data); break; in __siphash_aligned()
77 case 1: b |= end[0]; in __siphash_aligned()
100 b |= le64_to_cpu((__force __le64)(load_unaligned_zeropad(data) & in __siphash_unaligned()
104 case 7: b |= ((u64)end[6]) << 48; /* fall through */ in __siphash_unaligned()
105 case 6: b |= ((u64)end[5]) << 40; /* fall through */ in __siphash_unaligned()
106 case 5: b |= ((u64)end[4]) << 32; /* fall through */ in __siphash_unaligned()
107 case 4: b |= get_unaligned_le32(end); break; in __siphash_unaligned()
108 case 3: b |= ((u64)end[2]) << 16; /* fall through */ in __siphash_unaligned()
109 case 2: b |= get_unaligned_le16(end); break; in __siphash_unaligned()
110 case 1: b |= end[0]; in __siphash_unaligned()
217 b |= first; in siphash_1u32()
231 b |= third; in siphash_3u32()
244 v3 ^= b; \
246 v0 ^= b; \
267 b |= le64_to_cpu((__force __le64)(load_unaligned_zeropad(data) & in __hsiphash_aligned()
271 case 7: b |= ((u64)end[6]) << 48; /* fall through */ in __hsiphash_aligned()
272 case 6: b |= ((u64)end[5]) << 40; /* fall through */ in __hsiphash_aligned()
273 case 5: b |= ((u64)end[4]) << 32; /* fall through */ in __hsiphash_aligned()
274 case 4: b |= le32_to_cpup(data); break; in __hsiphash_aligned()
275 case 3: b |= ((u64)end[2]) << 16; /* fall through */ in __hsiphash_aligned()
276 case 2: b |= le16_to_cpup(data); break; in __hsiphash_aligned()
277 case 1: b |= end[0]; in __hsiphash_aligned()
300 b |= le64_to_cpu((__force __le64)(load_unaligned_zeropad(data) & in __hsiphash_unaligned()
304 case 7: b |= ((u64)end[6]) << 48; /* fall through */ in __hsiphash_unaligned()
305 case 6: b |= ((u64)end[5]) << 40; /* fall through */ in __hsiphash_unaligned()
306 case 5: b |= ((u64)end[4]) << 32; /* fall through */ in __hsiphash_unaligned()
307 case 4: b |= get_unaligned_le32(end); break; in __hsiphash_unaligned()
308 case 3: b |= ((u64)end[2]) << 16; /* fall through */ in __hsiphash_unaligned()
309 case 2: b |= get_unaligned_le16(end); break; in __hsiphash_unaligned()
310 case 1: b |= end[0]; in __hsiphash_unaligned()
326 b |= first; in hsiphash_1u32()
363 b |= third; in hsiphash_3u32()
405 u32 b = ((u32)(len)) << 24; \
412 v3 ^= b; \
414 v0 ^= b; \
434 case 3: b |= ((u32)end[2]) << 16; /* fall through */ in __hsiphash_aligned()
435 case 2: b |= le16_to_cpup(data); break; in __hsiphash_aligned()
436 case 1: b |= end[0]; in __hsiphash_aligned()
457 case 3: b |= ((u32)end[2]) << 16; /* fall through */ in __hsiphash_unaligned()
458 case 2: b |= get_unaligned_le16(end); break; in __hsiphash_unaligned()
459 case 1: b |= end[0]; in __hsiphash_unaligned()