Searched refs:NDigits (Results 1 – 1 of 1) sorted by relevance
4242 unsigned NDigits = buffer.size(); in toStringImpl() local4254 NDigits + (unsigned) exp > FormatPrecision); in toStringImpl()4257 int MSD = exp + (int) (NDigits - 1); in toStringImpl()4271 exp += (NDigits - 1); in toStringImpl()4273 Str.push_back(buffer[NDigits-1]); in toStringImpl()4275 if (NDigits == 1 && TruncateZero) in toStringImpl()4278 for (unsigned I = 1; I != NDigits; ++I) in toStringImpl()4279 Str.push_back(buffer[NDigits-1-I]); in toStringImpl()4281 if (!TruncateZero && FormatPrecision > NDigits - 1) in toStringImpl()4282 Str.append(FormatPrecision - NDigits + 1, '0'); in toStringImpl()[all …]