Home
last modified time | relevance | path

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

/crypto/
Dxor.c29 unsigned long *p1, *p2, *p3, *p4; in xor_blocks() local
31 p1 = (unsigned long *) srcs[0]; in xor_blocks()
33 active_template->do_2(bytes, dest, p1); in xor_blocks()
39 active_template->do_3(bytes, dest, p1, p2); in xor_blocks()
45 active_template->do_4(bytes, dest, p1, p2, p3); in xor_blocks()
50 active_template->do_5(bytes, dest, p1, p2, p3, p4); in xor_blocks()
Dvmac.c358 static u64 l3hash(u64 p1, u64 p2, u64 k1, u64 k2, u64 len) in l3hash() argument
363 t = p1 >> 63; in l3hash()
364 p1 &= m63; in l3hash()
365 ADD128(p1, p2, len, t); in l3hash()
367 t = (p1 > m63) + ((p1 == m63) && (p2 == m64)); in l3hash()
368 ADD128(p1, p2, z, t); in l3hash()
369 p1 &= m63; in l3hash()
372 t = p1 + (p2 >> 32); in l3hash()
375 p1 += (t >> 32); in l3hash()
376 p2 += (p1 << 32); in l3hash()
[all …]
Dsm3_generic.c34 static inline u32 p1(u32 x) in p1() function
65 w[i] = p1(tmp) ^ (rol32(w[i - 13], 7)) ^ w[i - 6]; in sm3_expand()