Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DObjDumper.cpp197 const uint8_t *TmpSecPtr = SecPtr; in printSectionsAsHex() local
204 for (i = 0; TmpSecPtr < SecEnd && i < 4; ++i) { in printSectionsAsHex()
205 for (k = 0; TmpSecPtr < SecEnd && k < 4; k++, TmpSecPtr++) { in printSectionsAsHex()
206 uint8_t Val = *TmpSecPtr; in printSectionsAsHex()
222 TmpSecPtr = SecPtr; in printSectionsAsHex()
223 for (i = 0; TmpSecPtr + i < SecEnd && i < 16; ++i) in printSectionsAsHex()
224 W.getOStream() << (isPrint(TmpSecPtr[i]) in printSectionsAsHex()
225 ? static_cast<char>(TmpSecPtr[i]) in printSectionsAsHex()