Lines Matching refs:FB
403 raw_ostream &raw_ostream::operator<<(const FormattedBytes &FB) { in operator <<() argument
404 if (FB.Bytes.empty()) in operator <<()
408 auto Bytes = FB.Bytes; in operator <<()
410 HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower; in operator <<()
412 if (FB.FirstByteOffset.hasValue()) { in operator <<()
416 size_t Lines = Size / FB.NumPerLine; in operator <<()
417 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; in operator <<()
426 alignTo(FB.NumPerLine, FB.ByteGroupSize) / FB.ByteGroupSize; in operator <<()
427 unsigned BlockCharWidth = FB.NumPerLine * 2 + NumByteGroups - 1; in operator <<()
430 indent(FB.IndentLevel); in operator <<()
432 if (FB.FirstByteOffset.hasValue()) { in operator <<()
433 uint64_t Offset = FB.FirstByteOffset.getValue(); in operator <<()
438 auto Line = Bytes.take_front(FB.NumPerLine); in operator <<()
443 if (I && (I % FB.ByteGroupSize) == 0) { in operator <<()
450 if (FB.ASCII) { in operator <<()