Lines Matching defs:FB
402 raw_ostream &raw_ostream::operator<<(const FormattedBytes &FB) {
403 if (FB.Bytes.empty())
407 auto Bytes = FB.Bytes;
409 HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower;
411 if (FB.FirstByteOffset) {
415 size_t Lines = Size / FB.NumPerLine;
416 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine;
425 alignTo(FB.NumPerLine, FB.ByteGroupSize) / FB.ByteGroupSize;
426 unsigned BlockCharWidth = FB.NumPerLine * 2 + NumByteGroups - 1;
429 indent(FB.IndentLevel);
431 if (FB.FirstByteOffset) {
432 uint64_t Offset = *FB.FirstByteOffset;
437 auto Line = Bytes.take_front(FB.NumPerLine);
442 if (I && (I % FB.ByteGroupSize) == 0) {
449 if (FB.ASCII) {