• Home
  • Raw
  • Download

Lines Matching refs:iLeft

64865   int iLeft = 0;                  /* Current index in aLeft */
64872 while( iRight<nRight || iLeft<nLeft ){
64876 if( (iLeft<nLeft)
64877 && (iRight>=nRight || aContent[aLeft[iLeft]]<aContent[aRight[iRight]])
64879 logpage = aLeft[iLeft++];
64886 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
64888 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
138544 int iLeft; /* Table on the left with matching column name */
138554 || tableAndColumnIndex(pSrc, 0, i, zName, &iLeft, &iLeftCol,
138561 pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iLeftCol);
138562 sqlite3SrcItemColumnUsed(&pSrc->a[iLeft], iLeftCol);
138579 while( tableAndColumnIndex(pSrc, iLeft+1, i, zName, &iLeft, &iLeftCol,
138581 if( pSrc->a[iLeft].fg.isUsing==0
138582 || sqlite3IdListIndex(pSrc->a[iLeft].u3.pUsing, zName)<0
138589 pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iLeftCol);
138590 sqlite3SrcItemColumnUsed(&pSrc->a[iLeft], iLeftCol);
203072 int iLeft = 0;
203086 while( iLeft<nLeft || iRight<nRight ){
203087 if( iLeft==nLeft ){
203088 aIdx[iLeft+iRight] = aRight[iRight];
203091 aIdx[iLeft+iRight] = aLeft[iLeft];
203092 iLeft++;
203094 RtreeDValue fLeft = aDistance[aLeft[iLeft]];
203097 aIdx[iLeft+iRight] = aLeft[iLeft];
203098 iLeft++;
203100 aIdx[iLeft+iRight] = aRight[iRight];
203141 int iLeft = 0;
203154 while( iLeft<nLeft || iRight<nRight ){
203155 RtreeDValue xleft1 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2]);
203156 RtreeDValue xleft2 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2+1]);
203159 if( (iLeft!=nLeft) && ((iRight==nRight)
203163 aIdx[iLeft+iRight] = aLeft[iLeft];
203164 iLeft++;
203166 aIdx[iLeft+iRight] = aRight[iRight];