Lines Matching refs:nList
899 ArrayRef<typename LP::nlist> nList, in parseSymbols() argument
905 symbols.resize(nList.size()); in parseSymbols()
907 for (uint32_t i = 0; i < nList.size(); ++i) { in parseSymbols()
908 const NList &sym = nList[i]; in parseSymbols()
942 const NList &sym = nList[symIndex]; in parseSymbols()
964 return nList[lhs].n_value < nList[rhs].n_value; in parseSymbols()
968 const NList &sym = nList[symIndex]; in parseSymbols()
977 ? nList[symbolIndices[j + 1]].n_value - sym.n_value in parseSymbols()
1024 const NList &sym = nList[i]; in parseSymbols()
1101 ArrayRef<NList> nList(reinterpret_cast<const NList *>(buf + c->symoff), in parse()
1105 parseSymbols<LP>(sectionHeaders, nList, strtab, subsectionsViaSymbols); in parse()
1147 ArrayRef<NList> nList(reinterpret_cast<const NList *>(buf + c->symoff), in parseLazy()
1150 symbols.resize(nList.size()); in parseLazy()
1151 for (auto it : llvm::enumerate(nList)) { in parseLazy()