Lines Matching refs:NDigits
4242 unsigned NDigits = buffer.size(); in toStringImpl() local
4254 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()
4304 for (unsigned I = 0; I != NDigits; ++I) in toStringImpl()
4305 Str.push_back(buffer[NDigits-1-I]); in toStringImpl()
4314 int NWholeDigits = exp + (int) NDigits; in toStringImpl()
4319 Str.push_back(buffer[NDigits-I-1]); in toStringImpl()
4330 for (; I != NDigits; ++I) in toStringImpl()
4331 Str.push_back(buffer[NDigits-I-1]); in toStringImpl()