Lines Matching refs:RtreeDValue

218320   typedef sqlite3_int64 RtreeDValue;       /* High accuracy coordinate */  typedef
218324 typedef double RtreeDValue; /* High accuracy coordinate */ typedef
218348 RtreeDValue rScore; /* The score for this node. Smallest goes first. */
218426 # define DCOORD(coord) ((RtreeDValue)coord.i)
218442 RtreeDValue rValue; /* Constraint value. */
218443 int (*xGeom)(sqlite3_rtree_geometry*,int,RtreeDValue*,int*);
218504 int (*xGeom)(sqlite3_rtree_geometry*, int, RtreeDValue*, int*);
218521 RtreeDValue aParam[FLEXARRAY]; /* Values for parameters to the SQL function */
218526 (offsetof(RtreeMatchArg,aParam)+(N)*sizeof(RtreeDValue))
219467 RtreeDValue xN; /* Coordinate value converted to a double */
219594 RtreeDValue rScore, /* Score for the new search point */
219629 RtreeDValue rScore, /* Score for the new search point */
220234 static RtreeDValue cellArea(Rtree *pRtree, RtreeCell *p){
220235 RtreeDValue area = (RtreeDValue)1;
220264 static RtreeDValue cellMargin(Rtree *pRtree, RtreeCell *p){
220265 RtreeDValue margin = 0;
220316 static RtreeDValue cellOverlap(
220323 RtreeDValue overlap = RTREE_ZERO;
220326 RtreeDValue o = (RtreeDValue)1;
220328 RtreeDValue x1, x2;
220332 o = (RtreeDValue)0;
220363 RtreeDValue fMinGrowth = RTREE_ZERO;
220364 RtreeDValue fMinArea = RTREE_ZERO;
220376 RtreeDValue area = cellArea(pRtree, &cell);
220391 RtreeDValue growth;
220392 RtreeDValue area;
220516 RtreeDValue xleft1 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2]);
220517 RtreeDValue xleft2 = DCOORD(aCell[aLeft[iLeft]].aCoord[iDim*2+1]);
220518 RtreeDValue xright1 = DCOORD(aCell[aRight[iRight]].aCoord[iDim*2]);
220519 RtreeDValue xright2 = DCOORD(aCell[aRight[iRight]].aCoord[iDim*2+1]);
220537 RtreeDValue xleft1 = aCell[aIdx[jj-1]].aCoord[iDim*2];
220538 RtreeDValue xleft2 = aCell[aIdx[jj-1]].aCoord[iDim*2+1];
220539 RtreeDValue xright1 = aCell[aIdx[jj]].aCoord[iDim*2];
220540 RtreeDValue xright2 = aCell[aIdx[jj]].aCoord[iDim*2+1];
220566 RtreeDValue fBestMargin = RTREE_ZERO;
220587 RtreeDValue margin = RTREE_ZERO;
220588 RtreeDValue fBestOverlap = RTREE_ZERO;
220589 RtreeDValue fBestArea = RTREE_ZERO;
220601 RtreeDValue overlap;
220602 RtreeDValue area;
224364 int (*xGeom)(sqlite3_rtree_geometry*,int,RtreeDValue*,int*), /* Callback */ argument