Lines Matching refs:as_mv
145 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) in vp8_build_inter_predictors_b()
147 … ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors_b()
148 sppf(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch); in vp8_build_inter_predictors_b()
152 … ptr_base += d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors_b()
178 … ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors4b()
180 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) in vp8_build_inter_predictors4b()
182 …x->subpixel_predict8x8(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_… in vp8_build_inter_predictors4b()
197 … ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors2b()
199 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) in vp8_build_inter_predictors2b()
201 …x->subpixel_predict8x4(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_… in vp8_build_inter_predictors2b()
221 int mv_row = x->block[16].bmi.mv.as_mv.row; in vp8_build_inter_predictors_mbuv()
222 int mv_col = x->block[16].bmi.mv.as_mv.col; in vp8_build_inter_predictors_mbuv()
269 int mv_row = x->mode_info_context->mbmi.mv.as_mv.row; in vp8_build_inter_predictors_mby()
270 int mv_col = x->mode_info_context->mbmi.mv.as_mv.col; in vp8_build_inter_predictors_mby()
332 int mv_row = x->mode_info_context->mbmi.mv.as_mv.row; in vp8_build_inter_predictors_mb()
333 int mv_col = x->mode_info_context->mbmi.mv.as_mv.col; in vp8_build_inter_predictors_mb()
348 mv_row = x->block[16].bmi.mv.as_mv.row; in vp8_build_inter_predictors_mb()
349 mv_col = x->block[16].bmi.mv.as_mv.col; in vp8_build_inter_predictors_mb()
431 temp = x->block[yoffset ].bmi.mv.as_mv.row in vp8_build_uvmvs()
432 + x->block[yoffset+1].bmi.mv.as_mv.row in vp8_build_uvmvs()
433 + x->block[yoffset+4].bmi.mv.as_mv.row in vp8_build_uvmvs()
434 + x->block[yoffset+5].bmi.mv.as_mv.row; in vp8_build_uvmvs()
439 x->block[uoffset].bmi.mv.as_mv.row = temp / 8; in vp8_build_uvmvs()
442 x->block[uoffset].bmi.mv.as_mv.row = (temp / 8) & 0xfffffff8; in vp8_build_uvmvs()
444 temp = x->block[yoffset ].bmi.mv.as_mv.col in vp8_build_uvmvs()
445 + x->block[yoffset+1].bmi.mv.as_mv.col in vp8_build_uvmvs()
446 + x->block[yoffset+4].bmi.mv.as_mv.col in vp8_build_uvmvs()
447 + x->block[yoffset+5].bmi.mv.as_mv.col; in vp8_build_uvmvs()
452 x->block[uoffset].bmi.mv.as_mv.col = temp / 8; in vp8_build_uvmvs()
455 x->block[uoffset].bmi.mv.as_mv.col = (temp / 8) & 0xfffffff8; in vp8_build_uvmvs()
457 x->block[voffset].bmi.mv.as_mv.row = x->block[uoffset].bmi.mv.as_mv.row ; in vp8_build_uvmvs()
458 x->block[voffset].bmi.mv.as_mv.col = x->block[uoffset].bmi.mv.as_mv.col ; in vp8_build_uvmvs()
464 int mvrow = x->mode_info_context->mbmi.mv.as_mv.row; in vp8_build_uvmvs()
465 int mvcol = x->mode_info_context->mbmi.mv.as_mv.col; in vp8_build_uvmvs()
482 x->block[ 16 + i].bmi.mv.as_mv.row = mvrow; in vp8_build_uvmvs()
483 x->block[ 16 + i].bmi.mv.as_mv.col = mvcol; in vp8_build_uvmvs()
487 x->block[ 16 + i].bmi.mv.as_mv.row = mvrow & 0xfffffff8; in vp8_build_uvmvs()
488 x->block[ 16 + i].bmi.mv.as_mv.col = mvcol & 0xfffffff8; in vp8_build_uvmvs()
510 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) in vp8_build_inter_predictors_b_s()
512 … ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors_b_s()
513 … sppf(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst_ptr, dst_stride); in vp8_build_inter_predictors_b_s()
517 … ptr_base += d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors_b_s()
557 int mv_row = x->mode_info_context->mbmi.mv.as_mv.row; in vp8_build_inter_predictors_mb_s()
558 int mv_col = x->mode_info_context->mbmi.mv.as_mv.col; in vp8_build_inter_predictors_mb_s()
573 mv_row = x->block[16].bmi.mv.as_mv.row; in vp8_build_inter_predictors_mb_s()
574 mv_col = x->block[16].bmi.mv.as_mv.col; in vp8_build_inter_predictors_mb_s()
611 … ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors_mb_s()
613 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) in vp8_build_inter_predictors_mb_s()
615 …x->subpixel_predict8x8(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst_p… in vp8_build_inter_predictors_mb_s()
639 …ptr = ptr_base + d0->pre + (d0->bmi.mv.as_mv.row >> 3) * d0->pre_stride + (d0->bmi.mv.as_mv.col >>… in vp8_build_inter_predictors_mb_s()
641 if (d0->bmi.mv.as_mv.row & 7 || d0->bmi.mv.as_mv.col & 7) in vp8_build_inter_predictors_mb_s()
643 …x->subpixel_predict8x4(ptr, d0->pre_stride, d0->bmi.mv.as_mv.col & 7, d0->bmi.mv.as_mv.row & 7, ds… in vp8_build_inter_predictors_mb_s()
671 …ptr = ptr_base + d0->pre + (d0->bmi.mv.as_mv.row >> 3) * d0->pre_stride + (d0->bmi.mv.as_mv.col >>… in vp8_build_inter_predictors_mb_s()
673 if (d0->bmi.mv.as_mv.row & 7 || d0->bmi.mv.as_mv.col & 7) in vp8_build_inter_predictors_mb_s()
676 d0->bmi.mv.as_mv.col & 7, in vp8_build_inter_predictors_mb_s()
677 d0->bmi.mv.as_mv.row & 7, in vp8_build_inter_predictors_mb_s()