Home | History | Annotate | Download | only in rtree

Lines Matching defs:iRight

1871     int iRight = 0;
1884 while( iLeft<nLeft || iRight<nRight ){
1886 aIdx[iLeft+iRight] = aRight[iRight];
1887 iRight++;
1888 }else if( iRight==nRight ){
1889 aIdx[iLeft+iRight] = aLeft[iLeft];
1893 float fRight = aDistance[aRight[iRight]];
1895 aIdx[iLeft+iRight] = aLeft[iLeft];
1898 aIdx[iLeft+iRight] = aRight[iRight];
1899 iRight++;
1940 int iRight = 0;
1952 while( iLeft<nLeft || iRight<nRight ){
1955 double xright1 = DCOORD(aCell[aRight[iRight]].aCoord[iDim*2]);
1956 double xright2 = DCOORD(aCell[aRight[iRight]].aCoord[iDim*2+1]);
1957 if( (iLeft!=nLeft) && ((iRight==nRight)
1961 aIdx[iLeft+iRight] = aLeft[iLeft];
1964 aIdx[iLeft+iRight] = aRight[iRight];
1965 iRight++;