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

  /external/skia/include/core/
SkChecksum.h 30 ROTL = sizeof(uintptr_t) * 8 - ROTR,
35 return ((total >> ROTR) | (total << ROTL)) ^ value;
  /external/chromium_org/third_party/skia/src/core/
SkChecksum.h 30 ROTL = sizeof(uintptr_t) * 8 - ROTR,
35 return ((total >> ROTR) | (total << ROTL)) ^ value;
  /external/chromium_org/net/http/
md4.cc 65 #define ROTL(x,n) (((x) << (n)) | ((x) >> (0x20 - n)))
68 #define RD1(a,b,c,d,k,s) a += F(b,c,d) + X[k]; a = ROTL(a,s)
71 #define RD2(a,b,c,d,k,s) a += G(b,c,d) + X[k] + 0x5A827999; a = ROTL(a,s)
74 #define RD3(a,b,c,d,k,s) a += H(b,c,d) + X[k] + 0x6ED9EBA1; a = ROTL(a,s)
  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 186 SDValue ROTL = DAG.getNode(ISD::ROTL, DL, MVT::i32, SRL,
188 return ROTL;
  /external/llvm/include/llvm/CodeGen/
ISDOpcodes.h 311 SHL, SRA, SRL, ROTL, ROTR,
    [all...]
  /external/valgrind/main/VEX/priv/
guest_ppc_toIR.c     [all...]

Completed in 108 milliseconds