Lines Matching refs:MIN2
137 x = MIN2(a->x, b->x); in u_box_union_1d()
154 dst->width = MIN2(a->x + a->width, b->x + b->width) - x; in u_box_intersect_1d()
169 x = MIN2(a->x, b->x); in u_box_union_2d()
170 y = MIN2(a->y, b->y); in u_box_union_2d()
185 x = MIN2(a->x, b->x); in u_box_union_3d()
186 y = MIN2(a->y, b->y); in u_box_union_3d()
187 z = MIN2(a->z, b->z); in u_box_union_3d()
204 a_l[0] = MIN2(a->x, a->x + a->width); in u_box_test_intersection_2d()
206 a_l[1] = MIN2(a->y, a->y + a->height); in u_box_test_intersection_2d()
209 b_l[0] = MIN2(b->x, b->x + b->width); in u_box_test_intersection_2d()
211 b_l[1] = MIN2(b->y, b->y + b->height); in u_box_test_intersection_2d()