Lines Matching refs:xN
158376 ** Then for every term xN, evaluate as the subexpression: xN AND y
158380 ** Actually, each subexpression is converted to "xN AND w" where w is
209848 ** The constraint is of the form: xN op $val
209850 ** The op is given by p->op. The xN is p->iCoord-th coordinate in
209859 RtreeDValue xN; /* Coordinate value converted to a double */
209866 RTREE_DECODE_COORD(eInt, pCellData, xN);
209870 case RTREE_LE: if( xN <= p->u.rValue ) return; break;
209871 case RTREE_LT: if( xN < p->u.rValue ) return; break;
209872 case RTREE_GE: if( xN >= p->u.rValue ) return; break;
209873 case RTREE_GT: if( xN > p->u.rValue ) return; break;
209874 default: if( xN == p->u.rValue ) return; break;
213291 rArea += (GeoX(p,ii) - GeoX(p,0)) /* (xN - x0) */