Home | History | Annotate | Download | only in Support

Lines Matching refs:FN

412 raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) {
413 if (FN.Hex) {
414 unsigned Nibbles = (64 - countLeadingZeros(FN.HexValue)+3)/4;
415 unsigned PrefixChars = FN.HexPrefix ? 2 : 0;
416 unsigned Width = std::max(FN.Width, Nibbles + PrefixChars);
419 if (!FN.HexPrefix)
423 unsigned long long N = FN.HexValue;
426 *--CurPtr = hexdigit(x, !FN.Upper);
433 if (FN.DecValue == 0) {
434 this->indent(FN.Width-1);
440 bool Neg = (FN.DecValue < 0);
441 uint64_t N = Neg ? -static_cast<uint64_t>(FN.DecValue) : FN.DecValue;
447 int Pad = FN.Width - Len;