Lines Matching refs:nInst
243891 int nInst; /* Total number of phrase instances */ member
243907 while( rc==SQLITE_OK && pIter->iInst<pIter->nInst ){
243945 rc = pApi->xInstCount(pFts, &pIter->nInst);
244226 int nInst; local
244231 rc = pApi->xInstCount(pFts, &nInst);
244232 for(i=0; i<nInst && rc==SQLITE_OK; i++){
244278 int nInst = 0; /* Number of instance matches this row */ local
244311 rc = pApi->xInstCount(pFts, &nInst);
244335 for(ii=0; rc==SQLITE_OK && ii<nInst; ii++){
244554 int nInst = 0; /* Value returned by xInstCount() */ local
244564 rc = pApi->xInstCount(pFts, &nInst);
244566 for(i=0; rc==SQLITE_OK && i<nInst; i++){
262028 int nInst = 0; /* Number instances seen so far */ local
262054 nInst++;
262055 if( nInst>=pCsr->nInstAlloc ){
262064 nInst--;
262070 aInst = &pCsr->aInst[3 * (nInst-1)];
262083 pCsr->nInstCount = nInst;