Searched defs:Digits (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp138 int Digits = PickFP(Sem, 6, 15, 18, 31, 33); local
164 Builder.defineMacro(DefPrefix + "DIG__", Twine(Digits));
/external/llvm/include/llvm/Support/
H A DScaledNumber.h48 /// 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, argument
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, argument
68 return getRounded(Digits, Scale, ShouldRound);
72 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale, argument
74 return getRounded(Digits, Scale, ShouldRound);
81 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits, argument
86 if (Width == 64 || Digits <
96 getAdjusted32(uint64_t Digits, int16_t Scale = 0) argument
102 getAdjusted64(uint64_t Digits, int16_t Scale = 0) argument
190 getLgImpl(DigitsT Digits, int16_t Scale) argument
215 getLg(DigitsT Digits, int16_t Scale) argument
224 getLgFloor(DigitsT Digits, int16_t Scale) argument
234 getLgCeiling(DigitsT Digits, int16_t Scale) argument
508 DigitsType Digits; member in class:llvm::ScaledNumber
514 ScaledNumber(DigitsType Digits, int16_t Scale) argument
696 countLeadingZerosWidth(DigitsType Digits) argument
[all...]
/external/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp526 unsigned Digits = (Width + 3) / 4; local
531 OS << format("0x%0*x, ", Digits, Value);

Completed in 80 milliseconds