Lines Matching refs:FN
410 raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) { in operator <<() argument
411 if (FN.Hex) { in operator <<()
412 unsigned Nibbles = (64 - countLeadingZeros(FN.HexValue)+3)/4; in operator <<()
413 unsigned PrefixChars = FN.HexPrefix ? 2 : 0; in operator <<()
414 unsigned Width = std::max(FN.Width, Nibbles + PrefixChars); in operator <<()
417 if (!FN.HexPrefix) in operator <<()
421 const char A = FN.Upper ? 'A' : 'a'; in operator <<()
422 unsigned long long N = FN.HexValue; in operator <<()
432 if (FN.DecValue == 0) { in operator <<()
433 this->indent(FN.Width-1); in operator <<()
439 bool Neg = (FN.DecValue < 0); in operator <<()
440 uint64_t N = Neg ? -static_cast<uint64_t>(FN.DecValue) : FN.DecValue; in operator <<()
446 int Pad = FN.Width - Len; in operator <<()