HomeSort by relevance Sort by last modified time
    Searched defs:pre_stride (Results 1 - 8 of 8) sorted by null

  /external/libaom/libaom/test/
obmc_sad_test.cc 31 typedef unsigned int (*ObmcSadF)(const uint8_t *pre, int pre_stride,
47 const int pre_stride = rng_(MAX_SB_SIZE + 1); local
55 const unsigned int ref_res = params_.ref_func(pre, pre_stride, wsrc, mask);
58 params_.tst_func(pre, pre_stride, wsrc, mask));
70 const int pre_stride = iter; local
78 const unsigned int ref_res = params_.ref_func(pre, pre_stride, wsrc, mask);
81 params_.tst_func(pre, pre_stride, wsrc, mask));
146 const int pre_stride = rng_(MAX_SB_SIZE + 1); local
155 params_.ref_func(CONVERT_TO_BYTEPTR(pre), pre_stride, wsrc, mask);
159 params_.tst_func(CONVERT_TO_BYTEPTR(pre), pre_stride, wsrc, mask))
171 const int pre_stride = iter; local
    [all...]
obmc_variance_test.cc 33 typedef unsigned int (*ObmcVarF)(const uint8_t *pre, int pre_stride,
50 const int pre_stride = this->rng_(MAX_SB_SIZE + 1); local
60 params_.ref_func(pre, pre_stride, wsrc, mask, &ref_sse);
63 tst_res = params_.tst_func(pre, pre_stride, wsrc, mask, &tst_sse));
76 const int pre_stride = iter; local
86 params_.ref_func(pre, pre_stride, wsrc, mask, &ref_sse);
89 tst_res = params_.tst_func(pre, pre_stride, wsrc, mask, &tst_sse));
101 const int pre_stride = this->rng_(MAX_SB_SIZE + 1); local
115 params_.ref_func(pre, pre_stride, wsrc, mask, &ref_sse);
123 params_.tst_func(pre, pre_stride, wsrc, mask, &tst_sse)
193 const int pre_stride = this->rng_(MAX_SB_SIZE + 1); local
221 const int pre_stride = iter; local
    [all...]
  /external/libvpx/libvpx/vp8/common/
reconinter.c 60 int pre_stride, vp8_subpix_fn_t sppf) {
64 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride +
68 sppf(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7,
77 ptr += pre_stride;
84 unsigned char *base_pre, int pre_stride) {
86 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride +
90 x->subpixel_predict8x8(ptr, pre_stride, d->bmi.mv.as_mv.col & 7,
93 vp8_copy_mem8x8(ptr, pre_stride, dst, dst_stride);
99 unsigned char *base_pre, int pre_stride) {
101 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride
144 int pre_stride = x->pre.uv_stride; local
172 int pre_stride = x->pre.uv_stride; local
244 int pre_stride = x->pre.y_stride; local
308 int pre_stride = x->pre.y_stride; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
temporal_filter.c 133 int pre_stride = x->e_mbd.pre.y_stride; local
182 x->e_mbd.pre.y_stride = pre_stride;
mcomp.c 251 int pre_stride = x->e_mbd.pre.y_stride; local
256 unsigned char *y_0 = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride +
274 vfp->copymem(y_0 - buf_c1 - pre_stride * buf_r1, pre_stride, xd->y_buf,
278 unsigned char *y = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride +
280 y_stride = pre_stride;
380 int pre_stride = x->e_mbd.pre.y_stride; local
385 unsigned char *y_0 = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride +
391 vfp->copymem(y_0 - 1 - pre_stride, pre_stride, xd->y_buf, y_stride, 18)
676 int pre_stride = x->e_mbd.pre.y_stride; local
849 int pre_stride = x->e_mbd.pre.y_stride; local
1029 int pre_stride = x->e_mbd.pre.y_stride; local
1142 int pre_stride = x->e_mbd.pre.y_stride; local
1290 int pre_stride = x->e_mbd.pre.y_stride; local
1377 int pre_stride = x->e_mbd.pre.y_stride; local
1497 int pre_stride = x->e_mbd.pre.y_stride; local
1647 int pre_stride = x->e_mbd.pre.y_stride; local
1726 int pre_stride = x->e_mbd.pre.y_stride; local
    [all...]
pickinter.c 149 int pre_stride = mb->e_mbd.pre.y_stride; local
151 int in_what_stride = pre_stride;
155 in_what += (this_mv.as_mv.row >> 3) * pre_stride + (this_mv.as_mv.col >> 3);
    [all...]
rdopt.c 382 int pre_stride = x->e_mbd.pre.uv_stride; local
399 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3);
404 vpx_sub_pixel_variance8x8(uptr, pre_stride, mv_col & 7, mv_row & 7,
406 vpx_sub_pixel_variance8x8(vptr, pre_stride, mv_col & 7, mv_row & 7,
410 vpx_variance8x8(uptr, pre_stride, upred_ptr, uv_stride, &sse2);
411 vpx_variance8x8(vptr, pre_stride, vpred_ptr, uv_stride, &sse1);
900 int pre_stride = x->e_mbd.pre.y_stride; local
908 vp8_build_inter_predictors_b(bd, 16, base_pre, pre_stride,
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_pickmode.c 1548 const int pre_stride = xd->plane[0].pre[0].stride; local
2163 const int pre_stride = xd->plane[0].pre[0].stride; local
    [all...]

Completed in 255 milliseconds