Lines Matching defs:margin
11912 ** <table border=1 style="margin-left:8ex;margin-right:8ex">
12476 ** <table border=1 style="margin-left:8ex;margin-right:8ex">
29321 ** This provides a 256-byte safety margin for defense against 32-bit
29324 ** further for an even larger safety margin. 0x3fffffff or 0x0fffffff
91205 ** that is a lot of wasted space on the left margin. So the code within
159476 ** a safety margin of 2 (LogEst: 10) that favors using the IN operator
203047 ** Return the margin length of cell p. The margin length is the sum
203051 RtreeDValue margin = 0;
203054 margin += (DCOORD(p->aCoord[ii+1]) - DCOORD(p->aCoord[ii]));
203057 return margin;
203439 RtreeDValue margin = RTREE_ZERO;
203465 margin += cellMargin(pRtree, &left);
203466 margin += cellMargin(pRtree, &right);
203479 if( ii==0 || margin<fBestMargin ){
203481 fBestMargin = margin;