Lines Matching defs:nIndex

116650   int nIndex;                     /* Size of aIndex[] */
117574 int nIndex = 1; /* Number of entries in array */
117578 nIndex++;
117580 if( *p==',' ) nIndex++;
117584 aIndex = sqlite3_malloc(sizeof(struct Fts3Index) * nIndex);
117586 *pnIndex = nIndex;
117591 memset(aIndex, 0, sizeof(struct Fts3Index) * nIndex);
117595 for(i=1; i<nIndex; i++){
117726 int nIndex; /* Size of aIndex[] array */
117913 rc = fts3PrefixParameter(zPrefix, &nIndex, &aIndex);
117923 nIndex * sizeof(struct Fts3Index) + /* aIndex */
117950 memcpy(p->aIndex, aIndex, sizeof(struct Fts3Index) * nIndex);
117951 p->nIndex = nIndex;
117952 for(i=0; i<nIndex; i++){
117957 zCsr = (char *)&p->aIndex[nIndex];
119264 int iIndex, /* Index to search (from 0 to p->nIndex-1) */
119338 int iIndex, /* Index to search (from 0 to p->nIndex-1) */
119346 assert( iIndex>=0 && iIndex<p->nIndex );
119414 for(i=1; bFound==0 && i<p->nIndex; i++){
119424 for(i=1; bFound==0 && i<p->nIndex; i++){
121939 p->pFts3Tab->nIndex = 1;
125556 assert( p->nIndex>0 );
125557 assert( iIndex>=0 && iIndex<p->nIndex );
125559 iBase = ((sqlite3_int64)iLangid * p->nIndex + iIndex) * FTS3_SEGDIR_MAXLEVEL;
125593 assert( iIndex>=0 && iIndex<p->nIndex );
125831 for(i=1; rc==SQLITE_OK && i<p->nIndex; i++){
125880 for(i=0; i<p->nIndex; i++){
126108 assert( p->nIndex>=1 );
127360 assert( iIndex>=0 && iIndex<p->nIndex );
127922 assert( iIndex>=0 && iIndex<p->nIndex );
127990 for(i=0; rc==SQLITE_OK && i<p->nIndex; i++){
128158 sqlite3_bind_int(pAllLangid, 1, p->nIndex);
128162 for(i=0; rc==SQLITE_OK && i<p->nIndex; i++){