Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/MachO/
H A DInputFiles.cpp798 ArrayRef<typename LP::nlist> nList, in parseSymbols() argument
804 symbols.resize(nList.size()); in parseSymbols()
806 for (uint32_t i = 0; i < nList.size(); ++i) { in parseSymbols()
807 const NList &sym = nList[i]; in parseSymbols()
841 const NList &sym = nList[symIndex]; in parseSymbols()
870 if (nList[lhs].n_value == nList[rhs].n_value && in parseSymbols()
871 nList[lhs].n_type & N_EXT && nList[rhs].n_type & N_EXT) in parseSymbols()
872 return !(nList[lhs].n_desc & N_WEAK_DEF) && (nList[rhs].n_desc & N_WEAK_DEF); in parseSymbols()
873 return nList[lhs].n_value < nList[rhs].n_value; in parseSymbols()
877 const NList &sym = nList[symIndex]; in parseSymbols()
[all …]
H A DSyntheticSections.cpp1406 auto *nList = reinterpret_cast<typename LP::nlist *>(buf); in writeTo() local
1410 nList->n_strx = entry.strx; in writeTo()
1411 nList->n_type = entry.type; in writeTo()
1412 nList->n_sect = entry.sect; in writeTo()
1413 nList->n_desc = entry.desc; in writeTo()
1414 nList->n_value = entry.value; in writeTo()
1415 ++nList; in writeTo()
1420 nList->n_strx = entry.strx; in writeTo()
1437 nList->n_type = scope | N_ABS; in writeTo()
1438 nList->n_sect = NO_SECT; in writeTo()
[all …]
H A DInputFiles.h195 ArrayRef<typename LP::nlist> nList, const char *strtab,
/freebsd/contrib/sqlite3/
H A Dsqlite3.c62867 int nList; /* Number of pages in pList */ local
62886 nList = 0;
62890 nList++;
62895 nList = 1;
62897 pPager->aStat[PAGER_STAT_WRITE] += nList;
69399 int nList; /* Number of elements in aList */ member
69403 const int nList = *pnList; /* Size of input list */ local
69411 assert( nList<=HASHTABLE_NPAGE && nList>0 );
69414 for(iList=0; iList<nList; iList++){
69421 assert( p->aList && p->nList<=(1<<iSub) );
[all …]