Searched defs:mv (Results 26 - 50 of 118) sorted by relevance

12345

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_scale.c36 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf) { argument
40 scaled_y(mv->row, sf) + y_off_q4,
41 scaled_x(mv->col, sf) + x_off_q4
H A Dvp9_mvref_common.c38 // if the size < 8x8 we get the mv from the bmi substructure,
68 ADD_MV_REF_LIST(candidate->mv[0]);
70 ADD_MV_REF_LIST(candidate->mv[1]);
74 // Check the last frame's mode and mv info.
77 ADD_MV_REF_LIST(prev_mbmi->mv[0]);
79 ADD_MV_REF_LIST(prev_mbmi->mv[1]);
92 // If the candidate is INTRA we don't want to consider its mv.
120 static void lower_mv_precision(MV *mv, int allow_hp) { argument
121 const int use_hp = allow_hp && vp9_use_mv_hp(mv);
123 if (mv
[all...]
H A Dvp9_entropymode.h73 nmv_context_counts mv; member in struct:__anon13110
H A Dvp9_entropymv.c17 // Integer pel reference mv threshold for use of high-precision 1/8 mv
153 d = (o >> 3); /* int mv data */
154 f = (o >> 1) & 3; /* fractional pel mv data */
155 e = (o & 1); /* high precision mv data */
171 void vp9_inc_mv(const MV *mv, nmv_context_counts *counts) { argument
173 const MV_JOINT_TYPE j = vp9_get_mv_joint(mv);
177 inc_mv_component(mv->row, &counts->comps[0], 1, 1);
181 inc_mv_component(mv->col, &counts->comps[1], 1, 1);
201 const nmv_context_counts *counts = &cm->counts.mv;
[all...]
H A Dvp9_entropymv.h98 static INLINE MV_JOINT_TYPE vp9_get_mv_joint(const MV *mv) { argument
99 if (mv->row == 0) {
100 return mv->col == 0 ? MV_JOINT_ZERO : MV_JOINT_HNZVZ;
102 return mv->col == 0 ? MV_JOINT_HZVNZ : MV_JOINT_HNZVNZ;
126 void vp9_inc_mv(const MV *mv, nmv_context_counts *mvctx);
H A Dvp9_mvref_common.h44 // adding 9 for each intra block, 3 for each zero mv and 1 for each new
128 static INLINE void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) { argument
129 clamp_mv(mv, xd->mb_to_left_edge - MV_BORDER,
135 // This function returns either the appropriate sub block or block's mv
142 : candidate->mbmi.mv[which_mv];
146 // Performs mv sign inversion if indicated by the reference frame combination.
150 int_mv mv = mbmi->mv[ref]; local
152 mv.as_mv.row *= -1;
153 mv
200 clamp_mv2(MV *mv, const MACROBLOCKD *xd) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_mcomp.h25 // Max full pel mv specified in the unit of full pixel
36 MV mv; member in struct:search_site
49 void vp9_set_mv_search_range(MACROBLOCK *x, const MV *mv);
50 int vp9_mv_bit_cost(const MV *mv, const MV *ref,
/external/libvpx/libvpx/vp8/common/
H A Dfindnearmv.h15 #include "mv.h"
37 static void vp8_clamp_mv2(int_mv *mv, const MACROBLOCKD *xd) argument
39 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN))
40 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN;
41 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN)
42 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN;
44 if (mv->as_mv.row < (xd->mb_to_top_edge - LEFT_TOP_MARGIN))
45 mv->as_mv.row = xd->mb_to_top_edge - LEFT_TOP_MARGIN;
46 else if (mv->as_mv.row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN)
47 mv
50 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
62 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/libvpx/libvpx/vp9/common/
H A Dvp9_scale.c44 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf) { argument
48 scaled_y(mv->row, sf) + y_off_q4,
49 scaled_x(mv->col, sf) + x_off_q4
H A Dvp9_entropymode.h73 nmv_context_counts mv; member in struct:__anon24902
H A Dvp9_entropymv.c17 // Integer pel reference mv threshold for use of high-precision 1/8 mv
153 d = (o >> 3); /* int mv data */
154 f = (o >> 1) & 3; /* fractional pel mv data */
155 e = (o & 1); /* high precision mv data */
171 void vp9_inc_mv(const MV *mv, nmv_context_counts *counts) { argument
173 const MV_JOINT_TYPE j = vp9_get_mv_joint(mv);
177 inc_mv_component(mv->row, &counts->comps[0], 1, 1);
181 inc_mv_component(mv->col, &counts->comps[1], 1, 1);
201 const nmv_context_counts *counts = &cm->counts.mv;
[all...]
H A Dvp9_entropymv.h98 static INLINE MV_JOINT_TYPE vp9_get_mv_joint(const MV *mv) { argument
99 if (mv->row == 0) {
100 return mv->col == 0 ? MV_JOINT_ZERO : MV_JOINT_HNZVZ;
102 return mv->col == 0 ? MV_JOINT_HZVNZ : MV_JOINT_HNZVNZ;
126 void vp9_inc_mv(const MV *mv, nmv_context_counts *mvctx);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
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_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/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DLocalVariablesSorter.java65 final MethodVisitor mv)
67 super(mv);
78 super(lvs.mv);
95 mv.visitVarInsn(opcode, remap(var, size));
99 mv.visitIincInsn(remap(var, 1), increment);
103 mv.visitMaxs(maxStack, state.nextLocal);
114 mv.visitLocalVariable(name, desc, signature, start, end, remap(index));
62 LocalVariablesSorter( final int access, final String desc, final MethodVisitor mv) argument
/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/libvpx/source/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/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/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/mockito/cglib-and-asm/src/org/mockito/asm/
H A DClassReader.java774 MethodVisitor mv = classVisitor.visitMethod(access,
780 if (mv != null) {
792 if (WRITER && mv instanceof MethodWriter) {
793 MethodWriter mw = (MethodWriter) mv;
829 AnnotationVisitor dv = mv.visitAnnotationDefault();
845 mv.visitAnnotation(readUTF8(w, c), j != 0));
851 readParameterAnnotations(mpanns, desc, c, true, mv);
854 readParameterAnnotations(impanns, desc, c, false, mv);
859 mv.visitAttribute(cattrs);
864 if (mv !
1471 readParameterAnnotations( int v, final String desc, final char[] buf, final boolean visible, final MethodVisitor mv) argument
[all...]

Completed in 374 milliseconds

12345