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

  /external/compiler-rt/lib/
fp_lib.h 68 #define hiWord(a) (a >> 32)
76 const uint64_t plohi = loWord(a) * hiWord(b);
77 const uint64_t philo = hiWord(a) * loWord(b);
78 const uint64_t phihi = hiWord(a) * hiWord(b);
81 const uint64_t r1 = hiWord(plolo) + loWord(plohi) + loWord(philo);
84 *hi = hiWord(plohi) + hiWord(philo) + hiWord(r1) + phihi;
  /external/webkit/Source/JavaScriptCore/dfg/
DFGJITCompiler.cpp 425 intptr_t hiWord = reinterpret_cast<intptr_t>(counter.addressOfCounter()) + sizeof(int32_t);
427 addWithCarry32(TrustedImm32(0), AbsoluteAddress(reinterpret_cast<void*>(hiWord)));
  /external/webkit/Source/JavaScriptCore/jit/
JITInlineMethods.h 323 intptr_t hiWord = reinterpret_cast<intptr_t>(counter.addressOfCounter()) + sizeof(int32_t);
325 addWithCarry32(TrustedImm32(0), AbsoluteAddress(reinterpret_cast<void*>(hiWord)));
  /external/llvm/lib/Support/
APInt.cpp 896 unsigned hiWord = whichWord(n-1);
897 if (hiWord == 0) {
902 assert(hiWord > 0 && "huh?");
903 uint64_t hibits = Tmp.pVal[hiWord] << (52 - n % APINT_BITS_PER_WORD);
904 uint64_t lobits = Tmp.pVal[hiWord-1] >> (11 + n % APINT_BITS_PER_WORD);
    [all...]

Completed in 84 milliseconds