• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/Heimdal-323.92.1/lib/sqlite/

Lines Matching refs:iLeft

45751   int iLeft = 0;                  /* Current index in aLeft */
45758 while( iRight<nRight || iLeft<nLeft ){
45762 if( (iLeft<nLeft)
45763 && (iRight>=nRight || aContent[aLeft[iLeft]]<aContent[aRight[iRight]])
45765 logpage = aLeft[iLeft++];
45772 if( iLeft<nLeft && aContent[aLeft[iLeft]]==dbpage ) iLeft++;
45774 assert( iLeft>=nLeft || aContent[aLeft[iLeft]]>dbpage );
92588 int iLeft, /* Index of first table to join in pSrc */
92600 assert( iLeft<iRight );
92602 assert( pSrc->a[iLeft].pTab );
92605 pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iColLeft);
92697 int iLeft; /* Matching left table */
92701 if( tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol) ){
92702 addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, j,
92736 int iLeft; /* Table on the left with matching column name */
92743 || !tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol)
92749 addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, iRightCol,
128899 int iLeft = 0;
128913 while( iLeft<nLeft || iRight<nRight ){
128914 if( iLeft==nLeft ){
128915 aIdx[iLeft+iRight] = aRight[iRight];
128918 aIdx[iLeft+iRight] = aLeft[iLeft];
128919 iLeft++;
128921 float fLeft = aDistance[aLeft[iLeft]];
128924 aIdx[iLeft+iRight] = aLeft[iLeft];
128925 iLeft++;
128927 aIdx[iLeft+iRight] = aRight[iRight];
128968 int iLeft = 0;
128981 while( iLeft<nLeft || iRight<nRight ){
128982 double xleft1 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2]);
128983 double xleft2 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2+1]);
128986 if( (iLeft!=nLeft) && ((iRight==nRight)
128990 aIdx[iLeft+iRight] = aLeft[iLeft];
128991 iLeft++;
128993 aIdx[iLeft+iRight] = aRight[iRight];