Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp4965 for (uint64_t VersymRow = 0; VersymRow < Entries; VersymRow += 4) { in printVersionSymbolSection() local
4966 OS << " " << format_hex_no_prefix(VersymRow, 3) << ":"; in printVersionSymbolSection()
4967 for (uint64_t I = 0; (I < 4) && (I + VersymRow) < Entries; ++I) { in printVersionSymbolSection()
4968 unsigned Ndx = VerTable[VersymRow + I].vs_index; in printVersionSymbolSection()
4971 OS << left_justify("(" + std::string(Versions[VersymRow + I]) + ")", 13); in printVersionSymbolSection()