Home | History | Annotate | Download | only in crypto

Lines Matching defs:rol

18 #define rol(x, y) (((x) << (y)) | (((unsigned int)x) >> (32 - y)))
35 w[t] = rol(tmp, 1);
43 unsigned int tmp = rol(a, 5) + ((b & c) | (d & ~b)) + e + w[t] + 0x5a827999;
46 c = rol(b, 30);
51 unsigned int tmp = rol(a, 5) + (b ^ c ^ d) + e + w[t] + 0x6ed9eba1;
54 c = rol(b, 30);
60 rol(a, 5) + ((b & c) | (b & d) | (c & d)) + e + w[t] + 0x8f1bbcdc;
63 c = rol(b, 30);
68 unsigned int tmp = rol(a, 5) + (b ^ c ^ d) + e + w[t] + 0xca62c1d6;
71 c = rol(b, 30);