Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dia32intrin.h733 #define _lrotr(a,b) __rorq((a), (b)) macro
773 #define _lrotr(a,b) __rord((a), (b)) macro
/freebsd/crypto/openssl/crypto/aes/
H A Daes_local.h19 # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
/freebsd/crypto/openssl/crypto/rc5/
H A Drc5_local.h130 # define ROTATE_r32(a,n) _lrotr(a,n)
/freebsd/contrib/wpa/src/crypto/
H A Daes_i.h109 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
/freebsd/crypto/openssl/crypto/des/
H A Ddes_local.h100 # define ROTATE(a,n) (_lrotr(a,n))
/freebsd/sys/crypto/rijndael/
H A Drijndael-alg-fst.c723 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td2590 let Spellings = ["_lrotr"];
/freebsd/crypto/openssl/
H A DCHANGES.md16610 * Make sure _lrotl and _lrotr are only used with MSVC.