Home
last modified time | relevance | path

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

12345678910>>...13

/external/libvpx/vp8/decoder/
Ddecodemv.c174 static void read_mv(vp8_reader *r, MV *mv, const MV_CONTEXT *mvc) in read_mv() argument
176 mv->row = (short)(read_mvcomponent(r, mvc) << 1); in read_mv()
177 mv->col = (short)(read_mvcomponent(r, ++mvc) << 1); in read_mv()
291 MV *const mv = & mbmi->mv.as_mv; in read_mb_modes_mv() local
352 MV *const mv = & bmi.mv.as_mv; in read_mb_modes_mv() local
358 … mv_contz = vp8_mv_cont(&(vp8_left_bmi(mi, k)->mv.as_mv), &(vp8_above_bmi(mi, k, mis)->mv.as_mv)); in read_mb_modes_mv()
363 read_mv(bc, mv, (const MV_CONTEXT *) mvc); in read_mb_modes_mv()
364 mv->row += best_mv.row; in read_mb_modes_mv()
365 mv->col += best_mv.col; in read_mb_modes_mv()
371 *mv = vp8_left_bmi(mi, k)->mv.as_mv; in read_mb_modes_mv()
[all …]
Ddecodframe.c127 static void clamp_mv_to_umv_border(MV *mv, const MACROBLOCKD *xd) in clamp_mv_to_umv_border() argument
138 if (mv->col < (xd->mb_to_left_edge - (19 << 3))) in clamp_mv_to_umv_border()
139 mv->col = xd->mb_to_left_edge - (16 << 3); in clamp_mv_to_umv_border()
140 else if (mv->col > xd->mb_to_right_edge + (18 << 3)) in clamp_mv_to_umv_border()
141 mv->col = xd->mb_to_right_edge + (16 << 3); in clamp_mv_to_umv_border()
143 if (mv->row < (xd->mb_to_top_edge - (19 << 3))) in clamp_mv_to_umv_border()
144 mv->row = xd->mb_to_top_edge - (16 << 3); in clamp_mv_to_umv_border()
145 else if (mv->row > xd->mb_to_bottom_edge + (18 << 3)) in clamp_mv_to_umv_border()
146 mv->row = xd->mb_to_bottom_edge + (16 << 3); in clamp_mv_to_umv_border()
150 static void clamp_uvmv_to_umv_border(MV *mv, const MACROBLOCKD *xd) in clamp_uvmv_to_umv_border() argument
[all …]
/external/libvpx/vp8/common/
Dreconinter.c145 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) in vp8_build_inter_predictors_b()
147 … ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors_b()
148 sppf(ptr, d->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()
152 … ptr_base += d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors_b()
178 … ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in build_inter_predictors4b()
180 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) in build_inter_predictors4b()
182 …x->subpixel_predict8x8(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_… in build_inter_predictors4b()
197 … ptr = ptr_base + d->pre + (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in build_inter_predictors2b()
199 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) in build_inter_predictors2b()
201 …x->subpixel_predict8x4(ptr, d->pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_… in build_inter_predictors2b()
[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 …]
Dfindnearmv.h42 static void vp8_clamp_mv(MV *mv, const MACROBLOCKD *xd) in vp8_clamp_mv() argument
44 if (mv->col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN)) in vp8_clamp_mv()
45 mv->col = xd->mb_to_left_edge - LEFT_TOP_MARGIN; in vp8_clamp_mv()
46 else if (mv->col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN) in vp8_clamp_mv()
47 mv->col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN; in vp8_clamp_mv()
49 if (mv->row < (xd->mb_to_top_edge - LEFT_TOP_MARGIN)) in vp8_clamp_mv()
50 mv->row = xd->mb_to_top_edge - LEFT_TOP_MARGIN; in vp8_clamp_mv()
51 else if (mv->row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN) in vp8_clamp_mv()
52 mv->row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN; in vp8_clamp_mv()
Dpostproc.c862 MV *mv = &bmi->mv.as_mv; in vp8_post_proc_frame() local
864 x1 = x0 + 8 + (mv->col >> 3); in vp8_post_proc_frame()
865 y1 = y0 + 4 + (mv->row >> 3); in vp8_post_proc_frame()
872 x1 = x0 + 8 + (mv->col >> 3); in vp8_post_proc_frame()
873 y1 = y0 +12 + (mv->row >> 3); in vp8_post_proc_frame()
883 MV *mv = &bmi->mv.as_mv; in vp8_post_proc_frame() local
885 x1 = x0 + 4 + (mv->col >> 3); in vp8_post_proc_frame()
886 y1 = y0 + 8 + (mv->row >> 3); in vp8_post_proc_frame()
893 x1 = x0 +12 + (mv->col >> 3); in vp8_post_proc_frame()
894 y1 = y0 + 8 + (mv->row >> 3); in vp8_post_proc_frame()
[all …]
Ddebugmodes.c119 … fprintf(mvs, "%5d:%-5d", mi[mb_index].mbmi.mv.as_mv.row / 2, mi[mb_index].mbmi.mv.as_mv.col / 2); in vp8_print_modes_and_motion_vectors()
146 …fprintf(mvs, "%3d:%-3d ", mi[mb_index].bmi[bindex].mv.as_mv.row, mi[mb_index].bmi[bindex].mv.as_mv… in vp8_print_modes_and_motion_vectors()
/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/dbus/
Dcleanup-man-pages.sh28 (find . -maxdepth 1 -name "_*" | xargs -I ITEMS /bin/mv ITEMS nuke) || die "could not move all unde…
29 (find . -maxdepth 1 -name "DBus*Internal*" | xargs -I ITEMS /bin/mv ITEMS nuke) || die "could not m…
30 (find . -maxdepth 1 -name "dbus_*_internal_*" | xargs -I ITEMS /bin/mv ITEMS nuke) || die "could no…
45 /bin/mv "$I" nuke || die "could not move $I to $MANDIR/nuke"
58 /bin/mv "$I" nuke || die "could not move $I to $MANDIR/nuke"
65 (find . -maxdepth 1 -name "dbus_*" | xargs -I ITEMS /bin/mv ITEMS keep) || die "could not move all …
66 (find . -maxdepth 1 -name "DBUS_*" | xargs -I ITEMS /bin/mv ITEMS keep) || die "could not move all …
67 (find . -maxdepth 1 -name "DBus*" | xargs -I ITEMS /bin/mv ITEMS keep) || die "could not move all D…
71 (find . -maxdepth 1 -type f | xargs -I ITEMS /bin/mv ITEMS nuke) || die "could not move remaining i…
80 (find keep -type f -name "*" | xargs -I ITEMS /bin/mv ITEMS .) || die "could not move kept items ba…
/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/bison/djgpp/
Dconfig.bat185 if not errorlevel 1 mv -f %XSRC%/po/Makefile.in.in %XSRC%/po/Makefile.in-in
187 if errorlevel 1 mv -f %XSRC%/po/Makefile.in %XSRC%/po/Makefile.in-in
189 if errorlevel 1 mv -f %XSRC%/po/Makefile.inin %XSRC%/po/Makefile.in-in
191 if errorlevel 1 mv -f %XSRC%/po/Makefile.in_in %XSRC%/po/Makefile.in-in
193 if errorlevel 1 mv -f %XSRC%/po/Makefile_in.in %XSRC%/po/Makefile.in-in
195 if not errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in.in %XSRC%/runtime-po/Makefile.in-in
197 if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in %XSRC%/runtime-po/Makefile.in-in
199 if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.inin %XSRC%/runtime-po/Makefile.in-in
201 if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile.in_in %XSRC%/runtime-po/Makefile.in-in
203 if errorlevel 1 mv -f %XSRC%/runtime-po/Makefile_in.in %XSRC%/runtime-po/Makefile.in-in
[all …]
/external/libvpx/vp8/encoder/
Dmcomp.c37 int vp8_mv_bit_cost(MV *mv, MV *ref, int *mvcost[2], int Weight) in vp8_mv_bit_cost() argument
43 …return ((mvcost[0][(mv->row - ref->row) >> 1] + mvcost[1][(mv->col - ref->col) >> 1]) * Weight) >>… in vp8_mv_bit_cost()
46 static int mv_err_cost(MV *mv, MV *ref, int *mvcost[2], int error_per_bit) in mv_err_cost() argument
53 …return ((mvcost[0][(mv->row - ref->row) >> 1] + mvcost[1][(mv->col - ref->col) >> 1]) * error_per_… in mv_err_cost()
58 static int mv_bits(MV *mv, MV *ref, int *mvcost[2]) in mv_bits() argument
62 …return ((mvcost[0][(mv->row - ref->row) >> 1] + mvcost[1][(mv->col - ref->col)>> 1]) + 128) >> 8; in mv_bits()
73 x->ss[search_site_count].mv.col = 0; in vp8_init_dsmotion_compensation()
74 x->ss[search_site_count].mv.row = 0; in vp8_init_dsmotion_compensation()
82 x->ss[search_site_count].mv.col = 0; in vp8_init_dsmotion_compensation()
83 x->ss[search_site_count].mv.row = -Len; in vp8_init_dsmotion_compensation()
[all …]
Dencodemv.c68 void vp8_encode_motion_vector(vp8_writer *w, const MV *mv, const MV_CONTEXT *mvc) in vp8_encode_motion_vector() argument
73 if (abs(mv->row >> 1) > max_mv_r) in vp8_encode_motion_vector()
76 max_mv_r = abs(mv->row >> 1); in vp8_encode_motion_vector()
77 fprintf(f, "New Mv Row Max %6d\n", (mv->row >> 1)); in vp8_encode_motion_vector()
79 if ((abs(mv->row) / 2) != max_mv_r) in vp8_encode_motion_vector()
80 fprintf(f, "MV Row conversion error %6d\n", abs(mv->row) / 2); in vp8_encode_motion_vector()
85 if (abs(mv->col >> 1) > max_mv_c) in vp8_encode_motion_vector()
88 fprintf(f, "New Mv Col Max %6d\n", (mv->col >> 1)); in vp8_encode_motion_vector()
89 max_mv_c = abs(mv->col >> 1); in vp8_encode_motion_vector()
95 encode_mvcomponent(w, mv->row >> 1, &mvc[0]); in vp8_encode_motion_vector()
[all …]
Dpickinter.c50 extern void vp8_set_mbmode_and_mvs(MACROBLOCK *x, MB_PREDICTION_MODE mb, MV *mv);
76 int xoffset = d->bmi.mv.as_mv.col & 7; in get_inter_mbpred_error()
77 int yoffset = d->bmi.mv.as_mv.row & 7; in get_inter_mbpred_error()
79 in_what += (d->bmi.mv.as_mv.row >> 3) * d->pre_stride + (d->bmi.mv.as_mv.col >> 3); in get_inter_mbpred_error()
248 xd->block[i].bmi.mv.as_int = 0; in vp8_pick_intra4x4mby_modes()
735 …bestsme = vp8_hex_search(x, b, d, &mvp, &d->bmi.mv.as_mv, step_param, sadpb/*x->errorperbit*/, &nu… in vp8_pick_inter_mode()
736 mode_mv[NEWMV].row = d->bmi.mv.as_mv.row; in vp8_pick_inter_mode()
737 mode_mv[NEWMV].col = d->bmi.mv.as_mv.col; in vp8_pick_inter_mode()
741 …bestsme = cpi->diamond_search_sad(x, b, d, &mvp, &d->bmi.mv.as_mv, step_param, sadpb / 2/*x->error… in vp8_pick_inter_mode()
742 mode_mv[NEWMV].row = d->bmi.mv.as_mv.row; in vp8_pick_inter_mode()
[all …]
Drdopt.c459 mv_row = x->e_mbd.block[16].bmi.mv.as_mv.row; in VP8_UVSSE()
460 mv_col = x->e_mbd.block[16].bmi.mv.as_mv.col; in VP8_UVSSE()
862 void vp8_set_mbmode_and_mvs(MACROBLOCK *x, MB_PREDICTION_MODE mb, MV *mv) in vp8_set_mbmode_and_mvs() argument
867 x->e_mbd.mode_info_context->mbmi.mv.as_mv.row = mv->row; in vp8_set_mbmode_and_mvs()
868 x->e_mbd.mode_info_context->mbmi.mv.as_mv.col = mv->col; in vp8_set_mbmode_and_mvs()
874 bmi->mv.as_mv.row = mv->row; in vp8_set_mbmode_and_mvs()
875 bmi->mv.as_mv.col = mv->col; in vp8_set_mbmode_and_mvs()
925 *this_mv = col ? d[-1].bmi.mv.as_mv : vp8_left_bmi(mic, i)->mv.as_mv; in labels2mode()
928 *this_mv = row ? d[-4].bmi.mv.as_mv : vp8_above_bmi(mic, i, mis)->mv.as_mv; in labels2mode()
939 const MV mv = col ? d[-1].bmi.mv.as_mv : vp8_left_bmi(mic, i)->mv.as_mv; in labels2mode() local
[all …]
Dtemporal_filter.c202 &best_ref_mv1, &d->bmi.mv.as_mv, in vp8_temporal_filter_find_matching_mb_c()
213 &best_ref_mv1, &d->bmi.mv.as_mv, in vp8_temporal_filter_find_matching_mb_c()
235 &best_ref_mv1, &d->bmi.mv.as_mv, in vp8_temporal_filter_find_matching_mb_c()
244 mv_y = d->bmi.mv.as_mv.row; in vp8_temporal_filter_find_matching_mb_c()
245 mv_x = d->bmi.mv.as_mv.col; in vp8_temporal_filter_find_matching_mb_c()
249 d->bmi.mv.as_mv.row = mv_y; in vp8_temporal_filter_find_matching_mb_c()
250 d->bmi.mv.as_mv.col = mv_x; in vp8_temporal_filter_find_matching_mb_c()
261 &d->bmi.mv.as_mv, &best_ref_mv1, in vp8_temporal_filter_find_matching_mb_c()
340 mbd->block[0].bmi.mv.as_mv.row = 0; in vp8_temporal_filter_iterate_c()
341 mbd->block[0].bmi.mv.as_mv.col = 0; in vp8_temporal_filter_iterate_c()
[all …]
/external/grub/stage2/
DMakefile.in1050 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"…
1057 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"…
1064 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgrub_a-boot.Tpo" "$(DEPDIR)/libgrub_a-boot.Po"; else …
1071 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgrub_a-boot.Tpo" "$(DEPDIR)/libgrub_a-boot.Po"; else …
1078 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgrub_a-builtins.Tpo" "$(DEPDIR)/libgrub_a-builtins.Po…
1085 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgrub_a-builtins.Tpo" "$(DEPDIR)/libgrub_a-builtins.Po…
1092 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgrub_a-char_io.Tpo" "$(DEPDIR)/libgrub_a-char_io.Po";…
1099 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgrub_a-char_io.Tpo" "$(DEPDIR)/libgrub_a-char_io.Po";…
1106 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgrub_a-cmdline.Tpo" "$(DEPDIR)/libgrub_a-cmdline.Po";…
1113 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libgrub_a-cmdline.Tpo" "$(DEPDIR)/libgrub_a-cmdline.Po";…
[all …]
/external/dropbear/libtomcrypt/
Dupdatemakes.sh6 mv -f tmp.delme makefile
9 mv -f tmp.delme makefile.icc
12 mv -f tmp.delme makefile.shared
15 mv -f tmp.delme makefile.unix
/external/grub/netboot/
DMakefile.in353 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"…
360 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"…
367 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libdrivers_a-config.Tpo" "$(DEPDIR)/libdrivers_a-config.…
374 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libdrivers_a-config.Tpo" "$(DEPDIR)/libdrivers_a-config.…
381 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libdrivers_a-fsys_tftp.Tpo" "$(DEPDIR)/libdrivers_a-fsys…
388 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libdrivers_a-fsys_tftp.Tpo" "$(DEPDIR)/libdrivers_a-fsys…
395 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libdrivers_a-main.Tpo" "$(DEPDIR)/libdrivers_a-main.Po";…
402 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libdrivers_a-main.Tpo" "$(DEPDIR)/libdrivers_a-main.Po";…
409 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libdrivers_a-misc.Tpo" "$(DEPDIR)/libdrivers_a-misc.Po";…
416 @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libdrivers_a-misc.Tpo" "$(DEPDIR)/libdrivers_a-misc.Po";…
[all …]
/external/libffi/src/m32r/
Dsysv.S55 mv fp, sp
61 mv lr, r0
62 mv r0, sp
87 mv sp, fp
/external/bison/tests/
Dtestsuite3594 ( $at_traceon; mv stdout sets ) >$at_stdout 2>$at_stder1
3876 ( $at_traceon; mv stdout sets ) >$at_stdout 2>$at_stder1
4042 mv stdout expout
11361 mv at-expout expout
11435 mv at-stderr stderr
11443 mv at-expout expout
11446 mv at-expout expout
11520 mv at-stderr stderr
11528 mv at-expout expout
11531 mv at-expout expout
[all …]
/external/linux-tools-perf/Documentation/
DMakefile195 mv $@+ $@
227 mv $@+ $@
237 mv $@+ $@
253 mv $@+ $@
258 mv $@+ $@
266 mv $@+ $@
274 mv $@+ $@
279 mv $@+ $@
289 mv $@+ $@
/external/protobuf/src/
DMakefile.in1056 @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1063 @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1070 @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
1077 @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/common.Tpo $(DEPDIR)/common.Plo
1084 @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/once.Tpo $(DEPDIR)/once.Plo
1091 @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/hash.Tpo $(DEPDIR)/hash.Plo
1098 @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/extension_set.Tpo $(DEPDIR)/extension_set.Plo
1105 @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/generated_message_util.Tpo $(DEPDIR)/generated_message_util.P…
1112 @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/message_lite.Tpo $(DEPDIR)/message_lite.Plo
1119 @am__fastdepCXX_TRUE@ mv -f $(DEPDIR)/repeated_field.Tpo $(DEPDIR)/repeated_field.Plo
[all …]
/external/chromium/chrome/browser/extensions/
Dexternal_policy_extension_loader_unittest.cc112 MockExternalPolicyExtensionProviderVisitor mv; in TEST_F() local
114 mv.Visit(&forced_extensions, &forced_extensions, empty); in TEST_F()
142 MockExternalPolicyExtensionProviderVisitor mv; in TEST_F() local
144 mv.Visit(&forced_extensions, &valid_extensions, empty); in TEST_F()
/external/e2fsprogs/util/
Dgen-tarball.in37 mv ../e2fsprogs.spec $top_srcdir/e2fsprogs.spec
53 mv $top_srcdir/e2fsprogs.spec ../e2fsprogs.spec
55 mv $SRCROOT.tar.gz $rename_tarball

12345678910>>...13