Lines Matching refs:w
151 img->width = rhs->w; in set_image()
170 e->dst_rect.w = clip.r - clip.l; in set_rects()
177 e->src_rect.w = (clip.b - clip.t); in set_rects()
184 e->src_rect.w = (clip.r - clip.l); in set_rects()
190 MULDIV(&delta_x, &e->src_rect.w, src->r - src->l, W); in set_rects()
198 e->src_rect.x = (src->l + src->r) - (e->src_rect.x + e->src_rect.w); in set_rects()
208 e->src_rect.x = (src->l + src->r) - (e->src_rect.x + e->src_rect.w); in set_rects()
252 l->req[i].src_rect.w, in msm_copybit()
259 l->req[i].dst_rect.w, in msm_copybit()
443 if (src_rect->l < 0 || (uint32_t)src_rect->r > src->w || in stretch_copybit()
452 if (src->w > MAX_DIMENSION || src->h > MAX_DIMENSION) { in stretch_copybit()
453 ALOGE ("%s : Invalid source dimensions w %d h %d", __FUNCTION__, src->w, src->h); in stretch_copybit()
457 if (dst->w > MAX_DIMENSION || dst->h > MAX_DIMENSION) { in stretch_copybit()
458 ALOGE ("%s : Invalid DST dimensions w %d h %d", __FUNCTION__, dst->w, dst->h); in stretch_copybit()
465 if (0 == alloc_buffer(&yv12_handle,src->w,src->h, in stretch_copybit()
488 const struct copybit_rect_t bounds = { 0, 0, (int)dst->w, (int)dst->h }; in stretch_copybit()
506 if (req->src_rect.w<=0 || req->src_rect.h<=0) in stretch_copybit()
509 if (req->dst_rect.w<=0 || req->dst_rect.h<=0) in stretch_copybit()
545 struct copybit_rect_t dr = { 0, 0, (int)dst->w, (int)dst->h }; in blit_copybit()
546 struct copybit_rect_t sr = { 0, 0, (int)src->w, (int)src->h }; in blit_copybit()