Lines Matching refs:nIndex
143143 int nIndex; /* Number of indexes on the current table */
143178 nIndex = 0;
143180 nIndex++;
143206 nBtree += nIndex+1;
188951 int nIndex; /* Size of aIndex[] */
190069 int nIndex = 1; /* Number of entries in array */
190073 nIndex++;
190075 if( *p==',' ) nIndex++;
190079 aIndex = sqlite3_malloc64(sizeof(struct Fts3Index) * nIndex);
190085 memset(aIndex, 0, sizeof(struct Fts3Index) * nIndex);
190089 for(i=1; i<nIndex; i++){
190094 nIndex--;
190103 *pnIndex = nIndex;
190231 int nIndex = 0; /* Size of aIndex[] array */
190437 rc = fts3PrefixParameter(zPrefix, &nIndex, &aIndex);
190447 nIndex * sizeof(struct Fts3Index) + /* aIndex */
190477 memcpy(p->aIndex, aIndex, sizeof(struct Fts3Index) * nIndex);
190478 p->nIndex = nIndex;
190479 for(i=0; i<nIndex; i++){
190482 p->abNotindexed = (u8 *)&p->aIndex[nIndex];
192091 assert( iIndex>=0 && iIndex<p->nIndex );
192154 for(i=1; bFound==0 && i<p->nIndex; i++){
192164 for(i=1; bFound==0 && i<p->nIndex; i++){
195358 p->pFts3Tab->nIndex = 1;
199970 assert( p->nIndex>0 );
199971 assert( iIndex>=0 && iIndex<p->nIndex );
199973 iBase = ((sqlite3_int64)iLangid * p->nIndex + iIndex) * FTS3_SEGDIR_MAXLEVEL;
200006 assert( iIndex>=0 && iIndex<p->nIndex );
200244 for(i=1; rc==SQLITE_OK && i<p->nIndex; i++){
200297 for(i=0; i<p->nIndex; i++){
200535 assert( p->nIndex>=1 );
201872 assert( iIndex>=0 && iIndex<p->nIndex );
202638 assert( iIndex>=0 && iIndex<p->nIndex );
202721 for(i=0; rc==SQLITE_OK && i<p->nIndex; i++){
202927 sqlite3_bind_int(pAllLangid, 2, p->nIndex);
202931 for(i=0; rc==SQLITE_OK && i<p->nIndex; i++){
204342 const i64 nMod = FTS3_SEGDIR_MAXLEVEL * p->nIndex;
204705 sqlite3_bind_int(pAllLangid, 2, p->nIndex);
204709 for(i=0; i<p->nIndex; i++){
204754 for(i=1; i<p->nIndex; i++){
221516 int nIndex; /* Number of aux. indexes on table zTbl */
222538 pIter->nIndex = 0;
222559 pIter->nIndex++;
222564 pIter->nIndex--;
222680 assert( pIter->eType!=RBU_PK_VTAB || pIter->nIndex==0 );
223458 p->nPhaseOneStep += p->objiter.nIndex;
224631 p->nPhaseOneStep -= p->objiter.nIndex;
224714 p->nPhaseOneStep += p->objiter.nIndex;
224726 p->nPhaseOneStep -= p->objiter.nIndex;
225174 int nIndex = 0;
225176 nIndex = sqlite3_column_int(pStmt, 0);
225180 sqlite3_result_int(pCtx, nIndex);