Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DELFDumper.cpp4661 for (uint64_t VersymRow = 0; VersymRow < Entries; VersymRow += 4) { in printVersionSymbolSection() local
4662 OS << " " << format_hex_no_prefix(VersymRow, 3) << ":"; in printVersionSymbolSection()
4663 for (uint64_t I = 0; (I < 4) && (I + VersymRow) < Entries; ++I) { in printVersionSymbolSection()
4664 unsigned Ndx = VerTable[VersymRow + I].vs_index; in printVersionSymbolSection()
4667 OS << left_justify("(" + std::string(Versions[VersymRow + I]) + ")", 13); in printVersionSymbolSection()