Home
last modified time | relevance | path

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

/freebsd-14-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDAPFloat.h509 unsigned FormatMaxPadding = 3, bool TruncateZero = true) const;
789 unsigned FormatMaxPadding, bool TruncateZero = true) const;
1385 unsigned FormatMaxPadding = 3, bool TruncateZero = true) const {
1387 toString(Str, FormatPrecision, FormatMaxPadding, TruncateZero));
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Support/
HDAPFloat.cpp4144 unsigned FormatMaxPadding, bool TruncateZero) { in toStringImpl() argument
4275 if (NDigits == 1 && TruncateZero) in toStringImpl()
4281 if (!TruncateZero && FormatPrecision > NDigits - 1) in toStringImpl()
4284 Str.push_back(TruncateZero ? 'E' : 'e'); in toStringImpl()
4295 if (!TruncateZero && expbuf.size() < 2) in toStringImpl()
4337 unsigned FormatMaxPadding, bool TruncateZero) const { in toString()
4352 if (TruncateZero) in toString()
4375 FormatMaxPadding, TruncateZero); in toString()
5223 bool TruncateZero) const { in toString()
5226 .toString(Str, FormatPrecision, FormatMaxPadding, TruncateZero); in toString()