Home
last modified time | relevance | path

Searched defs:ror (Results 1 – 25 of 105) sorted by relevance

12345

/aosp_15_r20/device/google/contexthub/lib/nanohub/
Dsha2.c39 …#define ror(v, b) ({uint32_t ret; if (b) asm("ror %0, #" STRINGIFY(b) :"=r"(ret):"0"(v)); else ret… macro
43 inline static uint32_t ror(uint32_t val, uint32_t by) in ror() function
Daes.c138 …#define ror(v, b) ({uint32_t ret; if (b) asm("ror %0, #" STRINGIFY(b) :"=r"(ret):"0"(v)); else ret… macro
142 inline static uint32_t ror(uint32_t val, uint32_t by) in ror() function
/aosp_15_r20/system/chre/apps/nearby/location/lbs/contexthub/nanoapps/nearby/crypto/
H A Dsha2.c52 #define ror(v, b) \ macro
64 inline static uint32_t ror(uint32_t val, uint32_t by) { in ror() function
H A Daes.c123 #define ror(v, b) \ macro
135 inline static uint32_t ror(uint32_t val, uint32_t by) { in ror() function
/aosp_15_r20/external/vixl/test/aarch32/
H A Dtest-assembler-cond-rd-operand-rn-ror-amount-t32.cc74 ShiftType ror; member
1233 ShiftType ror = kTests[i].operands.ror; in TestHelper() local
H A Dtest-assembler-cond-rd-rn-operand-rm-ror-amount-t32.cc75 ShiftType ror; member
5135 ShiftType ror = kTests[i].operands.ror; in TestHelper() local
H A Dtest-assembler-cond-rd-rn-operand-rm-ror-amount-a32.cc75 ShiftType ror; member
5135 ShiftType ror = kTests[i].operands.ror; in TestHelper() local
H A Dtest-assembler-cond-rd-operand-rn-ror-amount-a32.cc74 ShiftType ror; member
1345 ShiftType ror = kTests[i].operands.ror; in TestHelper() local
H A Dtest-simulator-cond-rd-operand-rn-ror-amount-t32.cc139 ShiftType ror; member
597 ShiftType ror = kTests[i].operands.ror; in TestHelper() local
H A Dtest-simulator-cond-rd-operand-rn-ror-amount-a32.cc139 ShiftType ror; member
597 ShiftType ror = kTests[i].operands.ror; in TestHelper() local
H A Dtest-simulator-cond-rd-rn-operand-rm-ror-amount-t32.cc140 ShiftType ror; member
1131 ShiftType ror = kTests[i].operands.ror; in TestHelper() local
H A Dtest-simulator-cond-rd-rn-operand-rm-ror-amount-a32.cc140 ShiftType ror; member
1131 ShiftType ror = kTests[i].operands.ror; in TestHelper() local
/aosp_15_r20/external/bc/scripts/
H A Dbitfuncgen.c101 ror(uint64_t a, uint64_t p, size_t bits) in ror() function
/aosp_15_r20/external/capstone/arch/AArch64/
H A DAArch64AddressingModes.h119 static inline uint64_t ror(uint64_t elt, unsigned size) in ror() function
/aosp_15_r20/art/compiler/optimizing/
H A Dinstruction_simplifier_shared.cc331 HInstruction* ror = new (allocator) HRor(rol->GetType(), rol->GetLeft(), neg); in UnfoldRotateLeft() local
/aosp_15_r20/external/selinux/libsemanage/src/
H A Dsha256.c22 #define ror(value, bits) (((value) >> (bits)) | ((value) << (32 - (bits)))) macro
/aosp_15_r20/external/vixl/src/aarch32/
H A Dinstructions-aarch32.cc639 static inline uint32_t ror(uint32_t x, int i) { in ror() function
/aosp_15_r20/external/musl/src/crypt/
H A Dcrypt_sha512.c25 static uint64_t ror(uint64_t n, int k) { return (n >> k) | (n << (64-k)); } in ror() function
H A Dcrypt_sha256.c24 static uint32_t ror(uint32_t n, int k) { return (n >> k) | (n << (32-k)); } in ror() function
/aosp_15_r20/external/trusty/musl/src/crypt/
Dcrypt_sha512.c25 static uint64_t ror(uint64_t n, int k) { return (n >> k) | (n << (64-k)); } in ror() function
Dcrypt_sha256.c24 static uint32_t ror(uint32_t n, int k) { return (n >> k) | (n << (32-k)); } in ror() function
/aosp_15_r20/external/toybox/lib/
H A Dhash.c132 #define ror(value, bits) (((value)>>(bits))|((value)<<(sizeof(value)*8-(bits)))) macro
/aosp_15_r20/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h32 ror, enumerator
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h32 ror, enumerator
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h32 ror, enumerator

12345