HomeSort by relevance Sort by last modified time
    Searched refs:NumDigits (Results 1 - 4 of 4) sorted by null

  /external/deqp/framework/common/
tcuFormatUtil.hpp 38 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, typename T
    [all...]
  /external/icu/icu4c/source/i18n/
winnmfmt.cpp 87 GetLocaleInfoEx(windowsLocaleName, LOCALE_RETURN_NUMBER|LOCALE_IDIGITS, (LPWSTR) &fmt->NumDigits, sizeof(UINT));
114 GetLocaleInfoEx(windowsLocaleName, LOCALE_RETURN_NUMBER|LOCALE_ICURRDIGITS, (LPWSTR) &fmt->NumDigits, sizeof(UINT));
337 UnicodeString &Win32NumberFormat::format(int32_t numDigits, UnicodeString &appendTo, const wchar_t *fmt, ...) const
401 formatInfo.currency.NumDigits = (UINT) numDigits;
423 formatInfo.number.NumDigits = (UINT) numDigits;
  /external/clang/lib/Lex/
LiteralSupport.cpp 173 unsigned NumDigits = 0;
177 ++NumDigits;
178 } while (ThisTokBuf != ThisTokEnd && NumDigits < 3 &&
895 static bool alwaysFitsInto64Bits(unsigned Radix, unsigned NumDigits) {
898 return NumDigits <= 64;
900 return NumDigits <= 64 / 3; // Digits are groups of 3 bits.
902 return NumDigits <= 19; // floor(log10(2^64))
904 return NumDigits <= 64 / 4; // Digits are groups of 4 bits.
920 const unsigned NumDigits = SuffixBegin - DigitsBegin;
921 if (alwaysFitsInto64Bits(radix, NumDigits)) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winnls.h 676 UINT NumDigits;
684 UINT NumDigits;
696 UINT NumDigits;
707 UINT NumDigits;
    [all...]

Completed in 211 milliseconds