Searched defs:mv (Results 1 - 25 of 61) sorted by relevance

123

/external/libvpx/libvpx/vp8/decoder/
H A Dec_types.h46 MV mv; member in struct:__anon20612
H A Ddecodemv.c111 static void read_mv(vp8_reader *r, MV *mv, const MV_CONTEXT *mvc) argument
113 mv->row = (short)(read_mvcomponent(r, mvc) * 2);
114 mv->col = (short)(read_mvcomponent(r, ++mvc) * 2);
268 leftmv.as_int = left_mb->mbmi.mv.as_int;
270 leftmv.as_int = (left_mb->bmi + k + 4 - 1)->mv.as_int;
273 leftmv.as_int = (mi->bmi + k - 1)->mv.as_int;
279 abovemv.as_int = above_mb->mbmi.mv.as_int;
281 abovemv.as_int = (above_mb->bmi + k + 16 - 4)->mv.as_int;
284 abovemv.as_int = (mi->bmi + k - 4)->mv.as_int;
328 mi->bmi[ *fill_offset].mv
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_findnearmv.h29 // TODO(jingning): this mv clamping function should be block size dependent.
30 static void clamp_mv2(MV *mv, const MACROBLOCKD *xd) { argument
31 clamp_mv(mv, xd->mb_to_left_edge - LEFT_TOP_MARGIN,
H A Dvp9_mv.h33 static void clamp_mv(MV *mv, int min_col, int max_col, argument
35 mv->col = clamp(mv->col, min_col, max_col);
36 mv->row = clamp(mv->row, min_row, max_row);
H A Dvp9_findnearmv.c14 static void lower_mv_precision(MV *mv, int allow_hp) { argument
15 const int use_hp = allow_hp && vp9_use_mv_hp(mv);
17 if (mv->row & 1)
18 mv->row += (mv->row > 0 ? -1 : 1);
19 if (mv->col & 1)
20 mv->col += (mv->col > 0 ? -1 : 1);
H A Dvp9_scale.c28 static MV32 scaled_mv(const MV *mv, const struct scale_factors *scale) { argument
30 scaled_y(mv->row, scale->sfc) + scale->y_offset_q4,
31 scaled_x(mv->col, scale->sfc) + scale->x_offset_q4
36 static MV32 unscaled_mv(const MV *mv, const struct scale_factors *scale) { argument
38 mv->row,
39 mv->col
H A Dvp9_entropymv.c18 /* Integer pel reference mv threshold for use of high-precision 1/8 mv */
160 d = (o >> 3); /* int mv data */
161 f = (o >> 1) & 3; /* fractional pel mv data */
162 e = (o & 1); /* high precision mv data */
178 void vp9_inc_mv(const MV *mv, nmv_context_counts *counts) { argument
180 const MV_JOINT_TYPE j = vp9_get_mv_joint(mv);
184 inc_mv_component(mv->row, &counts->comps[0], 1, 1);
188 inc_mv_component(mv->col, &counts->comps[1], 1, 1);
208 const nmv_context_counts *counts = &cm->counts.mv;
[all...]
H A Dvp9_entropymv.h102 static INLINE MV_JOINT_TYPE vp9_get_mv_joint(const MV *mv) { argument
103 if (mv->row == 0) {
104 return mv->col == 0 ? MV_JOINT_ZERO : MV_JOINT_HNZVZ;
106 return mv->col == 0 ? MV_JOINT_HZVNZ : MV_JOINT_HNZVNZ;
130 void vp9_inc_mv(const MV *mv, nmv_context_counts *mvctx);
H A Dvp9_mvref_common.c29 // adding 9 for each intra block, 3 for each zero mv and 1 for each new
113 static void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) { argument
114 clamp_mv(mv, xd->mb_to_left_edge - MV_BORDER,
120 // This function returns either the appropriate sub block or block's mv
127 : candidate->mbmi.mv[which_mv];
131 // Performs mv sign inversion if indicated by the reference frame combination.
135 int_mv mv = mbmi->mv[ref]; local
137 mv.as_mv.row *= -1;
138 mv
173 is_inside(const TileInfo *const tile, int mi_col, int mi_row, int mi_rows, const MV *mv) argument
[all...]
H A Dvp9_reconinter.c45 const MV32 *mv,
50 const int subpel_x = mv->col & SUBPEL_MASK;
51 const int subpel_y = mv->row & SUBPEL_MASK;
53 src += (mv->row >> SUBPEL_BITS) * src_stride + (mv->col >> SUBPEL_BITS);
72 const MV32 mv = sfc->scale_mv(&mv_q4, scale); local
74 inter_predictor(src, src_stride, dst, dst_stride, &mv, scale,
94 // TODO(jkoleszar): yet another mv clamping function :-(
152 const MV mv = mi->mbmi.sb_type < BLOCK_8X8 local
155 : mi->mbmi.mv[re
43 inter_predictor(const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, const MV32 *mv, const struct scale_factors *scale, int w, int h, int ref, const struct subpix_fn_table *subpix, int xs, int ys) argument
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dexternal_policy_loader_unittest.cc128 MockExternalPolicyProviderVisitor mv; local
129 mv.Visit(forced_extensions, expected_extensions);
147 MockExternalPolicyProviderVisitor mv; local
148 mv.Visit(forced_extensions, expected_extensions);
/external/libvpx/libvpx/vp8/common/
H A Dfindnearmv.h15 #include "mv.h"
33 static void vp8_clamp_mv2(int_mv *mv, const MACROBLOCKD *xd) argument
35 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN))
36 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN;
37 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN)
38 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN;
40 if (mv->as_mv.row < (xd->mb_to_top_edge - LEFT_TOP_MARGIN))
41 mv->as_mv.row = xd->mb_to_top_edge - LEFT_TOP_MARGIN;
42 else if (mv->as_mv.row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN)
43 mv
46 vp8_clamp_mv(int_mv *mv, int mb_to_left_edge, int mb_to_right_edge, int mb_to_top_edge, int mb_to_bottom_edge) argument
58 vp8_check_mv_bounds(int_mv *mv, int mb_to_left_edge, int mb_to_right_edge, int mb_to_top_edge, int mb_to_bottom_edge) argument
[all...]
H A Dfindnearmv.c40 int_mv *mv = near_mvs; local
45 mv[0].as_int = mv[1].as_int = mv[2].as_int = 0;
51 if (above->mbmi.mv.as_int)
53 (++mv)->as_int = above->mbmi.mv.as_int;
54 mv_bias(ref_frame_sign_bias[above->mbmi.ref_frame], refframe, mv, ref_frame_sign_bias);
64 if (left->mbmi.mv.as_int)
68 this_mv.as_int = left->mbmi.mv
[all...]
H A Dreconinter.c131 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3);
133 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
135 sppf(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch);
154 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3);
156 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv
340 clamp_mv_to_umv_border(MV *mv, const MACROBLOCKD *xd) argument
363 clamp_uvmv_to_umv_border(MV *mv, const MACROBLOCKD *xd) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dexternal_policy_extension_loader_unittest.cc112 MockExternalPolicyExtensionProviderVisitor mv; local
114 mv.Visit(&forced_extensions, &forced_extensions, empty);
142 MockExternalPolicyExtensionProviderVisitor mv; local
144 mv.Visit(&forced_extensions, &valid_extensions, empty);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_vertex_buffers.h105 } mv[VL_MAX_REF_FRAMES]; member in struct:vl_vertex_buffer
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_vertex_buffers.h105 } mv[VL_MAX_REF_FRAMES]; member in struct:vl_vertex_buffer
/external/bison/djgpp/
H A Dconfig.bat184 if not errorlevel 1 mv -f %XSRC%/lib/inttypes_.h %XSRC%/lib/_inttypes.h
188 if not errorlevel 1 mv -f %XSRC%/po/Makefile.in.in %XSRC%/po/Makefile.in-in
190 if errorlevel 1 mv -f %XSRC%/po/Makefile.in %XSRC%/po/Makefile.in-in
192 if errorlevel 1 mv -f %XSRC%/po/Makefile.inin %XSRC%/po/Makefile.in-in
194 if errorlevel 1 mv -f %XSRC%/po/Makefile.in_in %XSRC%/po/Makefile.in-in
196 if errorlevel 1 mv -f %XSRC%/po/Makefile_in.in %XSRC%/po/Makefile.in-in
198 if not errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in.in %XSRC%/runtime-po/Makefile.in-in
200 if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in %XSRC%/runtime-po/Makefile.in-in
202 if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.inin %XSRC%/runtime-po/Makefile.in-in
204 if errorlevel 1 mv
363 :mv ./calcxx-parser.yy %XSRC%/examples/calcxx/calcxx-parser.yy label
369 :mv ./calcxx-scanner.ll %XSRC%/examples/calcxx/calcxx-scanner.ll label
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_shader_state.c314 uint8_t mv = out->mask, mf = in->mask, oid = out->hw; local
320 if (mv & 1)
328 oid += mv & 1;
330 mv >>= 1;
497 uint8_t oid = 0, mv = 0, mg = gp->in[i].mask; local
502 mv = vp->out[j].mask;
508 for (c = 0; c < 4; ++c, mv >>= 1, mg >>= 1) {
509 if (mg & mv & 1)
514 oid += mv & 1;
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGpuGL_program.cpp229 GrGLfloat mv[] = { local
252 GL_CALL(LoadMatrixf(mv));
/external/libvpx/libvpx/vp8/encoder/
H A Dencodemv.c68 void vp8_encode_motion_vector(vp8_writer *w, const MV *mv, const MV_CONTEXT *mvc) argument
73 if (abs(mv->row >> 1) > max_mv_r)
76 max_mv_r = abs(mv->row >> 1);
77 fprintf(f, "New Mv Row Max %6d\n", (mv->row >> 1));
79 if ((abs(mv->row) / 2) != max_mv_r)
80 fprintf(f, "MV Row conversion error %6d\n", abs(mv->row) / 2);
85 if (abs(mv->col >> 1) > max_mv_c)
88 fprintf(f, "New Mv Col Max %6d\n", (mv->col >> 1));
89 max_mv_c = abs(mv->col >> 1);
95 encode_mvcomponent(w, mv
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_shader_state.c314 uint8_t mv = out->mask, mf = in->mask, oid = out->hw; local
320 if (mv & 1)
328 oid += mv & 1;
330 mv >>= 1;
497 uint8_t oid = 0, mv = 0, mg = gp->in[i].mask; local
502 mv = vp->out[j].mask;
508 for (c = 0; c < 4; ++c, mv >>= 1, mg >>= 1) {
509 if (mg & mv & 1)
514 oid += mv & 1;
/external/skia/src/gpu/gl/
H A DGrGpuGL_program.cpp229 GrGLfloat mv[] = { local
252 GL_CALL(LoadMatrixf(mv));
/external/chromium/chrome/browser/history/
H A Dtop_sites_unittest.cc389 MostVisitedURL mv; local
390 mv.url = url;
391 mv.redirects.push_back(url);
392 list->push_back(mv);
400 MostVisitedURL mv; local
401 mv.url = redirect_dest;
402 mv.redirects.push_back(redirect_source);
403 mv.redirects.push_back(redirect_dest);
404 list->push_back(mv);
484 MostVisitedURL mv; local
1109 MostVisitedURL mv; local
[all...]
/external/chromium_org/chrome/browser/history/
H A Dtop_sites_impl_unittest.cc406 MostVisitedURL mv; local
407 mv.url = url;
408 mv.redirects.push_back(url);
409 list->push_back(mv);
417 MostVisitedURL mv; local
418 mv.url = redirect_dest;
419 mv.redirects.push_back(redirect_source);
420 mv.redirects.push_back(redirect_dest);
421 list->push_back(mv);
501 MostVisitedURL mv; local
1074 MostVisitedURL mv; local
[all...]

Completed in 760 milliseconds

123