Lines Matching refs:end
48 const u8 *end = data + len - (len % sizeof(u64)); in __siphash_aligned() local
52 for (; data != end; data += sizeof(u64)) { 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()
69 case 3: b |= ((u64)end[2]) << 16; fallthrough; in __siphash_aligned()
71 case 1: b |= end[0]; in __siphash_aligned()
81 const u8 *end = data + len - (len % sizeof(u64)); in __siphash_unaligned() local
85 for (; data != end; data += sizeof(u64)) { 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()
249 const u8 *end = data + len - (len % sizeof(u64)); in __hsiphash_aligned() local
253 for (; data != end; data += sizeof(u64)) { 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()
269 case 3: b |= ((u64)end[2]) << 16; fallthrough; in __hsiphash_aligned()
271 case 1: b |= end[0]; in __hsiphash_aligned()
282 const u8 *end = data + len - (len % sizeof(u64)); in __hsiphash_unaligned() local
286 for (; data != end; data += sizeof(u64)) { 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()
411 const u8 *end = data + len - (len % sizeof(u32)); in __hsiphash_aligned() local
415 for (; data != end; data += sizeof(u32)) { in __hsiphash_aligned()
422 case 3: b |= ((u32)end[2]) << 16; fallthrough; in __hsiphash_aligned()
424 case 1: b |= end[0]; in __hsiphash_aligned()
434 const u8 *end = data + len - (len % sizeof(u32)); in __hsiphash_unaligned() local
438 for (; data != end; data += sizeof(u32)) { in __hsiphash_unaligned()
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()