Lines Matching refs:iLeft

50301   int iLeft = 0;                  /* Current index in aLeft */
50308 while( iRight<nRight || iLeft<nLeft ){
50312 if( (iLeft<nLeft)
50313 && (iRight>=nRight || aContent[aLeft[iLeft]]<aContent[aRight[iRight]])
50315 logpage = aLeft[iLeft++];
50322 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
50324 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
106773 int iLeft, /* Index of first table to join in pSrc */
106785 assert( iLeft<iRight );
106787 assert( pSrc->a[iLeft].pTab );
106790 pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iColLeft);
106882 int iLeft; /* Matching left table */
106886 if( tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol) ){
106887 addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, j,
106921 int iLeft; /* Table on the left with matching column name */
106928 || !tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol)
106934 addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, iRightCol,
152946 int iLeft = 0;
152960 while( iLeft<nLeft || iRight<nRight ){
152961 if( iLeft==nLeft ){
152962 aIdx[iLeft+iRight] = aRight[iRight];
152965 aIdx[iLeft+iRight] = aLeft[iLeft];
152966 iLeft++;
152968 RtreeDValue fLeft = aDistance[aLeft[iLeft]];
152971 aIdx[iLeft+iRight] = aLeft[iLeft];
152972 iLeft++;
152974 aIdx[iLeft+iRight] = aRight[iRight];
153015 int iLeft = 0;
153028 while( iLeft<nLeft || iRight<nRight ){
153029 RtreeDValue xleft1 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2]);
153030 RtreeDValue xleft2 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2+1]);
153033 if( (iLeft!=nLeft) && ((iRight==nRight)
153037 aIdx[iLeft+iRight] = aLeft[iLeft];
153038 iLeft++;
153040 aIdx[iLeft+iRight] = aRight[iRight];