Lines Matching refs:xN
154126 ** Then for every term xN, evaluate as the subexpression: xN AND y
154130 ** Actually, each subexpression is converted to "xN AND w" where w is
202268 ** The constraint is of the form: xN op $val
202270 ** The op is given by p->op. The xN is p->iCoord-th coordinate in
202279 RtreeDValue xN; /* Coordinate value converted to a double */
202286 RTREE_DECODE_COORD(eInt, pCellData, xN);
202290 case RTREE_LE: if( xN <= p->u.rValue ) return; break;
202291 case RTREE_LT: if( xN < p->u.rValue ) return; break;
202292 case RTREE_GE: if( xN >= p->u.rValue ) return; break;
202293 case RTREE_GT: if( xN > p->u.rValue ) return; break;
202294 default: if( xN == p->u.rValue ) return; break;
205845 rArea += (GeoX(p,ii) - GeoX(p,0)) /* (xN - x0) */