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

  /external/clang/lib/Lex/
LiteralSupport.cpp 173 unsigned NumDigits = 0;
177 ++NumDigits;
178 } while (ThisTokBuf != ThisTokEnd && NumDigits < 3 &&
886 static bool alwaysFitsInto64Bits(unsigned Radix, unsigned NumDigits) {
889 return NumDigits <= 64;
891 return NumDigits <= 64 / 3; // Digits are groups of 3 bits.
893 return NumDigits <= 19; // floor(log10(2^64))
895 return NumDigits <= 64 / 4; // Digits are groups of 4 bits.
911 const unsigned NumDigits = SuffixBegin - DigitsBegin;
912 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 81 milliseconds