/external/llvm/unittests/ADT/ |
MapVectorTest.cpp | 43 MapVector<int, int> MV; 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[4], 5) [all...] |
/external/libvpx/libvpx/vp8/common/ |
mv.h | 24 } MV; 29 MV as_mv;
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
mv.h | 24 } MV; 29 MV as_mv;
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_mcomp.h | 25 // Max full pel mv specified in the unit of full pixel 35 void vp9_set_mv_search_range(MACROBLOCK *x, const MV *mv); 36 int vp9_mv_bit_cost(const MV *mv, const MV *ref, 39 // Utility to compute variance + MV rate cost for a given MV 41 const MV *best_mv, const MV *center_mv [all...] |
vp9_encodemv.h | 25 void vp9_encode_mv(VP9_COMP *cpi, vp9_writer* w, const MV* mv, const MV* ref,
|
vp9_mcomp.c | 27 const MV *mv) { 28 return &buf->buf[mv->row * buf->stride + mv->col]; 31 void vp9_set_mv_search_range(MACROBLOCK *x, const MV *mv) { 32 int col_min = (mv->col >> 3) - MAX_FULL_PEL_VAL + (mv->col & 7 ? 1 : 0); 33 int row_min = (mv->row >> 3) - MAX_FULL_PEL_VAL + (mv->row & 7 ? 1 : 0) 708 const MV mv = {best_mv->row * 8, best_mv->col * 8}; local 725 const MV mv = {best_mv->row * 8, best_mv->col * 8}; local 1326 const MV mv = {r, c}; local 1576 const MV mv = {ref_mv->row + neighbors[j].row, local 1725 const MV mv = {ref_mv->row + neighbors[j].row, local [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_mcomp.h | 25 // Max full pel mv specified in the unit of full pixel 36 MV mv; member in struct:search_site 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 [all...] |
vp9_encodemv.h | 26 void vp9_encode_mv(VP9_COMP *cpi, vpx_writer* w, const MV* mv, const MV* ref,
|
vp9_mcomp.c | 31 const MV *mv) { 32 return &buf->buf[mv->row * buf->stride + mv->col]; 35 void vp9_set_mv_search_range(MACROBLOCK *x, const MV *mv) { 36 int col_min = (mv->col >> 3) - MAX_FULL_PEL_VAL + (mv->col & 7 ? 1 : 0); 37 int row_min = (mv->row >> 3) - MAX_FULL_PEL_VAL + (mv->row & 7 ? 1 : 0) 1349 const MV mv = {best_mv->row * 8, best_mv->col * 8}; local 1366 const MV mv = {best_mv->row * 8, best_mv->col * 8}; local 1562 const MV mv = {ref_mv->row + r, ref_mv->col + c + i}; local 1570 const MV mv = {ref_mv->row + r, ref_mv->col + c + i}; local 1581 const MV mv = {ref_mv->row + r, ref_mv->col + c + i}; local 2038 const MV mv = {r, c}; local 2084 const MV mv = {r, c}; local 2101 const MV mv = {r, c}; local 2149 const MV mv = {r, c}; local 2173 const MV mv = {r, c}; local 2190 const MV mv = {r, c}; local 2241 const MV mv = {ref_mv->row + neighbors[j].row, local 2252 const MV mv = {ref_mv->row + neighbors[j].row, local 2305 const MV mv = {ref_mv->row + neighbors[j].row, local [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_mv.h | 22 typedef struct mv { struct 25 } MV; 29 MV as_mv; 37 static INLINE int is_zero_mv(const MV *mv) { 38 return *((const uint32_t *)mv) == 0; 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 [all...] |
vp9_reconinter.h | 47 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,
|
vp9_entropymv.h | 30 int vp9_use_mv_hp(const MV *ref); 101 static INLINE MV_JOINT_TYPE vp9_get_mv_joint(const MV *mv) { 102 if (mv->row == 0) { 103 return mv->col == 0 ? MV_JOINT_ZERO : MV_JOINT_HNZVZ; 105 return mv->col == 0 ? MV_JOINT_HZVNZ : MV_JOINT_HNZVNZ; 127 void vp9_inc_mv(const MV *mv, nmv_context_counts *mvctx);
|
vp9_reconinter.c | 38 const MV *src_mv, 45 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2, 47 MV32 mv = vp9_scale_mv(&mv_q4, x, y, sf); local 48 const int subpel_x = mv.col & SUBPEL_MASK; 49 const int subpel_y = mv.row & SUBPEL_MASK; 51 src += (mv.row >> SUBPEL_BITS) * src_stride + (mv.col >> SUBPEL_BITS); 60 const MV *src_mv, 67 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2, 69 MV32 mv = vp9_scale_mv(&mv_q4, x, y, sf) local 171 const MV mv = mi->mbmi.sb_type < BLOCK_8X8 local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_mv.h | 22 typedef struct mv { struct 25 } MV; 29 MV as_mv; 37 static INLINE void clamp_mv(MV *mv, int min_col, int max_col, 39 mv->col = clamp(mv->col, min_col, max_col); 40 mv->row = clamp(mv->row, min_row, max_row);
|
vp9_entropymv.h | 27 int vp9_use_mv_hp(const MV *ref); 98 static INLINE MV_JOINT_TYPE vp9_get_mv_joint(const MV *mv) { 99 if (mv->row == 0) { 100 return mv->col == 0 ? MV_JOINT_ZERO : MV_JOINT_HNZVZ; 102 return mv->col == 0 ? MV_JOINT_HZVNZ : MV_JOINT_HNZVNZ; 126 void vp9_inc_mv(const MV *mv, nmv_context_counts *mvctx);
|
vp9_mvref_common.h | 24 // TODO(jingning): this mv clamping function should be block size dependent. 25 static INLINE void clamp_mv2(MV *mv, const MACROBLOCKD *xd) { 26 clamp_mv(mv, xd->mb_to_left_edge - LEFT_TOP_MARGIN,
|
vp9_scale.h | 37 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf);
|
/external/libvpx/libvpx/vp8/encoder/ |
encodemv.h | 22 void vp8_encode_motion_vector(vp8_writer *, const MV *, const MV_CONTEXT *);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
encodemv.h | 22 void vp8_encode_motion_vector(vp8_writer *, const MV *, const MV_CONTEXT *);
|
/external/libvpx/libvpx/vp8/decoder/ |
ec_types.h | 50 MV mv; member in struct:__anon16531
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/ |
ec_types.h | 50 MV mv; member in struct:__anon30166
|
/external/llvm/lib/Target/AArch64/ |
AArch64TargetObjectFile.h | 40 const MCValue &MV, int64_t Offset,
|
/external/elfutils/src/ |
make-debug-archive.in | 21 MV=/bin/mv 130 $sudo $MV -f "$new_archive" "$archive"
|
/external/llvm/lib/Target/X86/ |
X86TargetObjectFile.h | 35 const MCValue &MV, int64_t Offset,
|
/external/e2fsprogs/lib/ |
Makefile.bsd-lib | 26 $(MV) pic/$(BSD_LIB) .
|