HomeSort by relevance Sort by last modified time
    Searched defs:RORc (Results 1 - 3 of 3) 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_8/src/crypto/
sha256-internal.c 65 #define RORc(x, y) \
70 #define S(x, n) RORc((x), (n))
des-internal.c 42 #define RORc(x, y) \
350 work = RORc(right, 4) ^ *keys++;
361 work = RORc(leftt, 4) ^ *keys++;
373 right = RORc(right, 1);
377 leftt = RORc(leftt, 1);

Completed in 60 milliseconds