Home | History | Annotate | Download | only in dist

Lines Matching refs:aIndex

45837     int iNext;                    /* Next slot in aIndex[] not yet returned */
45838 ht_slot *aIndex; /* i0, i1, i2... such that aPgno[iN] ascend */
45840 int nEntry; /* Nr. of entries in aPgno[] and aIndex[] */
46709 u32 iPg = pSegment->aPgno[pSegment->aIndex[pSegment->iNext]];
46713 *piFrame = pSegment->iZero + pSegment->aIndex[pSegment->iNext];
46926 ht_slot *aIndex; /* Sorted index for this segment */
46934 aIndex = &((ht_slot *)&p->aSegment[p->nSegment])[iZero];
46938 aIndex[j] = (ht_slot)j;
46940 walMergesort((u32 *)aPgno, aTmp, aIndex, &nEntry);
46943 p->aSegment[i].aIndex = aIndex;
116654 ** there is an entry in the aIndex[] array. Index 0 is an index of all the
116655 ** terms that appear in the document set. Each subsequent index in aIndex[]
116658 int nIndex; /* Size of aIndex[] */
116662 } *aIndex;
117581 struct Fts3Index *aIndex; /* Allocated array */
117592 aIndex = sqlite3_malloc(sizeof(struct Fts3Index) * nIndex);
117593 *apIndex = aIndex;
117595 if( !aIndex ){
117599 memset(aIndex, 0, sizeof(struct Fts3Index) * nIndex);
117606 aIndex[i].nPrefix = nPrefix;
117734 int nIndex; /* Size of aIndex[] array */
117735 struct Fts3Index *aIndex = 0; /* Array of indexes for this table */
117921 rc = fts3PrefixParameter(zPrefix, &nIndex, &aIndex);
117931 nIndex * sizeof(struct Fts3Index) + /* aIndex */
117957 p->aIndex = (struct Fts3Index *)&p->azColumn[nCol];
117958 memcpy(p->aIndex, aIndex, sizeof(struct Fts3Index) * nIndex);
117961 fts3HashInit(&p->aIndex[i].hPending, FTS3_HASH_STRING, 1);
117965 zCsr = (char *)&p->aIndex[nIndex];
118012 sqlite3_free(aIndex);
119290 if( iLevel<0 && p->aIndex ){
119365 assert( isScan==0 || p->aIndex==0 );
119423 if( p->aIndex[i].nPrefix==nTerm ){
119433 if( p->aIndex[i].nPrefix==nTerm+1 ){
125599 int iIndex, /* Index for p->aIndex[] */
125841 p, iCol, iPos, &p->aIndex[0].hPending, zToken, nToken
125847 struct Fts3Index *pIndex = &p->aIndex[i];
125897 Fts3Hash *pHash = &p->aIndex[i].hPending;
126114 int iIndex, /* Index for p->aIndex */
126655 int iIndex, /* Index for p->aIndex */
126668 pHash = &p->aIndex[iIndex].hPending;
127412 int iIndex, /* Index for p->aIndex */
127921 int iIndex, /* Index in p->aIndex[] to merge */