Lines Matching refs:iLeft

55104   int iLeft = 0;                  /* Current index in aLeft */
55111 while( iRight<nRight || iLeft<nLeft ){
55115 if( (iLeft<nLeft)
55116 && (iRight>=nRight || aContent[aLeft[iLeft]]<aContent[aRight[iRight]])
55118 logpage = aLeft[iLeft++];
55125 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
55127 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
113814 int iLeft, /* Index of first table to join in pSrc */
113826 assert( iLeft<iRight );
113828 assert( pSrc->a[iLeft].pTab );
113831 pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iColLeft);
113929 int iLeft; /* Matching left table */
113933 if( tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol) ){
113934 addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, j,
113968 int iLeft; /* Table on the left with matching column name */
113975 || !tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol)
113981 addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, iRightCol,
161978 int iLeft = 0;
161992 while( iLeft<nLeft || iRight<nRight ){
161993 if( iLeft==nLeft ){
161994 aIdx[iLeft+iRight] = aRight[iRight];
161997 aIdx[iLeft+iRight] = aLeft[iLeft];
161998 iLeft++;
162000 RtreeDValue fLeft = aDistance[aLeft[iLeft]];
162003 aIdx[iLeft+iRight] = aLeft[iLeft];
162004 iLeft++;
162006 aIdx[iLeft+iRight] = aRight[iRight];
162047 int iLeft = 0;
162060 while( iLeft<nLeft || iRight<nRight ){
162061 RtreeDValue xleft1 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2]);
162062 RtreeDValue xleft2 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2+1]);
162065 if( (iLeft!=nLeft) && ((iRight==nRight)
162069 aIdx[iLeft+iRight] = aLeft[iLeft];
162070 iLeft++;
162072 aIdx[iLeft+iRight] = aRight[iRight];