Home
last modified time | relevance | path

Searched refs:p1 (Results 1 – 2 of 2) sorted by relevance

/crypto/
Dxor.c37 unsigned long *p1, *p2, *p3, *p4; in xor_blocks() local
39 p1 = (unsigned long *) srcs[0]; in xor_blocks()
41 active_template->do_2(bytes, dest, p1); in xor_blocks()
47 active_template->do_3(bytes, dest, p1, p2); in xor_blocks()
53 active_template->do_4(bytes, dest, p1, p2, p3); in xor_blocks()
58 active_template->do_5(bytes, dest, p1, p2, p3, p4); in xor_blocks()
Dvmac.c328 static u64 l3hash(u64 p1, u64 p2, u64 k1, u64 k2, u64 len) in l3hash() argument
333 t = p1 >> 63; in l3hash()
334 p1 &= m63; in l3hash()
335 ADD128(p1, p2, len, t); in l3hash()
337 t = (p1 > m63) + ((p1 == m63) && (p2 == m64)); in l3hash()
338 ADD128(p1, p2, z, t); in l3hash()
339 p1 &= m63; in l3hash()
342 t = p1 + (p2 >> 32); in l3hash()
345 p1 += (t >> 32); in l3hash()
346 p2 += (p1 << 32); in l3hash()
[all …]