Home
last modified time | relevance | path

Searched refs:mv (Results 1 – 25 of 563) sorted by relevance

12345678910>>...23

/external/mockito/cglib-and-asm/src/org/mockito/asm/
DMethodAdapter.java45 protected MethodVisitor mv; field in MethodAdapter
52 public MethodAdapter(final MethodVisitor mv) { in MethodAdapter() argument
53 this.mv = mv; in MethodAdapter()
57 return mv.visitAnnotationDefault(); in visitAnnotationDefault()
64 return mv.visitAnnotation(desc, visible); in visitAnnotation()
72 return mv.visitParameterAnnotation(parameter, desc, visible); in visitParameterAnnotation()
76 mv.visitAttribute(attr); in visitAttribute()
80 mv.visitCode(); in visitCode()
90 mv.visitFrame(type, nLocal, local, nStack, stack); in visitFrame()
94 mv.visitInsn(opcode); in visitInsn()
[all …]
DClassReader.java774 MethodVisitor mv = classVisitor.visitMethod(access, in accept() local
780 if (mv != null) { in accept()
792 if (WRITER && mv instanceof MethodWriter) { in accept()
793 MethodWriter mw = (MethodWriter) mv; in accept()
829 AnnotationVisitor dv = mv.visitAnnotationDefault(); in accept()
845 mv.visitAnnotation(readUTF8(w, c), j != 0)); in accept()
851 readParameterAnnotations(mpanns, desc, c, true, mv); in accept()
854 readParameterAnnotations(impanns, desc, c, false, mv); in accept()
859 mv.visitAttribute(cattrs); in accept()
864 if (mv != null && v != 0) { in accept()
[all …]
/external/libvpx/libvpx/vp8/common/
Dfindnearmv.h37 static void vp8_clamp_mv2(int_mv *mv, const MACROBLOCKD *xd) in vp8_clamp_mv2() argument
39 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN)) in vp8_clamp_mv2()
40 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN; in vp8_clamp_mv2()
41 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN) in vp8_clamp_mv2()
42 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN; in vp8_clamp_mv2()
44 if (mv->as_mv.row < (xd->mb_to_top_edge - LEFT_TOP_MARGIN)) in vp8_clamp_mv2()
45 mv->as_mv.row = xd->mb_to_top_edge - LEFT_TOP_MARGIN; in vp8_clamp_mv2()
46 else if (mv->as_mv.row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN) in vp8_clamp_mv2()
47 mv->as_mv.row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN; in vp8_clamp_mv2()
50 static void vp8_clamp_mv(int_mv *mv, int mb_to_left_edge, int mb_to_right_edge, in vp8_clamp_mv() argument
[all …]
Dreconinter.c131 … ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors_b()
133 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) in vp8_build_inter_predictors_b()
135 sppf(ptr, 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()
154 … ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3); in build_inter_predictors4b()
156 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) in build_inter_predictors4b()
158 …x->subpixel_predict8x8(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst… in build_inter_predictors4b()
169 … ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3); in build_inter_predictors2b()
171 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) in build_inter_predictors2b()
173 …x->subpixel_predict8x4(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst… in build_inter_predictors2b()
185 … ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3); in build_inter_predictors_b()
[all …]
Dfindnearmv.c40 int_mv *mv = near_mvs; in vp8_find_near_mvs() local
45 mv[0].as_int = mv[1].as_int = mv[2].as_int = 0; in vp8_find_near_mvs()
51 if (above->mbmi.mv.as_int) in vp8_find_near_mvs()
53 (++mv)->as_int = above->mbmi.mv.as_int; in vp8_find_near_mvs()
54 mv_bias(ref_frame_sign_bias[above->mbmi.ref_frame], refframe, mv, ref_frame_sign_bias); in vp8_find_near_mvs()
64 if (left->mbmi.mv.as_int) in vp8_find_near_mvs()
68 this_mv.as_int = left->mbmi.mv.as_int; in vp8_find_near_mvs()
71 if (this_mv.as_int != mv->as_int) in vp8_find_near_mvs()
73 (++mv)->as_int = this_mv.as_int; in vp8_find_near_mvs()
86 if (aboveleft->mbmi.mv.as_int) in vp8_find_near_mvs()
[all …]
/external/mockito/cglib-and-asm/src/org/mockito/asm/util/
DTraceMethodVisitor.java57 protected MethodVisitor mv; field in TraceMethodVisitor
92 public TraceMethodVisitor(final MethodVisitor mv) { in TraceMethodVisitor() argument
94 this.mv = mv; in TraceMethodVisitor()
106 if (mv != null) { in visitAnnotation()
107 ((TraceAnnotationVisitor) av).av = mv.visitAnnotation(desc, visible); in visitAnnotation()
124 if (mv != null) { in visitAttribute()
125 mv.visitAttribute(attr); in visitAttribute()
134 if (mv != null) { in visitAnnotationDefault()
135 tav.av = mv.visitAnnotationDefault(); in visitAnnotationDefault()
155 if (mv != null) { in visitParameterAnnotation()
[all …]
DCheckMethodAdapter.java322 return new CheckAnnotationAdapter(mv.visitAnnotation(desc, visible)); in visitAnnotation()
327 return new CheckAnnotationAdapter(mv.visitAnnotationDefault(), false); in visitAnnotationDefault()
337 return new CheckAnnotationAdapter(mv.visitParameterAnnotation(parameter, in visitParameterAnnotation()
347 mv.visitAttribute(attr); in visitAttribute()
352 mv.visitCode(); in visitCode()
415 mv.visitFrame(type, nLocal, local, nStack, stack); in visitFrame()
422 mv.visitInsn(opcode); in visitInsn()
443 mv.visitIntInsn(opcode, operand); in visitIntInsn()
451 mv.visitVarInsn(opcode, var); in visitVarInsn()
463 mv.visitTypeInsn(opcode, type); in visitTypeInsn()
[all …]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DCodeEmitter.java106 … CodeEmitter(ClassEmitter ce, MethodVisitor mv, int access, Signature sig, Type[] exceptionTypes) { in CodeEmitter() argument
107 super(access, sig.getDescriptor(), mv); in CodeEmitter()
150 mv.visitTryCatchBlock(block.getStart(), in catch_exception()
156 public void goTo(Label label) { mv.visitJumpInsn(Constants.GOTO, label); } in goTo()
157 public void ifnull(Label label) { mv.visitJumpInsn(Constants.IFNULL, label); } in ifnull()
158 public void ifnonnull(Label label) { mv.visitJumpInsn(Constants.IFNONNULL, label); } in ifnonnull()
161 mv.visitJumpInsn(mode, label); in if_jump()
177 mv.visitInsn(Constants.LCMP); in if_cmp()
180 mv.visitInsn(Constants.DCMPG); in if_cmp()
183 mv.visitInsn(Constants.FCMPG); in if_cmp()
[all …]
DLocalVariablesSorter.java65 final MethodVisitor mv) in LocalVariablesSorter() argument
67 super(mv); in LocalVariablesSorter()
78 super(lvs.mv); in LocalVariablesSorter()
95 mv.visitVarInsn(opcode, remap(var, size)); in visitVarInsn()
99 mv.visitIincInsn(remap(var, 1), increment); in visitIincInsn()
103 mv.visitMaxs(maxStack, state.nextLocal); in visitMaxs()
114 mv.visitLocalVariable(name, desc, signature, start, end, remap(index)); in visitLocalVariable()
/external/libhevc/decoder/
Dihevcd_mv_merge.c100 ps_mv_1 = &ps_pu_1->mv; in ihevcd_compare_pu_t()
101 ps_mv_2 = &ps_pu_2->mv; in ihevcd_compare_pu_t()
233 as_mv_col[0] = ps_col_pu->mv.s_l1_mv; in ihevcd_collocated_mvp()
234 au4_ref_idx_col[0] = ps_col_pu->mv.i1_l1_ref_idx; in ihevcd_collocated_mvp()
237 as_mv_col[1] = ps_col_pu->mv.s_l1_mv; in ihevcd_collocated_mvp()
238 au4_ref_idx_col[1] = ps_col_pu->mv.i1_l1_ref_idx; in ihevcd_collocated_mvp()
245 as_mv_col[0] = ps_col_pu->mv.s_l0_mv; in ihevcd_collocated_mvp()
246 au4_ref_idx_col[0] = ps_col_pu->mv.i1_l0_ref_idx; in ihevcd_collocated_mvp()
249 as_mv_col[1] = ps_col_pu->mv.s_l0_mv; in ihevcd_collocated_mvp()
250 au4_ref_idx_col[1] = ps_col_pu->mv.i1_l0_ref_idx; in ihevcd_collocated_mvp()
[all …]
Dihevcd_inter_pred.c233 …ps_pic_buf_l0 = (pic_buf_t *)((ps_slice_hdr->as_ref_pic_list0[ps_pu->mv.i1_l0_ref_idx].pv_pic_buf)… in ihevcd_inter_pred_ctb()
238 luma_weight_l0 = ps_slice_hdr->s_wt_ofst.i2_luma_weight_l0[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
239 … chroma_weight_l0_cb = ps_slice_hdr->s_wt_ofst.i2_chroma_weight_l0_cb[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
240 … chroma_weight_l0_cr = ps_slice_hdr->s_wt_ofst.i2_chroma_weight_l0_cr[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
242 luma_offset_l0 = ps_slice_hdr->s_wt_ofst.i2_luma_offset_l0[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
243 … chroma_offset_l0_cb = ps_slice_hdr->s_wt_ofst.i2_chroma_offset_l0_cb[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
244 … chroma_offset_l0_cr = ps_slice_hdr->s_wt_ofst.i2_chroma_offset_l0_cr[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
250 …ps_pic_buf_l1 = (pic_buf_t *)((ps_slice_hdr->as_ref_pic_list1[ps_pu->mv.i1_l1_ref_idx].pv_pic_buf)… in ihevcd_inter_pred_ctb()
254 luma_weight_l1 = ps_slice_hdr->s_wt_ofst.i2_luma_weight_l1[ps_pu->mv.i1_l1_ref_idx]; in ihevcd_inter_pred_ctb()
255 … chroma_weight_l1_cb = ps_slice_hdr->s_wt_ofst.i2_chroma_weight_l1_cb[ps_pu->mv.i1_l1_ref_idx]; in ihevcd_inter_pred_ctb()
[all …]
/external/libvpx/libvpx/vp9/common/
Dvp9_mvref_common.h128 static INLINE void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) { in clamp_mv_ref() argument
129 clamp_mv(mv, xd->mb_to_left_edge - MV_BORDER, in clamp_mv_ref()
142 : candidate->mbmi.mv[which_mv]; in get_sub_block_mv()
150 int_mv mv = mbmi->mv[ref]; in scale_mv() local
152 mv.as_mv.row *= -1; in scale_mv()
153 mv.as_mv.col *= -1; in scale_mv()
155 return mv; in scale_mv()
161 #define ADD_MV_REF_LIST(mv) \ argument
164 if ((mv).as_int != mv_ref_list[0].as_int) { \
165 mv_ref_list[refmv_count] = (mv); \
[all …]
Dvp9_mv.h22 typedef struct mv { struct
37 static INLINE void clamp_mv(MV *mv, int min_col, int max_col, in clamp_mv() argument
39 mv->col = clamp(mv->col, min_col, max_col); in clamp_mv()
40 mv->row = clamp(mv->row, min_row, max_row); in clamp_mv()
Dvp9_mvref_common.c68 ADD_MV_REF_LIST(candidate->mv[0]); in find_mv_refs_idx()
70 ADD_MV_REF_LIST(candidate->mv[1]); in find_mv_refs_idx()
77 ADD_MV_REF_LIST(prev_mbmi->mv[0]); in find_mv_refs_idx()
79 ADD_MV_REF_LIST(prev_mbmi->mv[1]); in find_mv_refs_idx()
120 static void lower_mv_precision(MV *mv, int allow_hp) { in lower_mv_precision() argument
121 const int use_hp = allow_hp && vp9_use_mv_hp(mv); in lower_mv_precision()
123 if (mv->row & 1) in lower_mv_precision()
124 mv->row += (mv->row > 0 ? -1 : 1); in lower_mv_precision()
125 if (mv->col & 1) in lower_mv_precision()
126 mv->col += (mv->col > 0 ? -1 : 1); in lower_mv_precision()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
DClassLoaderLocalMap.java157 MethodVisitor mv; in buildHolderByteCode() local
170 mv = cw.visitMethod(ACC_STATIC, "<clinit>", "()V", null, null); in buildHolderByteCode()
171 mv.visitCode(); in buildHolderByteCode()
172 mv.visitTypeInsn(NEW, "java/util/WeakHashMap"); in buildHolderByteCode()
173 mv.visitInsn(DUP); in buildHolderByteCode()
174 mv.visitMethodInsn(INVOKESPECIAL, "java/util/WeakHashMap", "<init>", "()V"); in buildHolderByteCode()
175 mv.visitFieldInsn(PUTSTATIC, holderClassName, "localMap", "Ljava/util/Map;"); in buildHolderByteCode()
176 mv.visitInsn(RETURN); in buildHolderByteCode()
177 mv.visitMaxs(2, 0); in buildHolderByteCode()
178 mv.visitEnd(); in buildHolderByteCode()
[all …]
/external/libvpx/libvpx/vp8/decoder/
Ddecodemv.c111 static void read_mv(vp8_reader *r, MV *mv, const MV_CONTEXT *mvc) in read_mv() argument
113 mv->row = (short)(read_mvcomponent(r, mvc) * 2); in read_mv()
114 mv->col = (short)(read_mvcomponent(r, ++mvc) * 2); in read_mv()
268 leftmv.as_int = left_mb->mbmi.mv.as_int; in decode_split_mv()
270 leftmv.as_int = (left_mb->bmi + k + 4 - 1)->mv.as_int; in decode_split_mv()
273 leftmv.as_int = (mi->bmi + k - 1)->mv.as_int; in decode_split_mv()
279 abovemv.as_int = above_mb->mbmi.mv.as_int; in decode_split_mv()
281 abovemv.as_int = (above_mb->bmi + k + 16 - 4)->mv.as_int; in decode_split_mv()
284 abovemv.as_int = (mi->bmi + k - 4)->mv.as_int; in decode_split_mv()
328 mi->bmi[ *fill_offset].mv.as_int = blockmv.as_int; in decode_split_mv()
[all …]
Derror_concealment.c187 new_row = row - bmi->mv.as_mv.row; in vp8_calculate_overlaps()
188 new_col = col - bmi->mv.as_mv.col; in vp8_calculate_overlaps()
254 bmi->mv.as_int = 0; in estimate_mv()
259 col_acc += overlaps[i].overlap * overlaps[i].bmi->mv.as_mv.col; in estimate_mv()
260 row_acc += overlaps[i].overlap * overlaps[i].bmi->mv.as_mv.row; in estimate_mv()
266 bmi->mv.as_mv.col = col_acc / overlap_sum; in estimate_mv()
267 bmi->mv.as_mv.row = row_acc / overlap_sum; in estimate_mv()
271 bmi->mv.as_mv.col = 0; in estimate_mv()
272 bmi->mv.as_mv.row = 0; in estimate_mv()
288 MV * const filtered_mv = &(mi->mbmi.mv.as_mv); in estimate_mb_mvs()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.c27 const MV *mv) { in get_buf_from_mv() argument
28 return &buf->buf[mv->row * buf->stride + mv->col]; in get_buf_from_mv()
31 void vp9_set_mv_search_range(MACROBLOCK *x, const MV *mv) { in vp9_set_mv_search_range() argument
32 int col_min = (mv->col >> 3) - MAX_FULL_PEL_VAL + (mv->col & 7 ? 1 : 0); in vp9_set_mv_search_range()
33 int row_min = (mv->row >> 3) - MAX_FULL_PEL_VAL + (mv->row & 7 ? 1 : 0); in vp9_set_mv_search_range()
34 int col_max = (mv->col >> 3) + MAX_FULL_PEL_VAL; in vp9_set_mv_search_range()
35 int row_max = (mv->row >> 3) + MAX_FULL_PEL_VAL; in vp9_set_mv_search_range()
66 static INLINE int mv_cost(const MV *mv, in mv_cost() argument
68 return joint_cost[vp9_get_mv_joint(mv)] + in mv_cost()
69 comp_cost[0][mv->row] + comp_cost[1][mv->col]; in mv_cost()
[all …]
Dvp9_speed_features.c72 sf->mv.auto_mv_step_size = 1; in set_good_speed_feature()
74 sf->mv.subpel_iters_per_step = 1; in set_good_speed_feature()
149 sf->mv.search_method = HEX; in set_good_speed_feature()
158 sf->mv.reduce_first_step_size = 1; in set_good_speed_feature()
186 sf->mv.auto_mv_step_size = 1; in set_rt_speed_feature()
225 sf->mv.subpel_iters_per_step = 1; in set_rt_speed_feature()
244 sf->mv.subpel_force_stop = 1; in set_rt_speed_feature()
251 sf->mv.search_method = FAST_HEX; in set_rt_speed_feature()
298 sf->mv.reduce_first_step_size = 1; in set_rt_speed_feature()
301 sf->mv.search_method = FAST_DIAMOND; in set_rt_speed_feature()
[all …]
/external/bison/djgpp/
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 -f %XSRC%/runtime-po/Makefile.in_in %XSRC%/runtime-po/Makefile.in-in
[all …]
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
DMethodNode.java406 MethodVisitor mv = cv.visitMethod(access,
411 if (mv != null) {
412 accept(mv);
421 public void accept(final MethodVisitor mv) {
425 AnnotationVisitor av = mv.visitAnnotationDefault();
434 an.accept(mv.visitAnnotation(an.desc, true));
439 an.accept(mv.visitAnnotation(an.desc, false));
451 an.accept(mv.visitParameterAnnotation(i, an.desc, true));
464 an.accept(mv.visitParameterAnnotation(i, an.desc, false));
469 mv.visitAttribute((Attribute) attrs.get(i));
[all …]
/external/javassist/src/main/javassist/bytecode/annotation/
DAnnotationImpl.java144 MemberValue mv = annotation.getMemberValue(name); in invoke()
145 if (mv == null) in invoke()
148 return mv.getValue(classLoader, pool, method); in invoke()
165 MemberValue mv = ainfo.getDefaultValue(); in getDefault() local
166 return mv.getValue(classLoader, pool, method); in getDefault()
196 MemberValue mv = annotation.getMemberValue(name); in hashCode() local
199 if (mv != null) in hashCode()
200 value = mv.getValue(classLoader, pool, methods[i]); in hashCode()
255 MemberValue mv = annotation.getMemberValue(name); in checkEquals() local
259 if (mv != null) in checkEquals()
[all …]
/external/libvncserver/
Dprepare_x11vnc_dist.sh7 mv configure.ac configure.ac.LibVNCServer
21 mv Makefile.am Makefile.am.LibVNCServer
43 mv README README.LibVNCServer
89 mv libvncserver/Makefile.am libvncserver/Makefile.am.LibVNCServer
98 mv libvncclient/Makefile.am libvncclient/Makefile.am.LibVNCServer
107 mv x11vnc/Makefile.am x11vnc/Makefile.am.LibVNCServer
129 mv acinclude.m4 acinclude.m4.LibVNCServer
137 mv -f $f.LibVNCServer $f
/external/vboot_reference/scripts/keygeneration/
Dcommon.sh157 mv --no-clobber kernel.{keyblock,"v$2.v$1.keyblock"}
170 mv --no-clobber kernel_subkey.{vbprivk,"v${subkey_ver}.vbprivk"}
171 mv --no-clobber kernel_subkey.{vbpubk,"v${subkey_ver}.vbpubk"}
185 mv --no-clobber kernel_data_key.{vbprivk,"v${datakey_ver}.vbprivk"}
186 mv --no-clobber kernel_data_key.{vbpubk,"v${datakey_ver}.vbpubk"}
198 mv --no-clobber firmware_data_key.{vbprivk,"v${subkey_ver}.vbprivk"}
199 mv --no-clobber firmware_data_key.{vbpubk,"v${subkey_ver}.vbpubk"}
200 mv --no-clobber firmware.{keyblock,"v${datakey_ver}.v${subkey_ver}.keyblock"}
/external/libvpx/libvpx/vp8/encoder/
Dmr_dissim.c35 mvx[cnt] = x->mbmi.mv.as_mv.row; \
36 mvy[cnt] = x->mbmi.mv.as_mv.col; \
43 mvx[cnt] = x->mbmi.mv.as_mv.row; \
44 mvy[cnt] = x->mbmi.mv.as_mv.col; \
195 mmvx = MAX(abs(min_mvx - here->mbmi.mv.as_mv.row), in vp8_cal_dissimilarity()
196 abs(max_mvx - here->mbmi.mv.as_mv.row)); in vp8_cal_dissimilarity()
197 mmvy = MAX(abs(min_mvy - here->mbmi.mv.as_mv.col), in vp8_cal_dissimilarity()
198 abs(max_mvy - here->mbmi.mv.as_mv.col)); in vp8_cal_dissimilarity()
206 store_mode_info->mv.as_int = tmp->mbmi.mv.as_int; in vp8_cal_dissimilarity()

12345678910>>...23