Searched refs:NumDigits (Results 1 – 2 of 2) sorted by relevance
311 UINT32 NumDigits; in AcpiExDigitsNeeded() local326 NumDigits = 0; in AcpiExDigitsNeeded()333 NumDigits++; in AcpiExDigitsNeeded()336 return_UINT32 (NumDigits); in AcpiExDigitsNeeded()
173 unsigned NumDigits = 0; in ProcessCharEscape() local177 ++NumDigits; in ProcessCharEscape()178 } while (ThisTokBuf != ThisTokEnd && NumDigits < 3 && in ProcessCharEscape()886 static bool alwaysFitsInto64Bits(unsigned Radix, unsigned NumDigits) { in alwaysFitsInto64Bits() argument889 return NumDigits <= 64; in alwaysFitsInto64Bits()891 return NumDigits <= 64 / 3; // Digits are groups of 3 bits. in alwaysFitsInto64Bits()893 return NumDigits <= 19; // floor(log10(2^64)) in alwaysFitsInto64Bits()895 return NumDigits <= 64 / 4; // Digits are groups of 4 bits. in alwaysFitsInto64Bits()911 const unsigned NumDigits = SuffixBegin - DigitsBegin; in GetIntegerValue() local912 if (alwaysFitsInto64Bits(radix, NumDigits)) { in GetIntegerValue()