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

  /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/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/utils/TableGen/
RegisterInfoEmitter.cpp 526 unsigned Digits = (Width + 3) / 4;
531 OS << format("0x%0*x, ", Digits, Value);
    [all...]

Completed in 302 milliseconds