Lines Matching refs:area
2075 RtreeDValue area = (RtreeDValue)1; in cellArea() local
2080 case 5: area = p->aCoord[9].f - p->aCoord[8].f; in cellArea()
2081 case 4: area *= p->aCoord[7].f - p->aCoord[6].f; in cellArea()
2082 case 3: area *= p->aCoord[5].f - p->aCoord[4].f; in cellArea()
2083 case 2: area *= p->aCoord[3].f - p->aCoord[2].f; in cellArea()
2084 default: area *= p->aCoord[1].f - p->aCoord[0].f; in cellArea()
2090 case 5: area = (i64)p->aCoord[9].i - (i64)p->aCoord[8].i; in cellArea()
2091 case 4: area *= (i64)p->aCoord[7].i - (i64)p->aCoord[6].i; in cellArea()
2092 case 3: area *= (i64)p->aCoord[5].i - (i64)p->aCoord[4].i; in cellArea()
2093 case 2: area *= (i64)p->aCoord[3].i - (i64)p->aCoord[2].i; in cellArea()
2094 default: area *= (i64)p->aCoord[1].i - (i64)p->aCoord[0].i; in cellArea()
2097 return area; in cellArea()
2157 RtreeDValue area; in cellGrowth() local
2160 area = cellArea(pRtree, &cell); in cellGrowth()
2162 return (cellArea(pRtree, &cell)-area); in cellGrowth()
2228 RtreeDValue area; in ChooseLeaf() local
2231 area = cellArea(pRtree, &cell); in ChooseLeaf()
2232 if( iCell==0||growth<fMinGrowth||(growth==fMinGrowth && area<fMinArea) ){ in ChooseLeaf()
2237 fMinArea = area; in ChooseLeaf()
2508 RtreeDValue area; in splitNodeStartree() local
2522 area = cellArea(pRtree, &left) + cellArea(pRtree, &right); in splitNodeStartree()
2525 || (overlap==fBestOverlap && area<fBestArea) in splitNodeStartree()
2529 fBestArea = area; in splitNodeStartree()