Home
last modified time | relevance | path

Searched refs:MV (Results 1 – 25 of 346) 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,
83 MV *bestmv, const MV *ref_mv,
101 const MV *ref_mv, int sad_per_bit,
104 const MV *center_mv, MV *best_mv);
107 MV *ref_mv, int sad_per_bit,
110 const MV *center_mv);
[all …]
Dvp9_mcomp.c31 const MV *mv) { in get_buf_from_mv()
35 void vp9_set_mv_search_range(MACROBLOCK *x, const MV *mv) { in vp9_set_mv_search_range()
70 static INLINE int mv_cost(const MV *mv, in mv_cost()
76 int vp9_mv_bit_cost(const MV *mv, const MV *ref, in vp9_mv_bit_cost()
78 const MV diff = { mv->row - ref->row, in vp9_mv_bit_cost()
83 static int mv_err_cost(const MV *mv, const MV *ref, in mv_err_cost()
87 const MV diff = { mv->row - ref->row, in mv_err_cost()
95 static int mvsad_err_cost(const MACROBLOCK *x, const MV *mv, const MV *ref, in mvsad_err_cost()
97 const MV diff = { mv->row - ref->row, in mvsad_err_cost()
111 const MV ss_mvs[] = {{-len, 0}, {len, 0}, {0, -len}, {0, len}}; in vp9_init_dsmotion_compensation()
[all …]
Dvp9_mbgraph.c27 const MV *ref_mv, in do_16x16_motion_iteration()
28 MV *dst_mv, in do_16x16_motion_iteration()
41 MV ref_full; in do_16x16_motion_iteration()
87 static int do_16x16_motion_search(VP9_COMP *cpi, const MV *ref_mv, in do_16x16_motion_search()
92 MV tmp_mv; in do_16x16_motion_search()
112 MV zero_ref_mv = {0, 0}, tmp_mv; in do_16x16_motion_search()
178 const MV *prev_golden_ref_mv, in update_mbgraph_mb_stats()
244 MV gld_top_mv = {0, 0}; in update_mbgraph_frame_stats()
262 MV gld_left_mv = gld_top_mv; in update_mbgraph_frame_stats()
Dvp9_encodemv.h26 void vp9_encode_mv(VP9_COMP *cpi, vpx_writer* w, const MV* mv, const MV* ref,
Dvp9_encodemv.c204 const MV* mv, const MV* ref, in vp9_encode_mv()
206 const MV diff = {mv->row - ref->row, in vp9_encode_mv()
239 const MV *ref = &mbmi_ext->ref_mvs[mbmi->ref_frame[i]][0].as_mv; in inc_mvs()
240 const MV diff = {mvs[i].as_mv.row - ref->row, in inc_mvs()
/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_mv.h25 } MV; typedef
29 MV as_mv;
37 static INLINE int is_zero_mv(const MV *mv) { in is_zero_mv()
41 static INLINE int is_equal_mv(const MV *a, const MV *b) { in is_equal_mv()
45 static INLINE void clamp_mv(MV *mv, int min_col, int max_col, in clamp_mv()
Dvp9_reconinter.c38 const MV *src_mv, in vp9_highbd_build_inter_predictor()
45 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2, in vp9_highbd_build_inter_predictor()
60 const MV *src_mv, in vp9_build_inter_predictor()
67 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2, in vp9_build_inter_predictor()
83 static MV mi_mv_pred_q4(const MODE_INFO *mi, int idx) { in mi_mv_pred_q4()
84 MV res = { round_mv_comp_q4(mi->bmi[0].as_mv[idx].as_mv.row + in mi_mv_pred_q4()
99 static MV mi_mv_pred_q2(const MODE_INFO *mi, int idx, int block0, int block1) { in mi_mv_pred_q2()
100 MV res = { round_mv_comp_q2(mi->bmi[block0].as_mv[idx].as_mv.row + in mi_mv_pred_q2()
108 MV clamp_mv_to_umv_border_sb(const MACROBLOCKD *xd, const MV *src_mv, in clamp_mv_to_umv_border_sb()
117 MV clamped_mv = { in clamp_mv_to_umv_border_sb()
[all …]
Dvp9_reconinter.h47 MV average_split_mvs(const struct macroblockd_plane *pd, const MODE_INFO *mi,
50 MV clamp_mv_to_umv_border_sb(const MACROBLOCKD *xd, const MV *src_mv,
67 const MV *mv_q3,
77 const MV *mv_q3,
Dvp9_entropymv.h30 int vp9_use_mv_hp(const MV *ref);
101 static INLINE MV_JOINT_TYPE vp9_get_mv_joint(const MV *mv) { in vp9_get_mv_joint()
127 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()
203 static INLINE void clamp_mv2(MV *mv, const MACROBLOCKD *xd) { in clamp_mv2()
Dvp9_entropymv.c130 int vp9_use_mv_hp(const MV *ref) { in vp9_use_mv_hp()
164 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/
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/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/encoder/
Dencodemv.h22 void vp8_encode_motion_vector(vp8_writer *, const MV *, const MV_CONTEXT *);
/external/libvpx/libvpx/vp8/decoder/
Dec_types.h50 MV mv;
/external/llvm/lib/Target/X86/
DX86TargetObjectFile.cpp52 const MCSymbol *Sym, const MCValue &MV, int64_t Offset, in getIndirectSymViaGOTPCRel() argument
57 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)
DMakefile.bsd-lib26 $(MV) pic/$(BSD_LIB) .
/external/icu/icu4c/source/data/region/
Dig.txt17 MV{"Maldivesa"}

12345678910>>...14