HomeSort by relevance Sort by last modified time
    Searched defs:RORc (Results 1 - 5 of 5) sorted by null

  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_macros.h 242 #define RORc(x,n) _lrotr(x,n)
273 static inline unsigned RORc(unsigned word, const int i)
284 #define RORc ROR
316 static inline unsigned RORc(unsigned word, const int i)
327 #define RORc ROR
338 #define RORc(x, y) ( ((((unsigned long)(x)&0xFFFFFFFFUL)>>(unsigned long)((y)&31)) | ((unsigned long)(x)<<(unsigned long)(32-((y)&31)))) & 0xFFFFFFFFUL)
  /external/wpa_supplicant/
des.c 50 #define RORc(x, y) \
358 work = RORc(right, 4) ^ *keys++;
369 work = RORc(leftt, 4) ^ *keys++;
381 right = RORc(right, 1);
385 leftt = RORc(leftt, 1);
sha256.c 215 #define RORc(x, y) \
220 #define S(x, n) RORc((x), (n))
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
des.c 50 #define RORc(x, y) \
358 work = RORc(right, 4) ^ *keys++;
369 work = RORc(leftt, 4) ^ *keys++;
381 right = RORc(right, 1);
385 leftt = RORc(leftt, 1);
sha256.c 218 #define RORc(x, y) \
223 #define S(x, n) RORc((x), (n))

Completed in 90 milliseconds