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 135 int Digits = PickFP(Sem, 6, 15, 18, 31, 33);
162 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
47 /// 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,
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,
67 return getRounded(Digits, Scale, ShouldRound);
71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale,
73 return getRounded(Digits, Scale, ShouldRound);
80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits,
    [all...]
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 528 unsigned Digits = (Width + 3) / 4;
533 OS << format("0x%0*x, ", Digits, Value);
    [all...]

Completed in 91 milliseconds