Lines Matching defs:rol32
355 /* rol32: From linux kernel source code */
358 * rol32 - rotate a 32-bit value left
362 static inline __u32 rol32(__u32 word, unsigned int shift) {
393 c -= rol32(b, 14); \
395 a -= rol32(c, 11); \
397 b -= rol32(a, 25); \
399 c -= rol32(b, 16); \
401 a -= rol32(c, 4); \
403 b -= rol32(a, 14); \
405 c -= rol32(b, 24); \