HomeSort by relevance Sort by last modified time
    Searched defs:ROTR (Results 1 - 4 of 4) sorted by null

  /external/skia/include/core/
SkChecksum.h 20 ROTR = 17,
21 ROTL = sizeof(uintptr_t) * 8 - ROTR,
26 return ((total >> ROTR) | (total << ROTL)) ^ value;
  /external/openssl/crypto/sha/
sha512.c 309 # define ROTR(a,n) ({ SHA_LONG64 ret; \
339 # define ROTR(a,n) ({ SHA_LONG64 ret; \
347 # define ROTR(a,n) _rotr64((a),n)
382 #ifndef ROTR
383 #define ROTR(x,s) (((x)>>s) | (x)<<(64-s))
386 #define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39))
387 #define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41)
    [all...]
  /external/llvm/include/llvm/CodeGen/
ISDOpcodes.h 318 SHL, SRA, SRL, ROTL, ROTR,
    [all...]
  /system/core/libpixelflinger/codeflinger/
MIPSAssembler.cpp 401 mMips->ROTR(tmpReg, amode.reg, amode.value);
512 mMips->ROTR(Rd, amode.reg, amode.value);
544 mMips->ROTR(Rd, amode.reg, amode.value);
    [all...]

Completed in 620 milliseconds