Home | History | Annotate | Download | only in dist

Lines Matching refs:iLeft

48898   int iLeft = 0;                  /* Current index in aLeft */
48905 while( iRight<nRight || iLeft<nLeft ){
48909 if( (iLeft<nLeft)
48910 && (iRight>=nRight || aContent[aLeft[iLeft]]<aContent[aRight[iRight]])
48912 logpage = aLeft[iLeft++];
48919 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
48921 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
101749 int iLeft, /* Index of first table to join in pSrc */
101761 assert( iLeft<iRight );
101763 assert( pSrc->a[iLeft].pTab );
101766 pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iColLeft);
101858 int iLeft; /* Matching left table */
101862 if( tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol) ){
101863 addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, j,
101897 int iLeft; /* Table on the left with matching column name */
101904 || !tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol)
101910 addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, iRightCol,
146655 int iLeft = 0;
146669 while( iLeft<nLeft || iRight<nRight ){
146670 if( iLeft==nLeft ){
146671 aIdx[iLeft+iRight] = aRight[iRight];
146674 aIdx[iLeft+iRight] = aLeft[iLeft];
146675 iLeft++;
146677 RtreeDValue fLeft = aDistance[aLeft[iLeft]];
146680 aIdx[iLeft+iRight] = aLeft[iLeft];
146681 iLeft++;
146683 aIdx[iLeft+iRight] = aRight[iRight];
146724 int iLeft = 0;
146737 while( iLeft<nLeft || iRight<nRight ){
146738 RtreeDValue xleft1 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2]);
146739 RtreeDValue xleft2 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2+1]);
146742 if( (iLeft!=nLeft) && ((iRight==nRight)
146746 aIdx[iLeft+iRight] = aLeft[iLeft];
146747 iLeft++;
146749 aIdx[iLeft+iRight] = aRight[iRight];