Lines Matching refs:t
256 u64 t1, t2, m1, m2, t; \
258 rh = rl = t = 0; \
268 t += (u64)(u32)m1 + (u32)m2; \
270 ADD128(rh, rl, (t >> 32), (t << 32)); \
287 u64 p, q, t; in poly_step_func() local
296 t = (u32)(p); in poly_step_func()
302 t |= ((u64)((u32)p & 0x7fffffff)) << 32; in poly_step_func()
322 *(u64 *)(ahi) = p + t; in poly_step_func()
361 u64 rh, rl, t, z = 0; in l3hash() local
364 t = p1 >> 63; in l3hash()
366 ADD128(p1, p2, len, t); in l3hash()
368 t = (p1 > m63) + ((p1 == m63) && (p2 == m64)); in l3hash()
369 ADD128(p1, p2, z, t); in l3hash()
373 t = p1 + (p2 >> 32); in l3hash()
374 t += (t >> 32); in l3hash()
375 t += (u32)t > 0xfffffffeu; in l3hash()
376 p1 += (t >> 32); in l3hash()
387 t = rh >> 56; in l3hash()
388 ADD128(t, rl, z, rh); in l3hash()
390 ADD128(t, rl, z, rh); in l3hash()
391 t += t << 8; in l3hash()
392 rl += t; in l3hash()
393 rl += (0 - (rl < t)) & 257; in l3hash()