Home | History | Annotate | Download | only in amalgamation

Lines Matching refs:iLeft

44641   int iLeft = 0;                  /* Current index in aLeft */
44648 while( iRight<nRight || iLeft<nLeft ){
44652 if( (iLeft<nLeft)
44653 && (iRight>=nRight || aContent[aLeft[iLeft]]<aContent[aRight[iRight]])
44655 logpage = aLeft[iLeft++];
44662 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
44664 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
90161 int iLeft, /* Index of first table to join in pSrc */
90173 assert( iLeft<iRight );
90175 assert( pSrc->a[iLeft].pTab );
90178 pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iColLeft);
90270 int iLeft; /* Matching left table */
90274 if( tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol) ){
90275 addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, j,
90309 int iLeft; /* Table on the left with matching column name */
90316 || !tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol)
90322 addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, iRightCol,
126127 int iLeft = 0;
126141 while( iLeft<nLeft || iRight<nRight ){
126142 if( iLeft==nLeft ){
126143 aIdx[iLeft+iRight] = aRight[iRight];
126146 aIdx[iLeft+iRight] = aLeft[iLeft];
126147 iLeft++;
126149 float fLeft = aDistance[aLeft[iLeft]];
126152 aIdx[iLeft+iRight] = aLeft[iLeft];
126153 iLeft++;
126155 aIdx[iLeft+iRight] = aRight[iRight];
126196 int iLeft = 0;
126209 while( iLeft<nLeft || iRight<nRight ){
126210 double xleft1 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2]);
126211 double xleft2 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2+1]);
126214 if( (iLeft!=nLeft) && ((iRight==nRight)
126218 aIdx[iLeft+iRight] = aLeft[iLeft];
126219 iLeft++;
126221 aIdx[iLeft+iRight] = aRight[iRight];