Home
last modified time | relevance | path

Searched refs:NDigits (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp4416 unsigned NDigits = buffer.size(); in toStringImpl() local
4428 NDigits + (unsigned) exp > FormatPrecision); in toStringImpl()
4431 int MSD = exp + (int) (NDigits - 1); in toStringImpl()
4445 exp += (NDigits - 1); in toStringImpl()
4447 Str.push_back(buffer[NDigits-1]); in toStringImpl()
4449 if (NDigits == 1 && TruncateZero) in toStringImpl()
4452 for (unsigned I = 1; I != NDigits; ++I) in toStringImpl()
4453 Str.push_back(buffer[NDigits-1-I]); in toStringImpl()
4455 if (!TruncateZero && FormatPrecision > NDigits - 1) in toStringImpl()
4456 Str.append(FormatPrecision - NDigits + 1, '0'); in toStringImpl()
[all …]