Lines Matching defs:nAll
179664 int nAll; /* Size of a[] in bytes */
183838 ** It is merged into the main doclist stored in p->doclist.aAll/nAll.
183859 p->doclist.nAll = 0;
183864 p->doclist.nAll = nList;
183880 nLeft = p->doclist.nAll;
183886 nRight = p->doclist.nAll;
183897 p->doclist.nAll = nRight;
183905 ** Load the doclist for phrase p into p->doclist.aAll/nAll. The loaded doclist
184210 ** Advance the iterator pDL to the next entry in pDL->aAll/nAll. Set *pbEof
184228 if( pIter==0 || pIter>=(pEnd = pDL->aAll + pDL->nAll) ){
184252 assert( pIter>=&pDL->aAll[pDL->nAll] || *pIter );
184441 }else if( pCsr->bDesc!=pTab->bDescIdx && pDL->nAll ){
184442 sqlite3Fts3DoclistPrev(pTab->bDescIdx, pDL->aAll, pDL->nAll,
184461 ** Fts3Phrase.doclist.aAll/nAll variables contain the entire doclist for
184464 ** may be loaded incrementally, meaning doclist.aAll/nAll is not available.
184746 pTC->pPhrase->doclist.aAll, pTC->pPhrase->doclist.nAll
185659 bEof = !pPh->doclist.nAll ||
185660 (pIter >= (pPh->doclist.aAll + pPh->doclist.nAll));
185663 bDescDoclist, pPh->doclist.aAll, pPh->doclist.nAll,
185668 bEof = !pPh->doclist.nAll || (pIter && pIter<=pPh->doclist.aAll);
185672 bDescDoclist, pPh->doclist.aAll, pPh->doclist.nAll,