/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
D | MethodAdapter.java | 45 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 …]
|
/external/libvpx/libvpx/vp8/common/ |
D | findnearmv.h | 37 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 …]
|
D | reconinter.c | 131 … 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 …]
|
D | findnearmv.c | 40 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/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ |
D | findnearmv.h | 37 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 …]
|
D | reconinter.c | 131 … 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 …]
|
D | findnearmv.c | 40 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/ |
D | TraceMethodVisitor.java | 57 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 …]
|
/external/chromium_org/chrome/browser/resources/local_ntp/ |
D | local_ntp.css | 68 /* #fakebox width (here and below) should be 2px less than #mv-tiles 139 #mv-tiles { 153 #mv-tiles { 162 #mv-tiles { 167 .mv-row { 171 .mv-row:last-child { 175 .mv-tile:first-child { 179 .mv-tile { 194 .mv-tile.mv-blacklist { 199 .mv-page-ready { [all …]
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/ |
D | CodeEmitter.java | 106 … 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 …]
|
/external/libhevc/decoder/ |
D | ihevcd_mv_merge.c | 100 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 …]
|
D | ihevcd_inter_pred.c | 233 …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/ |
D | vp9_mvref_common.c | 118 static void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) { in clamp_mv_ref() argument 119 clamp_mv(mv, xd->mb_to_left_edge - MV_BORDER, in clamp_mv_ref() 132 : candidate->mbmi.mv[which_mv]; in get_sub_block_mv() 140 int_mv mv = mbmi->mv[ref]; in scale_mv() local 142 mv.as_mv.row *= -1; in scale_mv() 143 mv.as_mv.col *= -1; in scale_mv() 145 return mv; in scale_mv() 151 #define ADD_MV_REF_LIST(mv) \ argument 154 if ((mv).as_int != mv_ref_list[0].as_int) { \ 155 mv_ref_list[refmv_count] = (mv); \ [all …]
|
D | vp9_mv.h | 22 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()
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/ |
D | vp9_mvref_common.c | 118 static void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) { in clamp_mv_ref() argument 119 clamp_mv(mv, xd->mb_to_left_edge - MV_BORDER, in clamp_mv_ref() 132 : candidate->mbmi.mv[which_mv]; in get_sub_block_mv() 140 int_mv mv = mbmi->mv[ref]; in scale_mv() local 142 mv.as_mv.row *= -1; in scale_mv() 143 mv.as_mv.col *= -1; in scale_mv() 145 return mv; in scale_mv() 151 #define ADD_MV_REF_LIST(mv) \ argument 154 if ((mv).as_int != mv_ref_list[0].as_int) { \ 155 mv_ref_list[refmv_count] = (mv); \ [all …]
|
D | vp9_mv.h | 22 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()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/ |
D | ClassLoaderLocalMap.java | 157 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/ |
D | decodemv.c | 111 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 …]
|
D | error_concealment.c | 189 new_row = row - bmi->mv.as_mv.row; in vp8_calculate_overlaps() 190 new_col = col - bmi->mv.as_mv.col; in vp8_calculate_overlaps() 256 bmi->mv.as_int = 0; in estimate_mv() 261 col_acc += overlaps[i].overlap * overlaps[i].bmi->mv.as_mv.col; in estimate_mv() 262 row_acc += overlaps[i].overlap * overlaps[i].bmi->mv.as_mv.row; in estimate_mv() 268 bmi->mv.as_mv.col = col_acc / overlap_sum; in estimate_mv() 269 bmi->mv.as_mv.row = row_acc / overlap_sum; in estimate_mv() 273 bmi->mv.as_mv.col = 0; in estimate_mv() 274 bmi->mv.as_mv.row = 0; in estimate_mv() 290 MV * const filtered_mv = &(mi->mbmi.mv.as_mv); in estimate_mb_mvs() [all …]
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/ |
D | decodemv.c | 111 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 …]
|
D | error_concealment.c | 187 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/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 27 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() 68 static INLINE int mv_cost(const MV *mv, in mv_cost() argument 70 return joint_cost[vp9_get_mv_joint(mv)] + in mv_cost() 71 comp_cost[0][mv->row] + comp_cost[1][mv->col]; in mv_cost() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 27 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() 68 static INLINE int mv_cost(const MV *mv, in mv_cost() argument 70 return joint_cost[vp9_get_mv_joint(mv)] + in mv_cost() 71 comp_cost[0][mv->row] + comp_cost[1][mv->col]; in mv_cost() [all …]
|
/external/bison/djgpp/ |
D | config.bat | 184 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/ |
D | MethodNode.java | 406 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 …]
|