Lines Matching defs:aRight
64984 ** aLeft[] and aRight[] are arrays of indices. The sort key is
64985 ** aContent[aLeft[]] and aContent[aRight[]]. Upon entry, the following
64989 ** aContent[aRight[J]] < aContent[aRight[K]]
64991 ** This routine overwrites aRight[] with a new (probably longer) sequence
64992 ** of indices such that the aRight[] contains every index that appears in
64993 ** either aLeft[] or the old aRight[] and such that the second condition
64997 ** aContent[aRight[X]] values will be unique too. But there might be
65000 ** aLeft[X]!=aRight[Y] && aContent[aLeft[X]] == aContent[aRight[Y]]
65002 ** When that happens, omit the aLeft[X] and use the aRight[Y] index.
65013 int iRight = 0; /* Current index in aRight */
65016 ht_slot *aRight = *paRight;
65024 && (iRight>=nRight || aContent[aLeft[iLeft]]<aContent[aRight[iRight]])
65028 logpage = aRight[iRight++];
65036 assert( iRight>=nRight || aContent[aRight[iRight]]>dbpage );
182341 char *aRight = *paRight;
182343 char *pEnd2 = &aRight[*pnRight];
182345 char *p2 = aRight;
182355 aOut = aRight;
182388 sqlite3_free(aRight);
203291 int *aRight = &aIdx[nLeft];
203294 SortByDistance(aRight, nRight, aDistance, aSpare);
203301 aIdx[iLeft+iRight] = aRight[iRight];
203308 RtreeDValue fRight = aDistance[aRight[iRight]];
203313 aIdx[iLeft+iRight] = aRight[iRight];
203360 int *aRight = &aIdx[nLeft];
203363 SortByDimension(pRtree, aRight, nRight, iDim, aCell, aSpare);
203370 RtreeDValue xright1 = DCOORD(aCell[aRight[iRight]].aCoord[iDim*2]);
203371 RtreeDValue xright2 = DCOORD(aCell[aRight[iRight]].aCoord[iDim*2+1]);
203379 aIdx[iLeft+iRight] = aRight[iRight];
216157 ** Arguments aLeft and aRight are pointers to change records for table pTab.
216166 int bRightPkOnly, /* True if aRight[] contains PK fields only */
216167 u8 *aRight /* Change record */
216170 u8 *a2 = aRight; /* Cursor to iterate through aRight */
216193 ** Arguments aLeft and aRight both point to buffers containing change
216200 ** aRight record contains a value for the column, copy the value from
216209 u8 *aRight
216212 u8 *a2 = aRight; /* Cursor used to iterate through aRight */