Lines Matching refs:aIdx
141155 int *aIdx = 0; /* Array of remaining idx values */
141156 int nIdx = 0; /* Valid entries in aIdx[] */
141157 int nAlloc = 0; /* Allocated size of aIdx[] */
141170 aNew = sqlite3_realloc(aIdx, nAlloc*sizeof(int));
141175 aIdx = aNew;
141177 aIdx[nIdx++] = sqlite3_column_int(pSelect, 0);
141193 if( aIdx[i]!=i ){
141194 sqlite3_bind_int(pUpdate, 3, aIdx[i]);
141202 sqlite3_free(aIdx);
146632 ** Arguments aIdx, aDistance and aSpare all point to arrays of size
146633 ** nIdx. The aIdx array contains the set of integers from 0 to
146635 ** in aIdx according to the indexed values in aDistance. For
146638 ** aIdx = { 0, 1, 2, 3 }
146641 ** this function sets the aIdx array to contain:
146643 ** aIdx = { 0, 1, 2, 3 }
146649 int *aIdx,
146660 int *aLeft = aIdx;
146661 int *aRight = &aIdx[nLeft];
146671 aIdx[iLeft+iRight] = aRight[iRight];
146674 aIdx[iLeft+iRight] = aLeft[iLeft];
146680 aIdx[iLeft+iRight] = aLeft[iLeft];
146683 aIdx[iLeft+iRight] = aRight[iRight];
146694 RtreeDValue left = aDistance[aIdx[jj-1]];
146695 RtreeDValue right = aDistance[aIdx[jj]];
146704 ** Arguments aIdx, aCell and aSpare all point to arrays of size
146705 ** nIdx. The aIdx array contains the set of integers from 0 to
146707 ** in aIdx according to dimension iDim of the cells in aCell. The
146716 int *aIdx,
146729 int *aLeft = aIdx;
146730 int *aRight = &aIdx[nLeft];
146746 aIdx[iLeft+iRight] = aLeft[iLeft];
146749 aIdx[iLeft+iRight] = aRight[iRight];
146759 RtreeDValue xleft1 = aCell[aIdx[jj-1]].aCoord[iDim*2];
146760 RtreeDValue xleft2 = aCell[aIdx[jj-1]].aCoord[iDim*2+1];
146761 RtreeDValue xright1 = aCell[aIdx[jj]].aCoord[iDim*2];
146762 RtreeDValue xright2 = aCell[aIdx[jj]].aCoord[iDim*2+1];