Searched refs:Digits (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/Support/
H A DScaledNumber.h47 /// Given \c Digits and \c Scale, round up iff \c ShouldRound is \c true.
53 inline std::pair<DigitsT, int16_t> getRounded(DigitsT Digits, int16_t Scale, argument
58 if (!++Digits)
61 return std::make_pair(Digits, Scale);
65 inline std::pair<uint32_t, int16_t> getRounded32(uint32_t Digits, int16_t Scale, argument
67 return getRounded(Digits, Scale, ShouldRound);
71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale, argument
73 return getRounded(Digits, Scale, ShouldRound);
80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits, argument
85 if (Width == 64 || Digits <
95 getAdjusted32(uint64_t Digits, int16_t Scale = 0) argument
101 getAdjusted64(uint64_t Digits, int16_t Scale = 0) argument
189 getLgImpl(DigitsT Digits, int16_t Scale) argument
214 getLg(DigitsT Digits, int16_t Scale) argument
223 getLgFloor(DigitsT Digits, int16_t Scale) argument
233 getLgCeiling(DigitsT Digits, int16_t Scale) argument
507 DigitsType Digits; member in class:llvm::ScaledNumber
513 ScaledNumber(DigitsType Digits, int16_t Scale) argument
695 countLeadingZerosWidth(DigitsType Digits) argument
[all...]
/external/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp39 for (int Digits = 0; Digits < 16; ++Digits)
40 OS << getHexDigit(Mass >> (60 - Digits * 4) & 0xf);
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp135 int Digits = PickFP(Sem, 6, 15, 18, 31, 33); local
162 Builder.defineMacro(DefPrefix + "DIG__", Twine(Digits));
/external/llvm/lib/Support/
H A DAPInt.cpp2190 static const char Digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
2215 *--BufPtr = Digits[N % Radix];
2251 Str.push_back(Digits[Digit]);
2263 Str.push_back(Digits[Digit]);
/external/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp528 unsigned Digits = (Width + 3) / 4; local
533 OS << format("0x%0*x, ", Digits, Value);

Completed in 204 milliseconds