Lines Matching defs:aAll
179663 char *aAll; /* Array containing doclist (or NULL) */
183838 ** It is merged into the main doclist stored in p->doclist.aAll/nAll.
183857 sqlite3_free(p->doclist.aAll);
183858 p->doclist.aAll = 0;
183863 p->doclist.aAll = pList;
183867 else if( p->doclist.aAll==0 ){
183879 pLeft = p->doclist.aAll;
183885 pRight = p->doclist.aAll;
183896 p->doclist.aAll = pRight;
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
184218 char *pIter; /* Used to iterate through aAll */
184219 char *pEnd; /* 1 byte past end of aAll */
184223 assert( pDL->aAll!=0 || pIter==0 );
184225 pIter = pDL->aAll;
184228 if( pIter==0 || pIter>=(pEnd = pDL->aAll + pDL->nAll) ){
184252 assert( pIter>=&pDL->aAll[pDL->nAll] || *pIter );
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
184972 if( pRight->pPhrase->doclist.aAll ){
184979 if( pLeft->pPhrase && pLeft->pPhrase->doclist.aAll ){
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,
185720 sqlite3_free(pPhrase->doclist.aAll);