Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DELFDumper.cpp4604 for (uint64_t VersymRow = 0; VersymRow < Entries; VersymRow += 4) { in printVersionSymbolSection() local
4605 OS << " " << format_hex_no_prefix(VersymRow, 3) << ":"; in printVersionSymbolSection()
4606 for (uint64_t I = 0; (I < 4) && (I + VersymRow) < Entries; ++I) { in printVersionSymbolSection()
4607 unsigned Ndx = VerTable[VersymRow + I].vs_index; in printVersionSymbolSection()
4610 OS << left_justify("(" + std::string(Versions[VersymRow + I]) + ")", 13); in printVersionSymbolSection()