Lines Matching defs:box
84 BoxRec box;
90 box.x1 = arc->x + drawable->x;
91 box.y1 = arc->y + drawable->y;
93 * Because box.x2 and box.y2 get truncated to 16 bits, and the
103 x2 = box.x1 + (int) arc->width + 1;
104 box.x2 = x2;
105 y2 = box.y1 + (int) arc->height + 1;
106 box.y2 = y2;
108 (RegionContainsRect(gc->pCompositeClip, &box) == rgnIN)) {