Searched refs:MV (Results 1 - 25 of 115) sorted by relevance

12345

/external/llvm/unittests/ADT/
H A DMapVectorTest.cpp43 MapVector<int, int> MV; local
46 R = MV.insert(std::make_pair(1, 2));
47 ASSERT_EQ(R.first, MV.begin());
52 R = MV.insert(std::make_pair(1, 3));
53 ASSERT_EQ(R.first, MV.begin());
58 R = MV.insert(std::make_pair(4, 5));
59 ASSERT_NE(R.first, MV.end());
64 EXPECT_EQ(MV.size(), 2u);
65 EXPECT_EQ(MV[1], 2);
66 EXPECT_EQ(MV[
84 MapVector<int, int> MV; local
107 MapVector<int, int> MV; local
128 MapVector<int, int> MV; local
152 SmallMapVector<int, int, 32> MV; local
193 SmallMapVector<int, int, 32> MV; local
216 SmallMapVector<int, int, 32> MV; local
237 SmallMapVector<int, int, 32> MV; local
261 SmallMapVector<int, int, 1> MV; local
302 SmallMapVector<int, int, 1> MV; local
325 SmallMapVector<int, int, 1> MV; local
346 SmallMapVector<int, int, 1> MV; local
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dmv.h24 } MV; typedef in typeref:struct:__anon11010
29 MV as_mv;
/external/libvpx/libvpx/vp9/encoder/
H A 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,
53 // Utility to compute variance + MV rate cost for a given MV
55 const MV *best_mv, const MV *center_mv,
59 const MV *best_mv, const MV *center_m
[all...]
H A Dvp9_encodemv.h26 void vp9_encode_mv(VP9_COMP *cpi, vpx_writer* w, const MV* mv, const MV* ref,
H A Dvp9_mcomp.c31 const MV *mv) {
35 void vp9_set_mv_search_range(MACROBLOCK *x, const MV *mv) {
46 // Get intersection of UMV window and valid MV window to reduce # of checks
70 static INLINE int mv_cost(const MV *mv,
76 int vp9_mv_bit_cost(const MV *mv, const MV *ref,
78 const MV diff = { mv->row - ref->row,
83 static int mv_err_cost(const MV *mv, const MV *ref,
87 const MV dif
[all...]
H A Dvp9_mbgraph.c27 const MV *ref_mv,
28 MV *dst_mv,
41 MV ref_full;
87 static int do_16x16_motion_search(VP9_COMP *cpi, const MV *ref_mv,
92 MV tmp_mv;
94 // Try zero MV first
95 // FIXME should really use something like near/nearest MV and/or MV prediction
112 MV zero_ref_mv = {0, 0}, tmp_mv;
130 // Try zero MV firs
[all...]
H A Dvp9_context_tree.h71 MV pred_mv[MAX_REF_FRAMES];
H A Dvp9_block.h132 MV pred_mv[MAX_REF_FRAMES];
/external/libvpx/libvpx/vp9/common/
H A Dvp9_mv.h25 } MV; typedef in typeref:struct:mv
29 MV as_mv;
37 static INLINE int is_zero_mv(const MV *mv) {
41 static INLINE int is_equal_mv(const MV *a, const MV *b) {
45 static INLINE void clamp_mv(MV *mv, int min_col, int max_col,
H A 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,
H A Dvp9_entropymv.h30 int vp9_use_mv_hp(const MV *ref);
101 static INLINE MV_JOINT_TYPE vp9_get_mv_joint(const MV *mv) {
127 void vp9_inc_mv(const MV *mv, nmv_context_counts *mvctx);
H A Dvp9_reconinter.c38 const MV *src_mv,
45 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2,
60 const MV *src_mv,
67 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2,
83 static MV mi_mv_pred_q4(const MODE_INFO *mi, int idx) {
84 MV res = { round_mv_comp_q4(mi->bmi[0].as_mv[idx].as_mv.row +
99 static MV mi_mv_pred_q2(const MODE_INFO *mi, int idx, int block0, int block1) {
100 MV res = { round_mv_comp_q2(mi->bmi[block0].as_mv[idx].as_mv.row +
108 MV clamp_mv_to_umv_border_sb(const MACROBLOCKD *xd, const MV *src_m
[all...]
H A Dvp9_scale.h40 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf);
H A Dvp9_entropymv.c130 int vp9_use_mv_hp(const MV *ref) {
164 void vp9_inc_mv(const MV *mv, nmv_context_counts *counts) {
H A Dvp9_mvref_common.h128 static INLINE void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) {
203 static INLINE void clamp_mv2(MV *mv, const MACROBLOCKD *xd) {
/external/libvpx/libvpx/vp8/encoder/
H A Dencodemv.h22 void vp8_encode_motion_vector(vp8_writer *, const MV *, const MV_CONTEXT *);
H A Dblock.h31 MV mv;
142 unsigned int MVcount [2] [MVvals]; /* (row,col) MV cts this frame */
/external/libvpx/libvpx/vp8/decoder/
H A Dec_types.h50 MV mv;
/external/elfutils/src/
H A Dmake-debug-archive.in21 MV=/bin/mv
130 $sudo $MV -f "$new_archive" "$archive"
/external/llvm/lib/Target/AArch64/
H A DAArch64TargetObjectFile.h40 const MCValue &MV, int64_t Offset,
H A DAArch64TargetObjectFile.cpp61 const MCSymbol *Sym, const MCValue &MV, int64_t Offset,
63 assert((Offset+MV.getConstant() == 0) &&
60 getIndirectSymViaGOTPCRel( const MCSymbol *Sym, const MCValue &MV, int64_t Offset, MachineModuleInfo *MMI, MCStreamer &Streamer) const argument
/external/e2fsprogs/lib/
H A DMakefile.bsd-lib26 $(MV) pic/$(BSD_LIB) .
H A DMakefile.darwin-lib28 $(Q) $(MV) pic/$(BSD_LIB) .
H A DMakefile.solaris-lib30 $(Q) $(MV) elfshared/$(ELF_LIB) .
/external/llvm/lib/Target/X86/
H A DX86TargetObjectFile.h35 const MCValue &MV, int64_t Offset,

Completed in 500 milliseconds

12345