Lines Matching refs:aIdx
134635 IndexListTerm *aIdx; /* Array of IndexListTerms */
134652 *pIx = pIter->u.ax.aIdx[0].ix;
134653 return pIter->u.ax.aIdx[0].p;
134668 *pIx = pIter->u.ax.aIdx[i].ix;
134669 return pIter->u.ax.aIdx[i].p;
135009 sIdxIter.u.ax.aIdx = 0; /* Silence harmless compiler warning */
135038 sIdxIter.u.ax.aIdx = sqlite3DbMallocZero(db, nByte);
135039 if( sIdxIter.u.ax.aIdx==0 ) return; /* OOM */
135040 bUsed = (u8*)&sIdxIter.u.ax.aIdx[nIdx];
135041 pUpsert->pToFree = sIdxIter.u.ax.aIdx;
135053 sIdxIter.u.ax.aIdx[i].p = pIdx;
135054 sIdxIter.u.ax.aIdx[i].ix = jj;
135059 sIdxIter.u.ax.aIdx[i].p = pIdx;
135060 sIdxIter.u.ax.aIdx[i].ix = jj;
201020 int *aIdx = 0; /* Array of remaining idx values */
201035 aNew = sqlite3_realloc64(aIdx, nAlloc*sizeof(int));
201040 aIdx = aNew;
201042 aIdx[nIdx++] = sqlite3_column_int(pSelect, 0);
201058 if( aIdx[i]!=i ){
201059 sqlite3_bind_int(pUpdate, 3, aIdx[i]);
201067 sqlite3_free(aIdx);
210007 int aIdx[2]; /* Index of constraints for JSON and ROOT */
210016 aIdx[0] = aIdx[1] = -1;
210029 aIdx[iCol] = i;
210045 if( aIdx[0]<0 ){
210052 i = aIdx[0];
210055 if( aIdx[1]<0 ){
210058 i = aIdx[1];
212683 int *aIdx,
212696 int *aLeft = aIdx;
212697 int *aRight = &aIdx[nLeft];
212713 aIdx[iLeft+iRight] = aLeft[iLeft];
212716 aIdx[iLeft+iRight] = aRight[iRight];
212726 RtreeDValue xleft1 = aCell[aIdx[jj-1]].aCoord[iDim*2];
212727 RtreeDValue xleft2 = aCell[aIdx[jj-1]].aCoord[iDim*2+1];
212728 RtreeDValue xright1 = aCell[aIdx[jj]].aCoord[iDim*2];
212729 RtreeDValue xright2 = aCell[aIdx[jj]].aCoord[iDim*2+1];
245640 u8 *aIdx = 0;
245656 aIdx = sqlite3Fts5MallocZero(&p->rc, (pLeaf->nn-pLeaf->szLeaf)+2);
245657 if( aIdx==0 ) break;
245658 i2 = sqlite3Fts5PutVarint(aIdx, iFirst-nShift);
245660 memcpy(&aIdx[i2], &aPg[i1], pLeaf->nn-i1);
245673 memcpy(&aPg[nPg], aIdx, nIdx);
245676 sqlite3_free(aIdx);
245705 u8 *aIdx = 0;
245712 aIdx = sqlite3Fts5MallocZero(&p->rc, nIdx+16);
245714 memcpy(aIdx, &aPg[iPgIdx], nIdx);
245805 iIdx += fts5GetVarint32(&aIdx[iIdx], iVal);
245843 iIdx += fts5GetVarint32(&aIdx[iIdx], iVal);
245959 iIdx += fts5GetVarint32(&aIdx[iIdx], iVal);
245975 sqlite3_free(aIdx);
249740 int aIdx[1]; /* Offsets into aPoslist for current row */
250432 pSorter->aIdx[i] = iOff;
250434 pSorter->aIdx[i] = &aBlob[nBlob] - a;
251569 int i1 = (iPhrase==0 ? 0 : pSorter->aIdx[iPhrase-1]);
251570 *pn = pSorter->aIdx[iPhrase] - i1;
251910 int i1 = (iPhrase==0 ? 0 : pSorter->aIdx[iPhrase-1]);
251911 n = pSorter->aIdx[iPhrase] - i1;