Searched refs:bytesPerLine (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/libs/utils/
H A DTextOutput.cpp133 HexDump::HexDump(const void *buf, size_t size, size_t bytesPerLine) argument
136 , mBytesPerLine(bytesPerLine)
141 if (bytesPerLine >= 16) mAlignment = 4;
142 else if (bytesPerLine >= 8) mAlignment = 2;
148 printHexData(0, val.buffer(), val.size(), val.bytesPerLine(),
H A DDebug.cpp172 size_t bytesPerLine, int32_t singleLineBytesCutoff,
177 if (bytesPerLine >= 16) alignment = 4;
178 else if (bytesPerLine >= 8) alignment = 2;
210 if (bytesPerLine > maxBytesPerLine) bytesPerLine = maxBytesPerLine;
223 for (offset = 0; ; offset += bytesPerLine, pos += bytesPerLine) {
235 for (word = 0; word < bytesPerLine; ) {
245 for (index = 0; index < alignment || (alignment == 0 && index < bytesPerLine); index++) {
285 for (index = 0; index < bytesPerLine; inde
171 printHexData(int32_t indent, const void *buf, size_t length, size_t bytesPerLine, int32_t singleLineBytesCutoff, size_t alignment, bool cStyle, debugPrintFunc func, void* cookie) argument
[all...]
/frameworks/native/include/utils/
H A DTextOutput.h97 HexDump(const void *buf, size_t size, size_t bytesPerLine=16);
100 inline HexDump& setBytesPerLine(size_t bytesPerLine);
107 inline size_t bytesPerLine() const;
167 inline HexDump& HexDump::setBytesPerLine(size_t bytesPerLine) { argument
168 mBytesPerLine = bytesPerLine; return *this;
182 inline size_t HexDump::bytesPerLine() const { return mBytesPerLine; } function in class:android::HexDump
H A DDebug.h59 size_t bytesPerLine=16, int32_t singleLineBytesCutoff=16,

Completed in 410 milliseconds