Searched defs:ROTR (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/skia/src/core/
H A DSkChecksum.h29 ROTR = 17, enumerator in enum:SkChecksum::__anon15161
30 ROTL = sizeof(uintptr_t) * 8 - ROTR,
35 return ((total >> ROTR) | (total << ROTL)) ^ value;
/external/skia/include/core/
H A DSkChecksum.h29 ROTR = 17, enumerator in enum:SkChecksum::__anon30482
30 ROTL = sizeof(uintptr_t) * 8 - ROTR,
35 return ((total >> ROTR) | (total << ROTL)) ^ value;
/external/valgrind/main/none/tests/mips64/
H A Dshift_instructions.c9 ROTR, ROTRV, SLL, SLLV, enumerator in enum:__anon33136
143 case ROTR:
/external/chromium_org/third_party/boringssl/src/crypto/sha/
H A Dsha512.c344 #define ROTR(a, n) \ macro
365 #define ROTR(a, n) \ macro
372 #define ROTR(a, n) \ macro
391 #define ROTR(a, n) _rotr64((a), n) macro
415 #ifndef ROTR
416 #define ROTR(x, s) (((x) >> s) | (x) << (64 - s)) macro
419 #define Sigma0(x) (ROTR((x), 28) ^ ROTR((x), 34) ^ ROTR((x), 39))
420 #define Sigma1(x) (ROTR((
[all...]
/external/openssl/crypto/sha/
H A Dsha512.c316 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
346 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
354 # define ROTR(a,n) _rotr64((a),n) macro
389 #ifndef ROTR
390 #define ROTR(x,s) (((x)>>s) | (x)<<(64-s)) macro
393 #define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39))
394 #define Sigma1(x) (ROTR((x),14) ^ ROTR((
[all...]
/external/pdfium/core/src/fdrm/crypto/
H A Dfx_crypt_sha.cpp219 #define ROTR(x,n) (SHR(x,n) | (x << (32 - n))) macro
220 #define S0(x) (ROTR(x, 7) ^ ROTR(x,18) ^ SHR(x, 3))
221 #define S1(x) (ROTR(x,17) ^ ROTR(x,19) ^ SHR(x,10))
222 #define S2(x) (ROTR(x, 2) ^ ROTR(x,13) ^ ROTR(x,22))
223 #define S3(x) (ROTR(x, 6) ^ ROTR(
[all...]
/external/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h311 SHL, SRA, SRL, ROTL, ROTR, enumerator in enum:llvm::ISD::NodeType

Completed in 1998 milliseconds