Home | History | Annotate | Download | only in libmincrypt

Lines Matching defs:ror

36 #define ror(value, bits) (((value) >> (bits)) | ((value) << (32 - (bits))))
72 uint32_t s0 = ror(W[t-15], 7) ^ ror(W[t-15], 18) ^ shr(W[t-15], 3);
73 uint32_t s1 = ror(W[t-2], 17) ^ ror(W[t-2], 19) ^ shr(W[t-2], 10);
87 uint32_t s0 = ror(A, 2) ^ ror(A, 13) ^ ror(A, 22);
90 uint32_t s1 = ror(E, 6) ^ ror(E, 11) ^ ror(E, 25);