Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DFormat.h222 uint8_t ByteGroupSize; // How many hex bytes are grouped without spaces
231 ByteGroupSize(BGS), Upper(U), ASCII(A) {
233 if (ByteGroupSize > NumPerLine)
234 ByteGroupSize = NumPerLine;
240 uint32_t NumPerLine = 16, uint8_t ByteGroupSize = 4,
243 ByteGroupSize, Upper, false);
249 uint32_t NumPerLine = 16, uint8_t ByteGroupSize = 4,
252 ByteGroupSize, Upper, true);
/llvm-project-15.0.7/llvm/unittests/Support/
H A Draw_ostream_test.cpp210 uint8_t ByteGroupSize = 4) { in formatted_bytes_str() argument
213 Str << format_bytes(Bytes, Offset, NumPerLine, ByteGroupSize); in formatted_bytes_str()
221 uint8_t ByteGroupSize = 4) { 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.cpp425 alignTo(FB.NumPerLine, FB.ByteGroupSize) / FB.ByteGroupSize; in operator <<()
442 if (I && (I % FB.ByteGroupSize) == 0) { in operator <<()