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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DSHA.cpp84 #define rotl32(x,n) (((x) << n) | ((x) >> (32 - n))) macro
91 #define swap_b32(x) ((rotl32((x), 8) & 0x00ff00ff) | (rotl32((x), 24) & 0xff00ff00))
105 #define rnd(f,k) t = a; a = rotl32(a,5) + f(b,c,d) + e + k + w[i]; e = d; d = c; c = rotl32(b, 30); b = t
118 w[i] = rotl32(w[i - 3] ^ w[i - 8] ^ w[i - 14] ^ w[i - 16], 1);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/libbb/
H A Dsha1.c27 #define rotl32(x,n) (((x) << n) | ((x) >> (32 - n))) macro
40 t = a; a = rotl32(a,5) + f(b,c,d) + e + k + w[i]; \
41 e = d; d = c; c = rotl32(b, 30); b = t; \
55 w[i] = rotl32(w[i - 3] ^ w[i - 8] ^ w[i - 14] ^ w[i - 16], 1);

Completed in 58 milliseconds