Home | History | Annotate | Download | only in mux

Lines Matching refs:y_offset_

37   int x_offset_, y_offset_, width_, height_;
211 ClearRectangle(picture, rect->x_offset_, rect->y_offset_,
427 assert(rect->y_offset_ + rect->height_ <= dst->height);
432 &src->argb[rect->y_offset_ * src->argb_stride + i];
434 &dst->argb[rect->y_offset_ * dst->argb_stride + i];
448 &src->argb[rect->y_offset_ * src->argb_stride + i];
450 &dst->argb[rect->y_offset_ * dst->argb_stride + i];
461 for (j = rect->y_offset_; j < rect->y_offset_
469 ++rect->y_offset_;
477 for (j = rect->y_offset_ + rect->height_ - 1; j >= rect->y_offset_; --j) {
494 rect->y_offset_ = 0;
503 rect->height_ += (rect->y_offset_ & 1);
505 rect->y_offset_ &= ~1;
557 assert(rect->y_offset_ == 0);
562 return WebPPictureView(curr_canvas, rect->x_offset_, rect->y_offset_,
574 params->rect_ll_.y_offset_ = 0;
609 rect.y_offset_ = top;
611 rect.height_ = clip(bottom - top, 0, curr_canvas->height - rect.y_offset_);
616 *y_offset = rect.y_offset_;
641 assert(rect->y_offset_ + rect->height_ <= dst->height);
642 for (j = rect->y_offset_; j < rect->y_offset_ + rect->height_; ++j) {
665 assert(rect->y_offset_ + rect->height_ <= dst->height);
666 for (j = rect->y_offset_; j < rect->y_offset_ + rect->height_; ++j) {
692 for (j = rect->y_offset_; j < rect->y_offset_ + rect->height_; ++j) {
718 const int y_start = (rect->y_offset_ + block_size) & ~(block_size - 1);
719 const int y_end = (rect->y_offset_ + rect->height_) & ~(block_size - 1);
800 candidate->info_.y_offset = rect->y_offset_;