Searched defs:RORc (Results 1 - 5 of 5) sorted by relevance

/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_macros.h242 #define RORc(x,n) _lrotr(x,n) macro
273 static inline unsigned RORc(unsigned word, const int i) function
284 #define RORc ROR macro
316 static inline unsigned RORc(unsigned word, const int i) function
327 #define RORc ROR macro
338 #define RORc(x, y) ( ((((unsigned long)(x)&0xFFFFFFFFUL)>>(unsigned long)((y)&31)) | ((unsigned long)(x)<<(unsigned long)(32-((y)&31)))) & 0xFFFFFFFFUL) macro
/external/wpa_supplicant/
H A Ddes.c50 #define RORc(x, y) \ macro
358 work = RORc(right, 4) ^ *keys++;
369 work = RORc(leftt, 4) ^ *keys++;
381 right = RORc(right, 1);
385 leftt = RORc(leftt, 1);
H A Dsha256.c215 #define RORc(x, y) \ macro
220 #define S(x, n) RORc((x), (n))
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Ddes.c50 #define RORc(x, y) \ macro
358 work = RORc(right, 4) ^ *keys++;
369 work = RORc(leftt, 4) ^ *keys++;
381 right = RORc(right, 1);
385 leftt = RORc(leftt, 1);
H A Dsha256.c218 #define RORc(x, y) \ macro
223 #define S(x, n) RORc((x), (n))

Completed in 96 milliseconds