Lines Matching refs:FB
404 raw_ostream &raw_ostream::operator<<(const FormattedBytes &FB) { in operator <<() argument
405 if (FB.Bytes.empty()) in operator <<()
409 auto Bytes = FB.Bytes; in operator <<()
411 HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower; in operator <<()
413 if (FB.FirstByteOffset) { in operator <<()
417 size_t Lines = Size / FB.NumPerLine; in operator <<()
418 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; in operator <<()
427 alignTo(FB.NumPerLine, FB.ByteGroupSize) / FB.ByteGroupSize; in operator <<()
428 unsigned BlockCharWidth = FB.NumPerLine * 2 + NumByteGroups - 1; in operator <<()
431 indent(FB.IndentLevel); in operator <<()
433 if (FB.FirstByteOffset) { in operator <<()
434 uint64_t Offset = *FB.FirstByteOffset; in operator <<()
439 auto Line = Bytes.take_front(FB.NumPerLine); in operator <<()
444 if (I && (I % FB.ByteGroupSize) == 0) { in operator <<()
451 if (FB.ASCII) { in operator <<()