| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | ScaledNumber.h | 57 if (!++Digits) in getRounded() 191 if (!Digits) in getLgImpl() 513 : Digits(Digits), Scale(Scale) {} in ScaledNumber() 610 ScaledNumbers::getSum(Digits, Scale, X.Digits, X.Scale); 644 ScaledNumbers::matchScales(Digits, Scale, X.Digits, X.Scale); in matchScales() 669 return ScaledNumbers::compare(Digits, Scale, X.Digits, X.Scale); in compare() 787 IntT N = Digits; in toInt() 811 *this = getProduct(Digits, X.Digits); 828 *this = getQuotient(Digits, X.Digits); 860 Digits <<= Shift; in shiftLeft() [all …]
|
| H A D | FormatProviders.h | 133 size_t Digits = 0; 135 Digits = consumeNumHexDigits(Style, HS, 0); 136 write_hex(Stream, V, HS, Digits); 146 Style.consumeInteger(10, Digits); 148 write_integer(Stream, V, Digits, IS); 183 size_t Digits = consumeNumHexDigits(Style, HS, sizeof(void *) * 2); 184 write_hex(Stream, reinterpret_cast<std::uintptr_t>(V), HS, Digits);
|
| /llvm-project-15.0.7/libcxx/test/support/ |
| H A D | hexfloat.h | 26 const std::size_t Digits = sizeof(unsigned long long) * CHAR_BIT; in CountLeadingZeros() local 27 const unsigned long long TopBit = 1ull << (Digits - 1); in CountLeadingZeros() 28 if (n == 0) return Digits; in CountLeadingZeros() 40 const std::size_t Digits = sizeof(unsigned long long) * CHAR_BIT; in hexfloat() local 42 int exp2 = -static_cast<int>(Digits - CountLeadingZeros(m0)/4*4); in hexfloat()
|
| /llvm-project-15.0.7/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 | 1073 uint32_t Digits = NumDigits(*MaxID); in dumpStringTableFromPdb() local 1075 P.formatLine("{0} | {1}", fmt_align("ID", AlignStyle::Right, Digits), in dumpStringTableFromPdb() 1094 P.formatLine("{0} | {1}", fmt_align(I, AlignStyle::Right, Digits), in dumpStringTableFromPdb()
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | BlockFrequencyInfoImpl.cpp | 82 for (int Digits = 0; Digits < 16; ++Digits) in print() local 83 OS << getHexDigit(Mass >> (60 - Digits * 4) & 0xf); in print()
|
| /llvm-project-15.0.7/llvm/test/tools/yaml2obj/ |
| H A D | macro.yaml | 26 ## Digits can appear in macro names. Test that we don't expand macros recursively.
|
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | MathExtrasTest.cpp | 399 const int Digits = std::numeric_limits<T>::digits; in SaturatingMultiplyTestHelper() local 400 for (int A = 1, B = Digits - 1; B >= 1; ++A, --B) { in SaturatingMultiplyTestHelper()
|
| /llvm-project-15.0.7/clang/include/clang/Driver/ |
| H A D | Driver.h | 737 MutableArrayRef<unsigned> Digits);
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | APInt.cpp | 2176 static const char Digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; in toString() local 2201 *--BufPtr = Digits[N % Radix]; in toString() 2236 Str.push_back(Digits[Digit]); in toString() 2244 Str.push_back(Digits[Digit]); in toString()
|
| /llvm-project-15.0.7/clang/lib/Frontend/ |
| H A D | InitPreprocessor.cpp | 120 int Digits = PickFP(Sem, 3, 6, 15, 18, 31, 33); in DefineFloatMacros() local 147 Builder.defineMacro(DefPrefix + "DIG__", Twine(Digits)); in DefineFloatMacros()
|
| /llvm-project-15.0.7/llvm/utils/TableGen/ |
| H A D | RegisterInfoEmitter.cpp | 594 unsigned Digits = (Width + 3) / 4; in printBitVectorAsHex() local 599 OS << format("0x%0*x, ", Digits, Value); in printBitVectorAsHex()
|
| /llvm-project-15.0.7/polly/lib/External/isl/imath/ |
| H A D | doc.md.in | 206 available unsigned integer type, so typically 16 or 32 bits. Digits are
|
| /llvm-project-15.0.7/clang/lib/Driver/ |
| H A D | Driver.cpp | 6254 MutableArrayRef<unsigned> Digits) { in GetReleaseVersion() argument 6259 while (CurDigit < Digits.size()) { in GetReleaseVersion() 6263 Digits[CurDigit] = Digit; in GetReleaseVersion()
|
| /llvm-project-15.0.7/llvm/docs/TableGen/ |
| H A D | BackGuide.rst | 662 OS << format("0x%0*x, ", Digits, Value);
|