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

/external/skia/include/core/
H A DSkChecksum.h20 ROTR = 17, enumerator in enum:SkChecksum::__anon12859
21 ROTL = sizeof(uintptr_t) * 8 - ROTR,
26 return ((total >> ROTR) | (total << ROTL)) ^ value;
/external/openssl/crypto/sha/
H A Dsha512.c309 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
339 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
347 # define ROTR(a,n) _rotr64((a),n) macro
382 #ifndef ROTR
383 #define ROTR(x,s) (((x)>>s) | (x)<<(64-s)) macro
386 #define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39))
387 #define Sigma1(x) (ROTR((x),14) ^ ROTR((
[all...]
/external/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h318 SHL, SRA, SRL, ROTL, ROTR, enumerator in enum:llvm::ISD::NodeType

Completed in 120 milliseconds