Lines Matching defs:nList
800 ArrayRef<typename LP::nlist> nList,
806 symbols.resize(nList.size());
808 for (uint32_t i = 0; i < nList.size(); ++i) {
809 const NList &sym = nList[i];
843 const NList &sym = nList[symIndex];
872 if (nList[lhs].n_value == nList[rhs].n_value &&
873 nList[lhs].n_type & N_EXT && nList[rhs].n_type & N_EXT)
874 return !(nList[lhs].n_desc & N_WEAK_DEF) && (nList[rhs].n_desc & N_WEAK_DEF);
875 return nList[lhs].n_value < nList[rhs].n_value;
879 const NList &sym = nList[symIndex];
888 ? nList[symbolIndices[j + 1]].n_value - sym.n_value
936 symbols[i] = parseNonSectionSymbol(nList[i], strtab);
1018 ArrayRef<NList> nList(reinterpret_cast<const NList *>(buf + c->symoff),
1022 parseSymbols<LP>(sectionHeaders, nList, strtab, subsectionsViaSymbols);
1065 ArrayRef<NList> nList(reinterpret_cast<const NList *>(buf + c->symoff),
1068 symbols.resize(nList.size());
1069 for (const auto &[i, sym] : llvm::enumerate(nList)) {