Lines Matching refs:minmax
269 runs_coalesce_band( Run* *psrc_spans, Run* *pdst_spans, SkinBox* minmax ) in runs_coalesce_band() argument
281 if (pleft < minmax->x1) minmax->x1 = pleft; in runs_coalesce_band()
308 if (pright > minmax->x2) minmax->x2 = pright; in runs_coalesce_band()
316 runs_coalesce( Run* dst, Run* src, SkinBox* minmax ) in runs_coalesce() argument
333 if (ytop < minmax->y1) minmax->y1 = ytop; in runs_coalesce()
334 if (ybot > minmax->y2) minmax->y2 = ybot; in runs_coalesce()
339 runs_coalesce_band( &sspan, &dspan, minmax ); in runs_coalesce()
992 SkinBox minmax; in region_operator_done() local
1002 minmax.x1 = minmax.y1 = INT_MAX; in region_operator_done()
1003 minmax.x2 = minmax.y2 = INT_MIN; in region_operator_done()
1005 count = runs_coalesce( o->runs_base, o->runs_base, &minmax ); in region_operator_done()
1012 skin_box_to_rect( &minmax, &o->result->bounds ); in region_operator_done()