HomeSort by: relevance | last modified time | path
    Searched defs:Digits (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
BytesOutputStyle.cpp 325 uint32_t Digits, uint32_t IndentLevel,
329 fmt_align(I, AlignStyle::Right, std::max(Digits, 4U)));
335 fmt_align(I, AlignStyle::Right, std::max(Digits, 4U)),
373 uint32_t Digits = NumDigits(Count);
375 iterateOneModule(File, P, Modules, I, Digits, IndentLevel, Callback);
  /src/sys/external/bsd/acpica/dist/utilities/
utprint.c 161 * Upper - Whether or not using upper cased digits
177 const char *Digits;
183 Digits = Upper ? AcpiGbl_UpperHexDigits : AcpiGbl_LowerHexDigits;
194 *(Pos++) = Digits[DigitIndex];
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
InitPreprocessor.cpp 119 int Digits = PickFP(Sem, 3, 6, 15, 18, 31, 33);
146 Builder.defineMacro(DefPrefix + "DIG__", Twine(Digits));
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ScaledNumber.h 10 // numbers -- in particular, pairs of integers where one represents digits and
46 /// Given \c Digits and \c Scale, round up iff \c ShouldRound is \c true.
52 inline std::pair<DigitsT, int16_t> getRounded(DigitsT Digits, int16_t Scale,
57 if (!++Digits)
60 return std::make_pair(Digits, Scale);
64 inline std::pair<uint32_t, int16_t> getRounded32(uint32_t Digits, int16_t Scale,
66 return getRounded(Digits, Scale, ShouldRound);
70 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale,
72 return getRounded(Digits, Scale, ShouldRound);
79 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits,
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 594 unsigned Digits = (Width + 3) / 4;
599 OS << format("0x%0*x, ", Digits, Value);

Completed in 27 milliseconds