Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lld/MachO/
H A DSyntheticSections.cpp1134 nList->n_strx = entry.strx; in writeTo()
1135 nList->n_type = entry.type; in writeTo()
1136 nList->n_sect = entry.sect; in writeTo()
1137 nList->n_desc = entry.desc; in writeTo()
1139 ++nList; in writeTo()
1144 nList->n_strx = entry.strx; in writeTo()
1162 nList->n_sect = NO_SECT; in writeTo()
1172 nList->n_desc |= in writeTo()
1186 nList->n_type = N_EXT; in writeTo()
1189 nList->n_desc = n_desc; in writeTo()
[all …]
H A DInputFiles.cpp899 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()
1150 symbols.resize(nList.size()); in parseLazy()
[all …]
H A DInputFiles.h186 ArrayRef<typename LP::nlist> nList, const char *strtab,