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

1 2 3 4

  /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/r16/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...]
  /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...]
  /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...]
FormatProviders.h 107 /// integer_options :: [style][digits]
109 /// digits :: <non-negative integer> 0-99
112 /// | style | Meaning | Example | Digits Meaning |
116 /// | x- | Hex no prefix, lower | 42 | 2a | Minimum # digits |
117 /// | X- | Hex no prefix, upper | 42 | 2A | Minimum # digits |
118 /// | x+ / x | Hex + prefix, lower | 42 | 0x2a | Minimum # digits |
119 /// | X+ / X | Hex + prefix, upper | 42 | 0x2A | Minimum # digits |
134 size_t Digits = 0;
136 Digits = consumeNumHexDigits(Style, HS, 0);
137 write_hex(Stream, V, HS, Digits);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/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...]
FormatProviders.h 107 /// integer_options :: [style][digits]
109 /// digits :: <non-negative integer> 0-99
112 /// | style | Meaning | Example | Digits Meaning |
116 /// | x- | Hex no prefix, lower | 42 | 2a | Minimum # digits |
117 /// | X- | Hex no prefix, upper | 42 | 2A | Minimum # digits |
118 /// | x+ / x | Hex + prefix, lower | 42 | 0x2a | Minimum # digits |
119 /// | X+ / X | Hex + prefix, upper | 42 | 0x2A | Minimum # digits |
134 size_t Digits = 0;
136 Digits = consumeNumHexDigits(Style, HS, 0);
137 write_hex(Stream, V, HS, Digits);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/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...]
FormatProviders.h 107 /// integer_options :: [style][digits]
109 /// digits :: <non-negative integer> 0-99
112 /// | style | Meaning | Example | Digits Meaning |
116 /// | x- | Hex no prefix, lower | 42 | 2a | Minimum # digits |
117 /// | X- | Hex no prefix, upper | 42 | 2A | Minimum # digits |
118 /// | x+ / x | Hex + prefix, lower | 42 | 0x2a | Minimum # digits |
119 /// | X+ / X | Hex + prefix, upper | 42 | 0x2A | Minimum # digits |
134 size_t Digits = 0;
136 Digits = consumeNumHexDigits(Style, HS, 0);
137 write_hex(Stream, V, HS, 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...]
  /prebuilts/clang/host/linux-x86/clang-4393122/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-4479392/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-4579689/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-4630689/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-4639204/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-4691093/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-4579689/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-4630689/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-4639204/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-4691093/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...]
  /frameworks/data-binding/compilerCommon/
BindingExpression.g4 213 | NonZeroDigit (Digits? | Underscores Digits)
217 Digits
315 : Digits '.' Digits? ExponentPart? FloatTypeSuffix?
316 | '.' Digits ExponentPart? FloatTypeSuffix?
317 | Digits ExponentPart FloatTypeSuffix?
318 | Digits FloatTypeSuffix
333 : Sign? Digits
459 : [a-zA-Z0-9$_] // these are the "java letters or digits" below 0xF
    [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);
  /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/swiftshader/third_party/llvm-subzero/include/llvm/Support/
FormatProviders.h 107 /// integer_options :: [style][digits]
109 /// digits :: <non-negative integer> 0-99
112 /// | style | Meaning | Example | Digits Meaning |
116 /// | x- | Hex no prefix, lower | 42 | 2a | Minimum # digits |
117 /// | X- | Hex no prefix, upper | 42 | 2A | Minimum # digits |
118 /// | x+ / x | Hex + prefix, lower | 42 | 0x2a | Minimum # digits |
119 /// | X+ / X | Hex + prefix, upper | 42 | 0x2A | Minimum # digits |
134 size_t Digits = 0;
136 Digits = consumeNumHexDigits(Style, HS, 0);
137 write_hex(Stream, V, HS, Digits);
    [all...]

Completed in 486 milliseconds

1 2 3 4