Searched refs:MV (Results 1 - 25 of 122) 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.h22 } MV; typedef in typeref:struct:__anon11948
26 MV as_mv;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_mcomp.h35 MV ss_mv[8 * MAX_MVSEARCH_STEPS]; // Motion vector
44 void vp9_set_mv_search_range(MvLimits *mv_limits, const MV *mv);
45 int vp9_mv_bit_cost(const MV *mv, const MV *ref, const int *mvjcost,
48 // Utility to compute variance + MV rate cost for a given MV
49 int vp9_get_mvpred_var(const MACROBLOCK *x, const MV *best_mv,
50 const MV *center_mv, const vp9_variance_fn_ptr_t *vfp,
52 int vp9_get_mvpred_av_var(const MACROBLOCK *x, const MV *best_mv,
53 const MV *center_m
[all...]
H A Dvp9_encodemv.h25 void vp9_encode_mv(VP9_COMP *cpi, vpx_writer *w, const MV *mv, const MV *ref,
H A Dvp9_mcomp.c33 const MV *mv) {
37 void vp9_set_mv_search_range(MvLimits *mv_limits, const MV *mv) {
48 // Get intersection of UMV window and valid MV window to reduce # of checks
58 const MV *ref_mv) {
85 static INLINE int mv_cost(const MV *mv, const int *joint_cost,
93 int vp9_mv_bit_cost(const MV *mv, const MV *ref, const int *mvjcost,
95 const MV diff = { mv->row - ref->row, mv->col - ref->col };
100 static int mv_err_cost(const MV *mv, const MV *re
[all...]
H A Dvp9_mbgraph.c25 static unsigned int do_16x16_motion_iteration(VP9_COMP *cpi, const MV *ref_mv,
26 MV *dst_mv, int mb_row,
34 MV ref_full;
76 static int do_16x16_motion_search(VP9_COMP *cpi, const MV *ref_mv,
81 MV tmp_mv;
83 // Try zero MV first
84 // FIXME should really use something like near/nearest MV and/or MV prediction
101 MV zero_ref_mv = { 0, 0 }, tmp_mv;
119 // Try zero MV firs
[all...]
H A Dvp9_context_tree.h72 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, int min_row,
H A Dvp9_entropymv.h30 static INLINE int use_mv_hp(const MV *ref) {
104 static INLINE MV_JOINT_TYPE vp9_get_mv_joint(const MV *mv) {
130 void vp9_inc_mv(const MV *mv, nmv_context_counts *mvctx);
H A Dvp9_reconinter.c25 const MV *src_mv, const struct scale_factors *sf, int w, int h, int ref,
29 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2,
44 int dst_stride, const MV *src_mv,
49 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2,
65 static MV mi_mv_pred_q4(const MODE_INFO *mi, int idx) {
66 MV res = {
81 static MV mi_mv_pred_q2(const MODE_INFO *mi, int idx, int block0, int block1) {
82 MV res = { round_mv_comp_q2(mi->bmi[block0].as_mv[idx].as_mv.row +
90 MV clamp_mv_to_umv_border_sb(const MACROBLOCKD *xd, const MV *src_m
[all...]
H A Dvp9_reconinter.h45 MV average_split_mvs(const struct macroblockd_plane *pd, const MODE_INFO *mi,
48 MV clamp_mv_to_umv_border_sb(const MACROBLOCKD *xd, const MV *src_mv, int bw,
64 int dst_stride, const MV *mv_q3,
72 const MV *mv_q3, const struct scale_factors *sf, int w, int h, int do_avg,
H A Dvp9_mvref_common.h216 static INLINE void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) {
287 static INLINE void clamp_mv2(MV *mv, const MACROBLOCKD *xd) {
294 static INLINE void lower_mv_precision(MV *mv, int allow_hp) {
H A Dvp9_scale.h40 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf);
/external/libvpx/libvpx/vp8/encoder/
H A Dencodemv.h21 void vp8_encode_motion_vector(vp8_writer *, const MV *, const MV_CONTEXT *);
H A Dblock.h29 MV mv;
136 unsigned int MVcount[2][MVvals]; /* (row,col) MV cts this frame */
/external/libvpx/libvpx/vp8/decoder/
H A Dec_types.h43 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,
H A DX86TargetObjectFile.cpp52 const MCSymbol *Sym, const MCValue &MV, int64_t Offset,
57 unsigned FinalOff = Offset+MV.getConstant()+4;
51 getIndirectSymViaGOTPCRel( const MCSymbol *Sym, const MCValue &MV, int64_t Offset, MachineModuleInfo *MMI, MCStreamer &Streamer) const argument
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_diamond_search_sad_avx.c49 static int mvsad_err_cost(const MACROBLOCK *x, const int_mv mv, const MV *ref,
74 const search_site_config *cfg, MV *ref_mv,
75 MV *best_mv, int search_param, int sad_per_bit,
77 const MV *center_mv) {
93 const MV *ss_mv = &cfg->ss_mv[cfg->searches_per_step * search_param];
168 // Compute the difference MV

Completed in 487 milliseconds

12345