reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/APInt.cpp
  832   uint64_t exp = n;
  846   unsigned hiWord = whichWord(n-1);
  849     if (n > 52)
  850       mantissa >>= n - 52; // shift down, we want the top 52 bits.
  853     uint64_t hibits = Tmp.U.pVal[hiWord] << (52 - n % APINT_BITS_PER_WORD);
  854     uint64_t lobits = Tmp.U.pVal[hiWord-1] >> (11 + n % APINT_BITS_PER_WORD);