Searched refs:ROTATE_LEFT (Results 1 - 1 of 1) sorted by relevance

/xnu-2782.1.97/osfmk/prng/
H A Dfips_sha1.c132 /* ROTATE_LEFT rotates x left n bits. */
133 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) macro
137 (v) = ROTATE_LEFT(w, 5) + f(x, y, z) + (v) + (i) + (k); \
138 (x) = ROTATE_LEFT(x, 30); \
149 (p) = ROTATE_LEFT(p, 1); \

Completed in 22 milliseconds