Lines Matching full:rhs
109 /** Determine the intersection of lhs & rhs store in out */
112 const struct copybit_rect_t *rhs) {
113 out->l = max(lhs->l, rhs->l);
114 out->t = max(lhs->t, rhs->t);
115 out->r = min(lhs->r, rhs->r);
116 out->b = min(lhs->b, rhs->b);
136 static void set_image(struct mdp_img *img, const struct copybit_image_t *rhs)
138 private_handle_t* hnd = (private_handle_t*)rhs->handle;
139 img->width = rhs->w;
140 img->height = rhs->h;
141 img->format = get_format(rhs->format);