HomeSort by relevance Sort by last modified time
    Searched defs:Digits (Results 1 - 25 of 27) sorted by null

1 2

  /external/libcxx/test/support/
hexfloat.h 27 const std::size_t Digits = sizeof(unsigned long long) * CHAR_BIT;
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;
43 int exp2 = -static_cast<int>(Digits - CountLeadingZeros(m0)/4*4);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
hexfloat.h 27 const std::size_t Digits = sizeof(unsigned long long) * CHAR_BIT;
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;
43 int exp2 = -static_cast<int>(Digits - CountLeadingZeros(m0)/4*4);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePrintLib/
PrintLibInternal.c 82 UINTN Digits;
89 Digits = 0;
93 Digits++;
95 return Digits;
151 UINTN Digits;
194 Digits = Count % 3;
195 if (Digits != 0) {
196 Digits = 3 - Digits;
201 Digits++;
    [all...]
PrintLib.c 119 UINTN Digits;
187 Digits = 0;
332 Digits = Count % 3;
333 if (Digits != 0) {
334 Digits = 3 - Digits;
535 Digits++;
536 if (Digits == 3) {
537 Digits = 0;
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
SecureBootConfigMisc.c 180 UINT16 Digits[3];
256 Digits[0] = *PtrBuffer;
258 Digits[1] = *PtrBuffer;
259 Digits[2] = L'\0';
260 Data = StrHexToUintn (Digits);
281 Digits[0] = *PtrBuffer;
283 Digits[1] = *PtrBuffer;
284 Digits[2] = L'\0';
285 Data = StrHexToUintn (Digits);
  /external/llvm/unittests/Support/
MathExtrasTest.cpp 307 // and A + B == std::numeric_limits<T>::digits.
309 const int Digits = std::numeric_limits<T>::digits;
310 for (int A = 1, B = Digits - 1; B >= 1; ++A, --B) {
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/
ParseUpdateProfile.c 674 UINT8 Digits[3];
749 Digits[0] = *PtrBuffer;
751 Digits[1] = *PtrBuffer;
752 Digits[2] = '\0';
753 Data = AsciiStrHexToUintn ((CONST CHAR8 *) Digits);
774 Digits[0] = *PtrBuffer;
776 Digits[1] = *PtrBuffer;
777 Digits[2] = '\0';
778 Data = AsciiStrHexToUintn ((CONST CHAR8 *) Digits);
  /device/linaro/bootloader/edk2/MdePkg/Library/BasePrintLib/
PrintLibInternal.c 191 UINTN Digits;
255 Digits = Count % 3;
256 if (Digits != 0) {
257 Digits = 3 - Digits;
262 Digits++;
263 if (Digits == 3) {
264 Digits = 0;
341 UINTN Digits;
436 Digits = 0;
    [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 137 int Digits = PickFP(Sem, 6, 15, 18, 31, 33);
164 Builder.defineMacro(DefPrefix + "DIG__", Twine(Digits));
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
RegisterInfoEmitter.cpp 214 unsigned Digits = (Width + 3) / 4;
219 OS << format("0x%0*x, ", Digits, Value);
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxePrintLibPrint2Protocol/
PrintLib.c     [all...]
  /external/llvm/include/llvm/Support/
ScaledNumber.h 11 // numbers -- in particular, pairs of integers where one represents digits and
47 /// 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,
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,
67 return getRounded(Digits, Scale, ShouldRound);
71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale,
73 return getRounded(Digits, Scale, ShouldRound);
80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits,
    [all...]
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 545 unsigned Digits = (Width + 3) / 4;
550 OS << format("0x%0*x, ", Digits, Value);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
ScaledNumber.h 11 // numbers -- in particular, pairs of integers where one represents digits and
47 /// 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,
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,
67 return getRounded(Digits, Scale, ShouldRound);
71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale,
73 return getRounded(Digits, Scale, ShouldRound);
80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
ScaledNumber.h 11 // numbers -- in particular, pairs of integers where one represents digits and
47 /// 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,
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,
67 return getRounded(Digits, Scale, ShouldRound);
71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale,
73 return getRounded(Digits, Scale, ShouldRound);
80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
ScaledNumber.h 11 // numbers -- in particular, pairs of integers where one represents digits and
47 /// 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,
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,
67 return getRounded(Digits, Scale, ShouldRound);
71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale,
73 return getRounded(Digits, Scale, ShouldRound);
80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
ScaledNumber.h 11 // numbers -- in particular, pairs of integers where one represents digits and
47 /// 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,
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,
67 return getRounded(Digits, Scale, ShouldRound);
71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale,
73 return getRounded(Digits, Scale, ShouldRound);
80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
ScaledNumber.h 11 // numbers -- in particular, pairs of integers where one represents digits and
47 /// 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,
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,
67 return getRounded(Digits, Scale, ShouldRound);
71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale,
73 return getRounded(Digits, Scale, ShouldRound);
80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
ScaledNumber.h 11 // numbers -- in particular, pairs of integers where one represents digits and
47 /// 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,
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,
67 return getRounded(Digits, Scale, ShouldRound);
71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale,
73 return getRounded(Digits, Scale, ShouldRound);
80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
ScaledNumber.h 11 // numbers -- in particular, pairs of integers where one represents digits and
47 /// 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,
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,
67 return getRounded(Digits, Scale, ShouldRound);
71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale,
73 return getRounded(Digits, Scale, ShouldRound);
80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
ScaledNumber.h 11 // numbers -- in particular, pairs of integers where one represents digits and
47 /// 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,
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,
67 return getRounded(Digits, Scale, ShouldRound);
71 inline std::pair<uint64_t, int16_t> getRounded64(uint64_t Digits, int16_t Scale,
73 return getRounded(Digits, Scale, ShouldRound);
80 inline std::pair<DigitsT, int16_t> getAdjusted(uint64_t Digits,
    [all...]
  /external/ImageMagick/MagickCore/
display.c     [all...]
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.2-4/
kotlin-stdlib-1.1.2-4.jar 
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/
kotlin-stdlib-1.1.3.jar 
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/
kotlin-stdlib-1.1.3-2.jar 

Completed in 3738 milliseconds

1 2