Lines Matching refs:rect
562 struct copybit_rect_t *rect) in clear_copybit() argument
591 if (rect->l < 0 || (uint32_t)(rect->r - rect->l) > req->dst.width || in clear_copybit()
592 rect->t < 0 || (uint32_t)(rect->b - rect->t) > req->dst.height) { in clear_copybit()
594 __FUNCTION__, rect->l, rect->t, rect->r, rect->b); in clear_copybit()
598 req->dst_rect.x = rect->l; in clear_copybit()
599 req->dst_rect.y = rect->t; in clear_copybit()
600 req->dst_rect.w = rect->r - rect->l; in clear_copybit()
601 req->dst_rect.h = rect->b - rect->t; in clear_copybit()
624 struct copybit_rect_t const *rect, in fill_color() argument
638 if (rect->l < 0 || (uint32_t)(rect->r - rect->l) > dst->w || in fill_color()
639 rect->t < 0 || (uint32_t)(rect->b - rect->t) > dst->h) { in fill_color()
641 __FUNCTION__, rect->l, rect->t, rect->r, rect->b); in fill_color()
652 req->dst_rect.x = rect->l; in fill_color()
653 req->dst_rect.y = rect->t; in fill_color()
654 req->dst_rect.w = rect->r - rect->l; in fill_color()
655 req->dst_rect.h = rect->b - rect->t; in fill_color()