/external/llvm/include/llvm/Support/ |
D | ScaledNumber.h | 53 inline std::pair<DigitsT, int16_t> getRounded(DigitsT Digits, int16_t Scale, in getRounded() argument 58 if (!++Digits) in getRounded() 61 return std::make_pair(Digits, Scale); in getRounded() 65 inline std::pair<uint32_t, int16_t> getRounded32(uint32_t Digits, int16_t Scale, in getRounded32() argument 67 return getRounded(Digits, Scale, ShouldRound); in getRounded32() 71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale, in getRounded64() argument 73 return getRounded(Digits, Scale, ShouldRound); in getRounded64() 80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits, 85 if (Width == 64 || Digits <= std::numeric_limits<DigitsT>::max()) 86 return std::make_pair(Digits, Scale); [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | ScaledNumber.h | 53 inline std::pair<DigitsT, int16_t> getRounded(DigitsT Digits, int16_t Scale, in getRounded() argument 58 if (!++Digits) in getRounded() 61 return std::make_pair(Digits, Scale); in getRounded() 65 inline std::pair<uint32_t, int16_t> getRounded32(uint32_t Digits, int16_t Scale, in getRounded32() argument 67 return getRounded(Digits, Scale, ShouldRound); in getRounded32() 71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale, in getRounded64() argument 73 return getRounded(Digits, Scale, ShouldRound); in getRounded64() 80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits, 85 if (Width == 64 || Digits <= std::numeric_limits<DigitsT>::max()) 86 return std::make_pair(Digits, Scale); [all …]
|
D | FormatProviders.h | 134 size_t Digits = 0; 136 Digits = consumeNumHexDigits(Style, HS, 0); 137 write_hex(Stream, V, HS, Digits); 147 Style.consumeInteger(10, Digits); 149 write_integer(Stream, V, Digits, IS); 184 size_t Digits = consumeNumHexDigits(Style, HS, sizeof(void *) * 2); 185 write_hex(Stream, reinterpret_cast<std::uintptr_t>(V), HS, Digits);
|
/external/cldr/common/testData/localeIdentifiers/ |
D | localeDisplayName.txt | 22 en-u-nu-thai-ca-islamic-civil; English (Islamic Calendar [tabular, civil epoch], Thai Digits) 23 hi-u-nu-latn-t-en-h0-hybrid; Hindi (Hybrid: English, Western Digits) 24 en-u-nu-deva-t-de; English (Transform: German, Devanagari Digits) 155 en-u-kn-false; English (Sort Digits Individually) 156 en-u-kn-true; English (Sort Digits Numerically) 158 en-u-kr-digit-deva-latn; English (Script/Block Reordering: Digits, Devanagari, Latin) 160 en-u-kr-digit; English (Digits) 204 en-u-nu-adlm; English (Adlam Digits) 205 en-u-nu-ahom; English (Ahom Digits) 206 en-u-nu-arab; English (Arabic-Indic Digits) [all …]
|
/external/icu/icu4c/source/data/lang/ |
D | ar_XB.txt | 937 no{"Sort Digits Individually"} 938 yes{"Sort Digits Numerically"} 1062 digit{"Digits"} 1125 adlm{"Adlam Digits"} 1126 ahom{"Ahom Digits"} 1127 arab{"Arabic-Indic Digits"} 1128 arabext{"Extended Arabic-Indic Digits"} 1131 bali{"Balinese Digits"} 1132 beng{"Bangla Digits"} 1133 bhks{"Bhaiksuki Digits"} [all …]
|
D | en.txt | 937 no{"Sort Digits Individually"} 938 yes{"Sort Digits Numerically"} 1053 digit{"Digits"} 1104 adlm{"Adlam Digits"} 1105 ahom{"Ahom Digits"} 1106 arab{"Arabic-Indic Digits"} 1107 arabext{"Extended Arabic-Indic Digits"} 1110 bali{"Balinese Digits"} 1111 beng{"Bangla Digits"} 1112 bhks{"Bhaiksuki Digits"} [all …]
|
D | en_IN.txt | 15 beng{"Bengali Digits"} 16 orya{"Oriya Digits"}
|
/external/libcxx/test/support/ |
D | hexfloat.h | 27 const std::size_t Digits = sizeof(unsigned long long) * CHAR_BIT; in CountLeadingZeros() local 28 const unsigned long long TopBit = 1ull << (Digits - 1); in CountLeadingZeros() 29 if (n == 0) return Digits; in CountLeadingZeros() 41 const std::size_t Digits = sizeof(unsigned long long) * CHAR_BIT; in hexfloat() local 43 int exp2 = -static_cast<int>(Digits - CountLeadingZeros(m0)/4*4); in hexfloat()
|
/external/python/pybind11/include/pybind11/detail/ |
D | descr.h | 57 template <size_t Rem, size_t... Digits> struct int_to_str : int_to_str<Rem/10, Rem%10, Digits...> {… 58 template <size_t...Digits> struct int_to_str<0, Digits...> { 59 static constexpr auto digits = descr<sizeof...(Digits)>(('0' + Digits)...);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | FormatProviders.h | 134 size_t Digits = 0; 136 Digits = consumeNumHexDigits(Style, HS, 0); 137 write_hex(Stream, V, HS, Digits); 147 Style.consumeInteger(10, Digits); 149 write_integer(Stream, V, Digits, IS); 184 size_t Digits = consumeNumHexDigits(Style, HS, sizeof(void *) * 2); 185 write_hex(Stream, reinterpret_cast<std::uintptr_t>(V), HS, Digits);
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/ |
D | BytesOutputStyle.cpp | 326 uint32_t Digits, uint32_t IndentLevel, in iterateOneModule() argument 330 fmt_align(I, AlignStyle::Right, std::max(Digits, 4U))); in iterateOneModule() 336 fmt_align(I, AlignStyle::Right, std::max(Digits, 4U)), in iterateOneModule() 376 uint32_t Digits = NumDigits(Count); in iterateModules() local 378 iterateOneModule(File, P, Modules, I, Digits, IndentLevel, Callback); in iterateModules()
|
D | DumpOutputStyle.cpp | 961 uint32_t Digits = NumDigits(*MaxID); in dumpStringTableFromPdb() local 963 P.formatLine("{0} | {1}", fmt_align("ID", AlignStyle::Right, Digits), in dumpStringTableFromPdb() 982 P.formatLine("{0} | {1}", fmt_align(I, AlignStyle::Right, Digits), in dumpStringTableFromPdb()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | BlockFrequencyInfoImpl.cpp | 62 for (int Digits = 0; Digits < 16; ++Digits) in print() local 63 OS << getHexDigit(Mass >> (60 - Digits * 4) & 0xf); in print()
|
/external/llvm/lib/Analysis/ |
D | BlockFrequencyInfoImpl.cpp | 41 for (int Digits = 0; Digits < 16; ++Digits) in print() local 42 OS << getHexDigit(Mass >> (60 - Digits * 4) & 0xf); in print()
|
/external/llvm/unittests/Support/ |
D | MathExtrasTest.cpp | 309 const int Digits = std::numeric_limits<T>::digits; in SaturatingMultiplyTestHelper() local 310 for (int A = 1, B = Digits - 1; B >= 1; ++A, --B) { in SaturatingMultiplyTestHelper()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/ |
D | MathExtrasTest.cpp | 353 const int Digits = std::numeric_limits<T>::digits; in SaturatingMultiplyTestHelper() local 354 for (int A = 1, B = Digits - 1; B >= 1; ++A, --B) { in SaturatingMultiplyTestHelper()
|
/external/clang/include/clang/Driver/ |
D | Driver.h | 491 MutableArrayRef<unsigned> Digits);
|
/external/python/cpython2/Doc/library/ |
D | repr.rst | 80 Maximum number of characters in the representation for a long integer. Digits
|
/external/python/cpython3/Doc/library/ |
D | reprlib.rst | 99 Maximum number of characters in the representation for an integer. Digits
|
/external/clang/lib/Frontend/ |
D | InitPreprocessor.cpp | 137 int Digits = PickFP(Sem, 6, 15, 18, 31, 33); in DefineFloatMacros() local 164 Builder.defineMacro(DefPrefix + "DIG__", Twine(Digits)); in DefineFloatMacros()
|
/external/llvm/lib/Support/ |
D | APInt.cpp | 2184 static const char Digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; in toString() local 2209 *--BufPtr = Digits[N % Radix]; in toString() 2245 Str.push_back(Digits[Digit]); in toString() 2257 Str.push_back(Digits[Digit]); in toString()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | APInt.cpp | 2051 static const char Digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; in toString() local 2076 *--BufPtr = Digits[N % Radix]; in toString() 2111 Str.push_back(Digits[Digit]); in toString() 2119 Str.push_back(Digits[Digit]); in toString()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | APInt.cpp | 2158 static const char Digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; in toString() local 2183 *--BufPtr = Digits[N % Radix]; in toString() 2219 Str.push_back(Digits[Digit]); in toString() 2231 Str.push_back(Digits[Digit]); in toString()
|
/external/icu/icu4c/source/data/translit/ |
D | Zawgyi_my.txt | 118 #### STAGE 1.01: Digits 0 and 4 used instead of letters
|
/external/llvm/utils/TableGen/ |
D | RegisterInfoEmitter.cpp | 545 unsigned Digits = (Width + 3) / 4; in printBitVectorAsHex() local 550 OS << format("0x%0*x, ", Digits, Value); in printBitVectorAsHex()
|