Searched refs:NumDigits (Results 1 - 3 of 3) sorted by relevance

/external/deqp/framework/common/
H A DtcuFormatUtil.hpp38 template <size_t NumDigits>
51 DE_STATIC_ASSERT(0 < NumDigits && NumDigits <= 16);
53 const char longFmt[] = {'0', 'x', '%', '0', '0' + NumDigits/10, '0' + NumDigits%10, 'l', 'l', 'x', 0};
54 const char shortFmt[] = {'0', 'x', '%', '0', '0' + NumDigits, 'l', 'l', 'x', 0};
57 deSprintf(buf, sizeof(buf), NumDigits > 9 ? longFmt : shortFmt, value);
66 template <size_t NumDigits>
67 std::ostream& operator<< (std::ostream& stream, tcu::Format::Hex<NumDigits> hex)
248 template <size_t NumDigits, typenam
[all...]
/external/icu/icu4c/source/i18n/
H A Dwinnmfmt.cpp83 GetLocaleInfoW(lcid, LOCALE_RETURN_NUMBER|LOCALE_IDIGITS, (LPWSTR) &fmt->NumDigits, sizeof(UINT));
110 GetLocaleInfoW(lcid, LOCALE_RETURN_NUMBER|LOCALE_ICURRDIGITS, (LPWSTR) &fmt->NumDigits, sizeof(UINT));
302 formatInfo.currency.NumDigits = (UINT) numDigits;
324 formatInfo.number.NumDigits = (UINT) numDigits;
/external/clang/lib/Lex/
H A DLiteralSupport.cpp173 unsigned NumDigits = 0; local
177 ++NumDigits;
178 } while (ThisTokBuf != ThisTokEnd && NumDigits < 3 &&
882 static bool alwaysFitsInto64Bits(unsigned Radix, unsigned NumDigits) {
885 return NumDigits <= 64;
887 return NumDigits <= 64 / 3; // Digits are groups of 3 bits.
889 return NumDigits <= 19; // floor(log10(2^64))
891 return NumDigits <= 64 / 4; // Digits are groups of 4 bits.
907 const unsigned NumDigits = SuffixBegin - DigitsBegin;
908 if (alwaysFitsInto64Bits(radix, NumDigits)) {
[all...]

Completed in 3864 milliseconds