Home | History | Annotate | Download | only in orig

Lines Matching refs:iLeft

48878   int iLeft = 0;                  /* Current index in aLeft */
48885 while( iRight<nRight || iLeft<nLeft ){
48889 if( (iLeft<nLeft)
48890 && (iRight>=nRight || aContent[aLeft[iLeft]]<aContent[aRight[iRight]])
48892 logpage = aLeft[iLeft++];
48899 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
48901 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
101729 int iLeft, /* Index of first table to join in pSrc */
101741 assert( iLeft<iRight );
101743 assert( pSrc->a[iLeft].pTab );
101746 pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iColLeft);
101838 int iLeft; /* Matching left table */
101842 if( tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol) ){
101843 addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, j,
101877 int iLeft; /* Table on the left with matching column name */
101884 || !tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol)
101890 addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, iRightCol,
146623 int iLeft = 0;
146637 while( iLeft<nLeft || iRight<nRight ){
146638 if( iLeft==nLeft ){
146639 aIdx[iLeft+iRight] = aRight[iRight];
146642 aIdx[iLeft+iRight] = aLeft[iLeft];
146643 iLeft++;
146645 RtreeDValue fLeft = aDistance[aLeft[iLeft]];
146648 aIdx[iLeft+iRight] = aLeft[iLeft];
146649 iLeft++;
146651 aIdx[iLeft+iRight] = aRight[iRight];
146692 int iLeft = 0;
146705 while( iLeft<nLeft || iRight<nRight ){
146706 RtreeDValue xleft1 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2]);
146707 RtreeDValue xleft2 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2+1]);
146710 if( (iLeft!=nLeft) && ((iRight==nRight)
146714 aIdx[iLeft+iRight] = aLeft[iLeft];
146715 iLeft++;
146717 aIdx[iLeft+iRight] = aRight[iRight];