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.cpp800 ArrayRef<typename LP::nlist> nList, in parseSymbols() argument
806 symbols.resize(nList.size()); in parseSymbols()
808 for (uint32_t i = 0; i < nList.size(); ++i) { in parseSymbols()
809 const NList &sym = nList[i]; in parseSymbols()
843 const NList &sym = nList[symIndex]; in parseSymbols()
872 if (nList[lhs].n_value == nList[rhs].n_value && in parseSymbols()
873 nList[lhs].n_type & N_EXT && nList[rhs].n_type & N_EXT) in parseSymbols()
874 return !(nList[lhs].n_desc & N_WEAK_DEF) && (nList[rhs].n_desc & N_WEAK_DEF); in parseSymbols()
875 return nList[lhs].n_value < nList[rhs].n_value; in parseSymbols()
879 const NList &sym = nList[symIndex]; in parseSymbols()
[all …]
H A DSyntheticSections.cpp1389 auto *nList = reinterpret_cast<typename LP::nlist *>(buf); in writeTo() local
1393 nList->n_strx = entry.strx; in writeTo()
1394 nList->n_type = entry.type; in writeTo()
1395 nList->n_sect = entry.sect; in writeTo()
1396 nList->n_desc = entry.desc; in writeTo()
1397 nList->n_value = entry.value; in writeTo()
1398 ++nList; in writeTo()
1403 nList->n_strx = entry.strx; in writeTo()
1420 nList->n_type = scope | N_ABS; in writeTo()
1421 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.c60283 int nList; /* Number of pages in pList */
60302 nList = 0;
60306 nList++;
60311 nList = 1;
60313 pPager->aStat[PAGER_STAT_WRITE] += nList;
66778 int nList; /* Number of elements in aList */
66782 const int nList = *pnList; /* Size of input list */
66790 assert( nList<=HASHTABLE_NPAGE && nList>0 );
66793 for(iList=0; iList<nList; iList++){
66800 assert( p->aList && p->nList<=(1<<iSub) );
[all …]