Lines Matching refs:nIndex

132933   int nIndex;                     /* Size of aIndex[] */
133964 int nIndex = 1; /* Number of entries in array */
133968 nIndex++;
133970 if( *p==',' ) nIndex++;
133974 aIndex = sqlite3_malloc(sizeof(struct Fts3Index) * nIndex);
133980 memset(aIndex, 0, sizeof(struct Fts3Index) * nIndex);
133984 for(i=1; i<nIndex; i++){
133989 nIndex--;
133998 *pnIndex = nIndex;
134126 int nIndex = 0; /* Size of aIndex[] array */
134331 rc = fts3PrefixParameter(zPrefix, &nIndex, &aIndex);
134341 nIndex * sizeof(struct Fts3Index) + /* aIndex */
134371 memcpy(p->aIndex, aIndex, sizeof(struct Fts3Index) * nIndex);
134372 p->nIndex = nIndex;
134373 for(i=0; i<nIndex; i++){
134376 p->abNotindexed = (u8 *)&p->aIndex[nIndex];
135879 assert( iIndex>=0 && iIndex<p->nIndex );
135942 for(i=1; bFound==0 && i<p->nIndex; i++){
135952 for(i=1; bFound==0 && i<p->nIndex; i++){
138997 p->pFts3Tab->nIndex = 1;
143527 assert( p->nIndex>0 );
143528 assert( iIndex>=0 && iIndex<p->nIndex );
143530 iBase = ((sqlite3_int64)iLangid * p->nIndex + iIndex) * FTS3_SEGDIR_MAXLEVEL;
143563 assert( iIndex>=0 && iIndex<p->nIndex );
143801 for(i=1; rc==SQLITE_OK && i<p->nIndex; i++){
143850 for(i=0; i<p->nIndex; i++){
144087 assert( p->nIndex>=1 );
145378 assert( iIndex>=0 && iIndex<p->nIndex );
146129 assert( iIndex>=0 && iIndex<p->nIndex );
146210 for(i=0; rc==SQLITE_OK && i<p->nIndex; i++){
146407 sqlite3_bind_int(pAllLangid, 2, p->nIndex);
146411 for(i=0; rc==SQLITE_OK && i<p->nIndex; i++){
147774 const i64 nMod = FTS3_SEGDIR_MAXLEVEL * p->nIndex;
148108 sqlite3_bind_int(pAllLangid, 2, p->nIndex);
148112 for(i=0; i<p->nIndex; i++){
148158 for(i=1; i<p->nIndex; i++){