Searched defs:Digits (Results 1 - 8 of 8) sorted by relevance

/external/libcxx/test/support/
H A Dhexfloat.h27 const std::size_t Digits = sizeof(unsigned long long) * CHAR_BIT; local
28 const unsigned long long TopBit = 1ull << (Digits - 1);
29 if (n == 0) return Digits;
41 const std::size_t Digits = sizeof(unsigned long long) * CHAR_BIT; local
43 int exp2 = -static_cast<int>(Digits - CountLeadingZeros(m0)/4*4);
/external/llvm/unittests/Support/
H A DMathExtrasTest.cpp309 const int Digits = std::numeric_limits<T>::digits; local
310 for (int A = 1, B = Digits - 1; B >= 1; ++A, --B) {
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DRegisterInfoEmitter.cpp214 unsigned Digits = (Width + 3) / 4; local
219 OS << format("0x%0*x, ", Digits, Value);
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp137 int Digits = PickFP(Sem, 6, 15, 18, 31, 33); local
164 Builder.defineMacro(DefPrefix + "DIG__", Twine(Digits));
/external/llvm/include/llvm/Support/
H A DScaledNumber.h47 /// 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, argument
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, argument
67 return getRounded(Digits, Scale, ShouldRound);
71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale, argument
73 return getRounded(Digits, Scale, ShouldRound);
80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits, argument
85 if (Width == 64 || Digits <
95 getAdjusted32(uint64_t Digits, int16_t Scale = 0) argument
101 getAdjusted64(uint64_t Digits, int16_t Scale = 0) argument
189 getLgImpl(DigitsT Digits, int16_t Scale) argument
214 getLg(DigitsT Digits, int16_t Scale) argument
223 getLgFloor(DigitsT Digits, int16_t Scale) argument
233 getLgCeiling(DigitsT Digits, int16_t Scale) argument
507 DigitsType Digits; member in class:llvm::ScaledNumber
513 ScaledNumber(DigitsType Digits, int16_t Scale) argument
688 countLeadingZerosWidth(DigitsType Digits) argument
[all...]
/external/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp545 unsigned Digits = (Width + 3) / 4; local
550 OS << format("0x%0*x, ", Digits, Value);
/external/clang/lib/Driver/
H A DDriver.cpp2621 /// Parse digits from a string \p Str and fulfill \p Digits with
2623 /// digits to look for is equal to Digits.size().
2628 MutableArrayRef<unsigned> Digits) {
2634 while (CurDigit < Digits.size()) {
2636 Digits[CurDigit] = Digit;
2627 GetReleaseVersion(const char *Str, MutableArrayRef<unsigned> Digits) argument
/external/ImageMagick/MagickCore/
H A Ddisplay.c6741 Digits[] = "01234567890";
6755 delta[strlen(delta)]=Digits[key_symbol-XK_0];
6720 Digits[] = "01234567890"; local

Completed in 559 milliseconds