/external/boringssl/src/crypto/fipsmodule/sha/ |
D | sha512.c | 316 #define ROTR(a, n) \ macro 323 #define ROTR(a, n) \ macro 330 #define ROTR(a, n) \ macro 339 #define ROTR(a, n) _rotr64((a), n) macro 343 #define ROTR(x, s) (((x) >> s) | (x) << (64 - s)) macro
|
/external/epid-sdk/epid/member/tiny/math/src/ |
D | sha512.c | 96 static uint64_t ROTR(const uint64_t x, unsigned char s) { in ROTR() function
|
D | sha256.c | 144 static unsigned int ROTR(unsigned int a, unsigned int n) { in ROTR() function
|
/external/openssh/ |
D | blocks.c | 41 #define ROTR(x,c) (((x) >> (c)) | ((x) << (64 - (c)))) macro
|
/external/u-boot/lib/libavb/ |
D | avb_sha256.c | 14 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
D | avb_sha512.c | 14 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
/external/vboot_reference/firmware/2lib/ |
D | 2sha256.c | 43 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
D | 2sha512.c | 43 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
/external/avb/libavb/ |
D | avb_sha256.c | 41 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
D | avb_sha512.c | 41 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
/external/u-boot/lib/ |
D | sha256.c | 82 #define ROTR(x,n) (SHR(x,n) | (x << (32 - n))) in sha256_process() macro
|
/external/vboot_reference/firmware/lib/cryptolib/ |
D | sha256.c | 44 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
D | sha512.c | 44 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
|
/external/pdfium/core/fdrm/crypto/ |
D | fx_crypt_sha.cpp | 65 #define ROTR(x, n) (SHR(x, n) | (x << (32 - n))) macro
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 317 SHL, SRA, SRL, ROTL, ROTR, enumerator
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 382 SHL, SRA, SRL, ROTL, ROTR, enumerator
|
/external/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 339 SHL, SRA, SRL, ROTL, ROTR, enumerator
|