Home
last modified time | relevance | path

Searched refs:_lrotr (Results 1 – 8 of 8) sorted by relevance

/trueos/crypto/openssl/crypto/aes/
HDaes_locl.h66 # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
/trueos/crypto/openssl/crypto/rc5/
HDrc5_locl.h151 # define ROTATE_r32(a,n) _lrotr(a,n)
/trueos/contrib/wpa/src/crypto/
HDaes_i.h109 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
/trueos/crypto/openssl/crypto/camellia/
HDcamellia.c93 # define RightRotate(x, s) _lrotr(x, s)
98 # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
/trueos/contrib/llvm/tools/clang/lib/Headers/
HDIntrin.h243 unsigned long __cdecl _lrotr(unsigned long, int);
437 _lrotr(unsigned long _Value, int _Shift) { in _lrotr() function
/trueos/crypto/openssl/crypto/des/
HDdes_locl.h166 # define ROTATE(a,n) (_lrotr(a,n))
/trueos/sys/crypto/rijndael/
HDrijndael-alg-fst.c725 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
/trueos/crypto/openssl/
HDCHANGES7570 *) Make sure _lrotl and _lrotr are only used with MSVC.