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

  /external/llvm/include/llvm/Support/
ScaledNumber.h 11 // numbers -- in particular, pairs of integers where one represents digits and
48 /// Given \c Digits and \c Scale, round up iff \c ShouldRound is \c true.
54 inline std::pair<DigitsT, int16_t> getRounded(DigitsT Digits, int16_t Scale,
59 if (!++Digits)
62 return std::make_pair(Digits, Scale);
66 inline std::pair<uint32_t, int16_t> getRounded32(uint32_t Digits, int16_t Scale,
68 return getRounded(Digits, Scale, ShouldRound);
72 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale,
74 return getRounded(Digits, Scale, ShouldRound);
81 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits,
    [all...]
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 44 for (int Digits = 0; Digits < 16; ++Digits)
45 OS << getHexDigit(Mass >> (60 - Digits * 4) & 0xf);
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 138 int Digits = PickFP(Sem, 6, 15, 18, 31, 33);
164 Builder.defineMacro(DefPrefix + "DIG__", Twine(Digits));
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 207 /// no further borrowing is neeeded or it runs out of "digits" in x. The result
208 /// is 1 if "borrowing" exhausted the digits in x, or 0 if x was not exhausted.
219 break; // Remaining digits are unchanged so exit early
641 // the first few digits. But, I'm not sure how accurate that could be.
    [all...]
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 526 unsigned Digits = (Width + 3) / 4;
531 OS << format("0x%0*x, ", Digits, Value);
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
math_semantic_attr.js 653 // Digits.
758 /** Array of all single digits.
761 this.digits = this.digitsNormal.concat(
773 this.allNumbers = this.digits.concat(this.numbers);
    [all...]

Completed in 446 milliseconds