Home
last modified time | relevance | path

Searched refs:MV (Results 1 – 25 of 328) sorted by relevance

12345678910>>...14

/external/llvm/unittests/ADT/
DMapVectorTest.cpp43 MapVector<int, int> MV; in TEST() local
46 R = MV.insert(std::make_pair(1, 2)); in TEST()
47 ASSERT_EQ(R.first, MV.begin()); in TEST()
52 R = MV.insert(std::make_pair(1, 3)); in TEST()
53 ASSERT_EQ(R.first, MV.begin()); in TEST()
58 R = MV.insert(std::make_pair(4, 5)); in TEST()
59 ASSERT_NE(R.first, MV.end()); in TEST()
64 EXPECT_EQ(MV.size(), 2u); in TEST()
65 EXPECT_EQ(MV[1], 2); in TEST()
66 EXPECT_EQ(MV[4], 5); in TEST()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.h36 MV mv;
49 void vp9_set_mv_search_range(MACROBLOCK *x, const MV *mv);
50 int vp9_mv_bit_cost(const MV *mv, const MV *ref,
55 const MV *best_mv, const MV *center_mv,
59 const MV *best_mv, const MV *center_mv,
71 MV *mvp_full, int step_param,
74 const MV *ref_mv, MV *dst_mv);
78 MV *ref_mv,
84 const MV *center_mv,
85 MV *best_mv);
[all …]
Dvp9_mcomp.c27 const MV *mv) { in get_buf_from_mv()
31 void vp9_set_mv_search_range(MACROBLOCK *x, const MV *mv) { in vp9_set_mv_search_range()
66 static INLINE int mv_cost(const MV *mv, in mv_cost()
72 int vp9_mv_bit_cost(const MV *mv, const MV *ref, in vp9_mv_bit_cost()
74 const MV diff = { mv->row - ref->row, in vp9_mv_bit_cost()
79 static int mv_err_cost(const MV *mv, const MV *ref, in mv_err_cost()
83 const MV diff = { mv->row - ref->row, in mv_err_cost()
91 static int mvsad_err_cost(const MACROBLOCK *x, const MV *mv, const MV *ref, in mvsad_err_cost()
94 const MV diff = { mv->row - ref->row, in mvsad_err_cost()
110 const MV ss_mvs[] = {{-len, 0}, {len, 0}, {0, -len}, {0, len}}; in vp9_init_dsmotion_compensation()
[all …]
Dvp9_mbgraph.c23 const MV *ref_mv, in do_16x16_motion_iteration()
24 MV *dst_mv, in do_16x16_motion_iteration()
36 MV ref_full; in do_16x16_motion_iteration()
77 static int do_16x16_motion_search(VP9_COMP *cpi, const MV *ref_mv, in do_16x16_motion_search()
82 MV tmp_mv; in do_16x16_motion_search()
102 MV zero_ref_mv = {0, 0}, tmp_mv; in do_16x16_motion_search()
168 const MV *prev_golden_ref_mv, in update_mbgraph_mb_stats()
234 MV gld_top_mv = {0, 0}; in update_mbgraph_frame_stats()
252 MV gld_left_mv = gld_top_mv; in update_mbgraph_frame_stats()
Dvp9_encodemv.h25 void vp9_encode_mv(VP9_COMP *cpi, vp9_writer* w, const MV* mv, const MV* ref,
Dvp9_encodemv.c203 const MV* mv, const MV* ref, in vp9_encode_mv()
205 const MV diff = {mv->row - ref->row, in vp9_encode_mv()
237 const MV *ref = &mbmi->ref_mvs[mbmi->ref_frame[i]][0].as_mv; in inc_mvs()
238 const MV diff = {mvs[i].as_mv.row - ref->row, in inc_mvs()
Dvp9_temporal_filter.c45 const MV mv = { mv_row, mv_col }; in temporal_filter_predictors_mb_c()
149 MV best_ref_mv1 = {0, 0}; in temporal_filter_find_matching_mb_c()
150 MV best_ref_mv1_full; /* full-pixel value of best_ref_mv1 */ in temporal_filter_find_matching_mb_c()
151 MV *ref_mv = &x->e_mbd.mi[0]->bmi[0].as_mv[0].as_mv; in temporal_filter_find_matching_mb_c()
/external/llvm/test/Transforms/MemCpyOpt/
Dform-memset.ll60 %struct.MV = type { i16, i16 }
66 %left_mvd = alloca [8 x %struct.MV] ; <[8 x %struct.MV]*> [#uses=17]
67 %up_mvd = alloca [8 x %struct.MV] ; <[8 x %struct.MV]*> [#uses=17]
84 …%tmp43 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 7, i32 0 ; <i16*> …
86 …%tmp46 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 7, i32 1 ; <i16*> …
88 …%tmp57 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 6, i32 0 ; <i16*> …
90 …%tmp60 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 6, i32 1 ; <i16*> …
92 …%tmp71 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 5, i32 0 ; <i16*> …
94 …%tmp74 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 5, i32 1 ; <i16*> …
96 …%tmp85 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 4, i32 0 ; <i16*> …
[all …]
/external/libvpx/libvpx/vp9/common/
Dvp9_reconinter.c81 const MV *src_mv, in vp9_build_inter_predictor()
88 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2, in vp9_build_inter_predictor()
104 static MV mi_mv_pred_q4(const MODE_INFO *mi, int idx) { in mi_mv_pred_q4()
105 MV res = { round_mv_comp_q4(mi->bmi[0].as_mv[idx].as_mv.row + in mi_mv_pred_q4()
120 static MV mi_mv_pred_q2(const MODE_INFO *mi, int idx, int block0, int block1) { in mi_mv_pred_q2()
121 MV res = { round_mv_comp_q2(mi->bmi[block0].as_mv[idx].as_mv.row + in mi_mv_pred_q2()
129 MV clamp_mv_to_umv_border_sb(const MACROBLOCKD *xd, const MV *src_mv, in clamp_mv_to_umv_border_sb()
138 MV clamped_mv = { in clamp_mv_to_umv_border_sb()
154 static MV average_split_mvs(const struct macroblockd_plane *pd, in average_split_mvs()
157 MV res = {0, 0}; in average_split_mvs()
[all …]
Dvp9_mv.h25 } MV; typedef
29 MV as_mv;
37 static INLINE void clamp_mv(MV *mv, int min_col, int max_col, in clamp_mv()
Dvp9_entropymv.h27 int vp9_use_mv_hp(const MV *ref);
98 static INLINE MV_JOINT_TYPE vp9_get_mv_joint(const MV *mv) { in vp9_get_mv_joint()
126 void vp9_inc_mv(const MV *mv, nmv_context_counts *mvctx);
Dvp9_mvref_common.h128 static INLINE void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) { in clamp_mv_ref()
200 static INLINE void clamp_mv2(MV *mv, const MACROBLOCKD *xd) { in clamp_mv2()
Dvp9_entropymv.c133 int vp9_use_mv_hp(const MV *ref) { in vp9_use_mv_hp()
171 void vp9_inc_mv(const MV *mv, nmv_context_counts *counts) { in vp9_inc_mv()
/external/libvpx/libvpx/vp8/common/
Dmv.h24 } MV; typedef
29 MV as_mv;
/external/elfutils/src/src/
Dmake-debug-archive.in21 MV=/bin/mv
130 $sudo $MV -f "$new_archive" "$archive"
/external/llvm/lib/Target/AArch64/
DAArch64TargetObjectFile.cpp61 const MCSymbol *Sym, const MCValue &MV, int64_t Offset, in getIndirectSymViaGOTPCRel() argument
63 assert((Offset+MV.getConstant() == 0) && in getIndirectSymViaGOTPCRel()
DAArch64TargetObjectFile.h40 const MCValue &MV, int64_t Offset,
/external/libvpx/libvpx/vp8/encoder/
Dencodemv.h22 void vp8_encode_motion_vector(vp8_writer *, const MV *, const MV_CONTEXT *);
/external/e2fsprogs/
DMCONFIG.in83 MV = @MV@
276 $(MV) $(srcdir)/Makefile.in $(srcdir)/Makefile.in.old; \
277 $(MV) $(srcdir)/Makefile.in.new $(srcdir)/Makefile.in; \
/external/libvpx/libvpx/vp8/decoder/
Dec_types.h50 MV mv;
/external/llvm/lib/Target/X86/
DX86TargetObjectFile.cpp51 const MCSymbol *Sym, const MCValue &MV, int64_t Offset, in getIndirectSymViaGOTPCRel() argument
56 unsigned FinalOff = Offset+MV.getConstant()+4; in getIndirectSymViaGOTPCRel()
/external/e2fsprogs/lib/
DMakefile.checker12 $(Q) (test -r $@ && $(RM) -f $@.bak && $(MV) $@ $@.bak)
DMakefile.library18 $(Q) (if test -r $@; then $(RM) -f $@.bak && $(MV) $@ $@.bak; fi)
/external/icu/icu4c/source/data/region/
Dig.txt17 MV{"Maldivesa"}
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineObjC.cpp107 if (Optional<loc::MemRegionVal> MV = elementV.getAs<loc::MemRegionVal>()) in VisitObjCForCollectionStmt() local
109 dyn_cast<TypedValueRegion>(MV->getRegion())) { in VisitObjCForCollectionStmt()

12345678910>>...14