Lines Matching refs:nIndex

160189   int nIndex;                     /* Size of aIndex[] */
161244 int nIndex = 1; /* Number of entries in array */
161248 nIndex++;
161250 if( *p==',' ) nIndex++;
161254 aIndex = sqlite3_malloc64(sizeof(struct Fts3Index) * nIndex);
161260 memset(aIndex, 0, sizeof(struct Fts3Index) * nIndex);
161264 for(i=1; i<nIndex; i++){
161269 nIndex--;
161278 *pnIndex = nIndex;
161406 int nIndex = 0; /* Size of aIndex[] array */
161612 rc = fts3PrefixParameter(zPrefix, &nIndex, &aIndex);
161622 nIndex * sizeof(struct Fts3Index) + /* aIndex */
161652 memcpy(p->aIndex, aIndex, sizeof(struct Fts3Index) * nIndex);
161653 p->nIndex = nIndex;
161654 for(i=0; i<nIndex; i++){
161657 p->abNotindexed = (u8 *)&p->aIndex[nIndex];
163224 assert( iIndex>=0 && iIndex<p->nIndex );
163287 for(i=1; bFound==0 && i<p->nIndex; i++){
163297 for(i=1; bFound==0 && i<p->nIndex; i++){
166372 p->pFts3Tab->nIndex = 1;
170949 assert( p->nIndex>0 );
170950 assert( iIndex>=0 && iIndex<p->nIndex );
170952 iBase = ((sqlite3_int64)iLangid * p->nIndex + iIndex) * FTS3_SEGDIR_MAXLEVEL;
170985 assert( iIndex>=0 && iIndex<p->nIndex );
171223 for(i=1; rc==SQLITE_OK && i<p->nIndex; i++){
171276 for(i=0; i<p->nIndex; i++){
171514 assert( p->nIndex>=1 );
172831 assert( iIndex>=0 && iIndex<p->nIndex );
173584 assert( iIndex>=0 && iIndex<p->nIndex );
173667 for(i=0; rc==SQLITE_OK && i<p->nIndex; i++){
173867 sqlite3_bind_int(pAllLangid, 2, p->nIndex);
173871 for(i=0; rc==SQLITE_OK && i<p->nIndex; i++){
175241 const i64 nMod = FTS3_SEGDIR_MAXLEVEL * p->nIndex;
175579 sqlite3_bind_int(pAllLangid, 2, p->nIndex);
175583 for(i=0; i<p->nIndex; i++){
175629 for(i=1; i<p->nIndex; i++){
189132 int nIndex; /* Number of aux. indexes on table zTbl */
190117 pIter->nIndex = 0;
190135 pIter->nIndex++;
190140 pIter->nIndex--;
190255 assert( pIter->eType!=RBU_PK_VTAB || pIter->nIndex==0 );
190816 p->nPhaseOneStep += p->objiter.nIndex;
191881 p->nPhaseOneStep -= p->objiter.nIndex;
191964 p->nPhaseOneStep += p->objiter.nIndex;
191976 p->nPhaseOneStep -= p->objiter.nIndex;
192421 int nIndex = 0;
192423 nIndex = sqlite3_column_int(pStmt, 0);
192427 sqlite3_result_int(pCtx, nIndex);