Searched defs:ROR (Results 1 – 10 of 10) sorted by relevance
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/ |
H A D | 20020508-2.c | 7 #define ROR(a,b) (((a) >> (b)) | ((a) << ((sizeof (a) * CHAR_BIT) - (b)))) macro
|
H A D | 20020226-1.c | 9 #define ROR(a,b) (((a) >> (b)) | ((a) << ((sizeof (a) * CHAR_BIT) - (b)))) macro
|
H A D | 20020508-1.c | 9 #define ROR(a,b) (((a) >> (b)) | ((a) << ((sizeof (a) * CHAR_BIT) - (b)))) macro
|
H A D | 20020508-3.c | 7 #define ROR(a,b) (((a) >> (b)) | ((a) << ((sizeof (a) * CHAR_BIT) - (b)))) macro
|
/openbsd-src/sys/crypto/ |
H A D | michael.c | 31 #define ROR(n, x) (((x) >> (n)) | ((x) << (32 - (n)))) macro
|
/openbsd-src/gnu/llvm/llvm/lib/Target/AVR/ |
H A D | AVRISelLowering.h | 53 ROR, ///< Bit rotate right. enumerator
|
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Utility/ |
H A D | ARMUtils.h | 182 static inline uint32_t ROR(const uint32_t value, const uint32_t amount, in ROR() function
|
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/Utils/ |
H A D | AArch64BaseInfo.h | 613 ROR, enumerator
|
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64AddressingModes.h | 38 ROR, enumerator
|
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 7231 if (SDValue ROR = reassociateOps(ISD::OR, SDLoc(N), N0, N1, N->getFlags())) in visitOR() local
|