Home
last modified time | relevance | path

Searched refs:NumPerLine (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DFormat.h221 uint32_t NumPerLine; // Number of bytes to show per line.
230 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
233 if (ByteGroupSize > NumPerLine)
234 ByteGroupSize = NumPerLine;
240 uint32_t NumPerLine = 16, uint8_t ByteGroupSize = 4,
242 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine,
249 uint32_t NumPerLine = 16, uint8_t ByteGroupSize = 4,
251 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine,
/llvm-project-15.0.7/llvm/unittests/Support/
H A Draw_ostream_test.cpp209 uint32_t NumPerLine = 16, in formatted_bytes_str() argument
213 Str << format_bytes(Bytes, Offset, NumPerLine, ByteGroupSize); in formatted_bytes_str()
220 uint32_t NumPerLine = 16, in format_bytes_with_ascii_str() argument
224 Str << format_bytes_with_ascii(Bytes, Offset, NumPerLine, ByteGroupSize); in format_bytes_with_ascii_str()
/llvm-project-15.0.7/llvm/lib/Support/
H A Draw_ostream.cpp415 size_t Lines = Size / FB.NumPerLine; in operator <<()
416 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; in operator <<()
425 alignTo(FB.NumPerLine, FB.ByteGroupSize) / FB.ByteGroupSize; in operator <<()
426 unsigned BlockCharWidth = FB.NumPerLine * 2 + NumByteGroups - 1; in operator <<()
437 auto Line = Bytes.take_front(FB.NumPerLine); in operator <<()