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