/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | ScaledNumber.h | 52 inline std::pair<DigitsT, int16_t> getRounded(DigitsT Digits, int16_t Scale, in getRounded() argument 57 if (!++Digits) in getRounded() 60 return std::make_pair(Digits, Scale); in getRounded() 64 inline std::pair<uint32_t, int16_t> getRounded32(uint32_t Digits, int16_t Scale, in getRounded32() argument 66 return getRounded(Digits, Scale, ShouldRound); in getRounded32() 70 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale, in getRounded64() argument 72 return getRounded(Digits, Scale, ShouldRound); in getRounded64() 79 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits, 84 if (Width == 64 || Digits <= std::numeric_limits<DigitsT>::max()) 85 return std::make_pair(Digits, Scale); [all …]
|
H A D | FormatProviders.h | 135 size_t Digits = 0; 137 Digits = consumeNumHexDigits(Style, *HS, 0); 138 write_hex(Stream, V, *HS, Digits); 148 Style.consumeInteger(10, Digits); 150 write_integer(Stream, V, Digits, IS); 186 size_t Digits = consumeNumHexDigits(Style, HS, sizeof(void *) * 2); 187 write_hex(Stream, reinterpret_cast<std::uintptr_t>(V), HS, Digits);
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | common.h | 121 constexpr uptr Digits = 100; in computePercentage() local 128 *Integral = Numerator * Digits / Denominator; in computePercentage() 130 (((Numerator * Digits) % Denominator) * Digits + Denominator / 2) / in computePercentage()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | BytesOutputStyle.cpp | 325 uint32_t Digits, uint32_t IndentLevel, in iterateOneModule() argument 329 fmt_align(I, AlignStyle::Right, std::max(Digits, 4U))); in iterateOneModule() 335 fmt_align(I, AlignStyle::Right, std::max(Digits, 4U)), in iterateOneModule() 373 uint32_t Digits = NumDigits(Count); in iterateModules() local 375 iterateOneModule(File, P, Modules, I, Digits, IndentLevel, Callback); in iterateModules()
|
H A D | DumpOutputStyle.cpp | 1074 uint32_t Digits = NumDigits(*MaxID); in dumpStringTableFromPdb() local 1076 P.formatLine("{0} | {1}", fmt_align("ID", AlignStyle::Right, Digits), in dumpStringTableFromPdb() 1095 P.formatLine("{0} | {1}", fmt_align(I, AlignStyle::Right, Digits), in dumpStringTableFromPdb()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | BlockFrequencyInfoImpl.cpp | 83 for (int Digits = 0; Digits < 16; ++Digits) in print() local 84 OS << getHexDigit(Mass >> (60 - Digits * 4) & 0xf); in print()
|
/freebsd/sys/contrib/device-tree/Bindings/ |
H A D | dts-coding-style.rst | 25 * Digits: [0-9] 31 * Digits: [0-9]
|
/freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
H A D | Driver.h | 815 MutableArrayRef<unsigned> Digits);
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | APInt.cpp | 2177 const char *Digits = BothDigits + (UpperCase ? 36 : 0); in toString() local 2205 *--BufPtr = Digits[N % Radix]; in toString() 2245 Str.push_back(Digits[Digit]); in toString() 2258 Str.push_back(Digits[Digit]); in toString()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | InitPreprocessor.cpp | 125 int Digits = PickFP(Sem, 3, 6, 15, 18, 31, 33); in DefineFloatMacros() local 153 Builder.defineMacro(DefPrefix + "DIG__", Twine(Digits)); in DefineFloatMacros()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | RegisterInfoEmitter.cpp | 591 unsigned Digits = (Width + 3) / 4; in printBitVectorAsHex() local 596 OS << format("0x%0*x, ", Digits, Value); in printBitVectorAsHex()
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ |
H A D | Driver.cpp | 6638 /// Parse digits from a string \p Str and fulfill \p Digits with 6640 /// digits to look for is equal to Digits.size(). in GetReleaseVersion() argument 6645 MutableArrayRef<unsigned> Digits) { in GetReleaseVersion() 6650 while (CurDigit < Digits.size()) { in GetReleaseVersion() 6654 Digits[CurDigit] = Digit; in GetReleaseVersion()
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | funstack.ok | 1771 Digits and Roundoff Errors . . . . . . . 269--271
|
H A D | funstack.in | 13299 title = "On the Distributions of Significant Digits and Roundoff Errors",
|