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

  /external/deqp/framework/common/
tcuFormatUtil.hpp 38 template <int 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 <int NumDigits>
67 std::ostream& operator<< (std::ostream& stream, tcu::Format::Hex<NumDigits> hex)
247 template <int NumDigits, typename T
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
winnmfmt.cpp 83 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));
238 UnicodeString &Win32NumberFormat::format(int32_t numDigits, UnicodeString &appendTo, wchar_t *fmt, ...) const
295 formatInfo.currency.NumDigits = (UINT) numDigits;
317 formatInfo.number.NumDigits = (UINT) numDigits;
  /external/icu/icu4c/source/i18n/
winnmfmt.cpp 83 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));
245 UnicodeString &Win32NumberFormat::format(int32_t numDigits, UnicodeString &appendTo, wchar_t *fmt, ...) const
302 formatInfo.currency.NumDigits = (UINT) numDigits;
324 formatInfo.number.NumDigits = (UINT) numDigits;
  /external/clang/lib/Lex/
LiteralSupport.cpp 171 unsigned NumDigits = 0;
175 ++NumDigits;
176 } while (ThisTokBuf != ThisTokEnd && NumDigits < 3 &&
891 static bool alwaysFitsInto64Bits(unsigned Radix, unsigned NumDigits) {
894 return NumDigits <= 64;
896 return NumDigits <= 64 / 3; // Digits are groups of 3 bits.
898 return NumDigits <= 19; // floor(log10(2^64))
900 return NumDigits <= 64 / 4; // Digits are groups of 4 bits.
916 const unsigned NumDigits = SuffixBegin - DigitsBegin;
917 if (alwaysFitsInto64Bits(radix, NumDigits)) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winnls.h 514 UINT NumDigits;
523 UINT NumDigits;
535 UINT NumDigits;
546 UINT NumDigits;
    [all...]

Completed in 108 milliseconds