Lines Matching refs:rects
1531 xcb_rectangle_t *rects = NULL; in hostx_set_window_bounding_rectangles() local
1537 rects = calloc(a_num_rects, sizeof (xcb_rectangle_t)); in hostx_set_window_bounding_rectangles()
1538 if (!rects) in hostx_set_window_bounding_rectangles()
1541 rects[i].x = a_rects[i].x1; in hostx_set_window_bounding_rectangles()
1542 rects[i].y = a_rects[i].y1; in hostx_set_window_bounding_rectangles()
1543 rects[i].width = abs(a_rects[i].x2 - a_rects[i].x1); in hostx_set_window_bounding_rectangles()
1544 rects[i].height = abs(a_rects[i].y2 - a_rects[i].y1); in hostx_set_window_bounding_rectangles()
1546 rects[i].x, rects[i].y, rects[i].width, rects[i].height); in hostx_set_window_bounding_rectangles()
1555 rects); in hostx_set_window_bounding_rectangles()
1559 free(rects); in hostx_set_window_bounding_rectangles()
1560 rects = NULL; in hostx_set_window_bounding_rectangles()