Lines Matching refs:mv_col
222 int mv_col = x->block[16].bmi.mv.as_mv.col;
226 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3);
230 if ((mv_row | mv_col) & 7)
232 x->subpixel_predict8x8(uptr, pre_stride, mv_col & 7, mv_row & 7, upred_ptr, 8);
233 x->subpixel_predict8x8(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, 8);
270 int mv_col = x->mode_info_context->mbmi.mv.as_mv.col;
274 ptr = ptr_base + (mv_row >> 3) * pre_stride + (mv_col >> 3);
276 if ((mv_row | mv_col) & 7)
278 x->subpixel_predict16x16(ptr, pre_stride, mv_col & 7, mv_row & 7, pred_ptr, 16);
333 int mv_col = x->mode_info_context->mbmi.mv.as_mv.col;
337 ptr = ptr_base + (mv_row >> 3) * pre_stride + (mv_col >> 3);
339 if ((mv_row | mv_col) & 7)
341 x->subpixel_predict16x16(ptr, pre_stride, mv_col & 7, mv_row & 7, pred_ptr, 16);
349 mv_col = x->block[16].bmi.mv.as_mv.col;
351 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3);
355 if ((mv_row | mv_col) & 7)
357 x->subpixel_predict8x8(uptr, pre_stride, mv_col & 7, mv_row & 7, upred_ptr, 8);
358 x->subpixel_predict8x8(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, 8);
558 int mv_col = x->mode_info_context->mbmi.mv.as_mv.col;
562 ptr = ptr_base + (mv_row >> 3) * pre_stride + (mv_col >> 3);
564 if ((mv_row | mv_col) & 7)
566 x->subpixel_predict16x16(ptr, pre_stride, mv_col & 7, mv_row & 7, dst_ptr, x->dst.y_stride); /*x->block[0].dst_stride);*/
574 mv_col = x->block[16].bmi.mv.as_mv.col;
576 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3);
580 if ((mv_row | mv_col) & 7)
582 x->subpixel_predict8x8(uptr, pre_stride, mv_col & 7, mv_row & 7, udst_ptr, x->dst.uv_stride);
583 x->subpixel_predict8x8(vptr, pre_stride, mv_col & 7, mv_row & 7, vdst_ptr, x->dst.uv_stride);