Home
last modified time | relevance | path

Searched full:mv (Results 1 – 25 of 2344) sorted by relevance

12345678910>>...94

/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/swiftshader/third_party/llvm-7.0/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/desugar/test/java/com/google/devtools/build/android/desugar/
DBug62060793TestDataGenerator.java106 MethodVisitor mv; in createClass() local
125 mv = cw.visitMethod(ACC_PUBLIC, "<init>", "()V", null, null); in createClass()
126 mv.visitCode(); in createClass()
127 mv.visitVarInsn(ALOAD, 0); in createClass()
128 mv.visitMethodInsn(INVOKESPECIAL, "java/lang/Object", "<init>", "()V", false); in createClass()
129 mv.visitInsn(RETURN); in createClass()
130 mv.visitEnd(); in createClass()
133 mv = cw.visitMethod( in createClass()
139 mv.visitParameter("str", 0); in createClass()
140 mv.visitCode(); in createClass()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.h24 // Max full pel mv specified in the unit of full pixel
35 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_mv, const uint8_t *second_pred,
61 int vp9_refining_search_sad(const struct macroblock *x, struct mv *ref_mv,
[all …]
Dvp9_mcomp.c33 const MV *mv) { in get_buf_from_mv() argument
34 return &buf->buf[mv->row * buf->stride + mv->col]; in get_buf_from_mv()
37 void vp9_set_mv_search_range(MvLimits *mv_limits, const MV *mv) { in vp9_set_mv_search_range() argument
38 int col_min = (mv->col >> 3) - MAX_FULL_PEL_VAL + (mv->col & 7 ? 1 : 0); in vp9_set_mv_search_range()
39 int row_min = (mv->row >> 3) - MAX_FULL_PEL_VAL + (mv->row & 7 ? 1 : 0); in vp9_set_mv_search_range()
40 int col_max = (mv->col >> 3) + MAX_FULL_PEL_VAL; in vp9_set_mv_search_range()
41 int row_max = (mv->row >> 3) + MAX_FULL_PEL_VAL; in vp9_set_mv_search_range()
48 // Get intersection of UMV window and valid MV window to reduce # of checks in vp9_set_mv_search_range()
58 const MV *ref_mv) { in vp9_set_subpel_mv_search_range()
85 static INLINE int mv_cost(const MV *mv, const int *joint_cost, in mv_cost() argument
[all …]
/external/libvpx/libvpx/vp8/common/
Dreconinter.c64 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + in vp8_build_inter_predictors_b()
65 (d->bmi.mv.as_mv.col >> 3); in vp8_build_inter_predictors_b()
67 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) { in vp8_build_inter_predictors_b()
68 sppf(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, in vp8_build_inter_predictors_b()
86 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + in build_inter_predictors4b()
87 (d->bmi.mv.as_mv.col >> 3); in build_inter_predictors4b()
89 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7) { in build_inter_predictors4b()
90 x->subpixel_predict8x8(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, in build_inter_predictors4b()
91 d->bmi.mv.as_mv.row & 7, dst, dst_stride); in build_inter_predictors4b()
101 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + in build_inter_predictors2b()
[all …]
Dfindnearmv.h15 #include "mv.h"
34 static INLINE void vp8_clamp_mv2(int_mv *mv, const MACROBLOCKD *xd) { in vp8_clamp_mv2() argument
35 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN)) { in vp8_clamp_mv2()
36 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN; in vp8_clamp_mv2()
37 } else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN) { in vp8_clamp_mv2()
38 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN; in vp8_clamp_mv2()
41 if (mv->as_mv.row < (xd->mb_to_top_edge - LEFT_TOP_MARGIN)) { in vp8_clamp_mv2()
42 mv->as_mv.row = xd->mb_to_top_edge - LEFT_TOP_MARGIN; in vp8_clamp_mv2()
43 } else if (mv->as_mv.row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN) { in vp8_clamp_mv2()
44 mv->as_mv.row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN; in vp8_clamp_mv2()
[all …]
/external/libaom/libaom/av1/encoder/
Dmcomp.h26 // Max full pel mv specified in the unit of full pixel
42 MV mv; member
53 MV coord;
60 void av1_set_mv_search_range(MvLimits *mv_limits, const MV *mv);
62 int av1_mv_bit_cost(const MV *mv, const MV *ref, const int *mvjcost,
65 // Utility to compute variance + MV rate cost for a given MV
66 int av1_get_mvpred_var(const MACROBLOCK *x, const MV *best_mv,
67 const MV *center_mv, const aom_variance_fn_ptr_t *vfp,
69 int av1_get_mvpred_av_var(const MACROBLOCK *x, const MV *best_mv,
70 const MV *center_mv, const uint8_t *second_pred,
[all …]
Dmcomp.c39 const MV *mv) { in get_buf_from_mv() argument
40 return &buf->buf[mv->row * buf->stride + mv->col]; in get_buf_from_mv()
43 void av1_set_mv_search_range(MvLimits *mv_limits, const MV *mv) { in av1_set_mv_search_range() argument
44 int col_min = (mv->col >> 3) - MAX_FULL_PEL_VAL + (mv->col & 7 ? 1 : 0); in av1_set_mv_search_range()
45 int row_min = (mv->row >> 3) - MAX_FULL_PEL_VAL + (mv->row & 7 ? 1 : 0); in av1_set_mv_search_range()
46 int col_max = (mv->col >> 3) + MAX_FULL_PEL_VAL; in av1_set_mv_search_range()
47 int row_max = (mv->row >> 3) + MAX_FULL_PEL_VAL; in av1_set_mv_search_range()
54 // Get intersection of UMV window and valid MV window to reduce # of checks in av1_set_mv_search_range()
64 const MV *ref_mv) { in set_subpel_mv_search_range()
88 static INLINE int mv_cost(const MV *mv, const int *joint_cost, in mv_cost() argument
[all …]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
DClassProbesAdapterTest.java119 final MockMethodVisitor mv = new MockMethodVisitor(); in testVisitWithFrames() local
124 return mv; in testVisitWithFrames()
130 assertTrue(mv.frame); in testVisitWithFrames()
135 final MockMethodVisitor mv = new MockMethodVisitor(); in testVisitWithoutFrames() local
140 return mv; in testVisitWithoutFrames()
146 assertFalse(mv.frame); in testVisitWithoutFrames()
150 MethodVisitor mv = cv.visitMethod(0, "foo", "()V", null, null); in writeMethod() local
151 mv.visitCode(); in writeMethod()
152 mv.visitInsn(Opcodes.RETURN); in writeMethod()
153 mv.visitMaxs(0, 1); in writeMethod()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/RISCV/
Datomic-rmw.ll10 ; RV32I-NEXT: mv a2, zero
80 ; RV32I-NEXT: mv a2, zero
150 ; RV32I-NEXT: mv a2, zero
220 ; RV32I-NEXT: mv a2, zero
290 ; RV32I-NEXT: mv a2, zero
360 ; RV32I-NEXT: mv a2, zero
430 ; RV32I-NEXT: mv a2, zero
504 ; RV32I-NEXT: mv s2, a1
505 ; RV32I-NEXT: mv s4, a0
514 ; RV32I-NEXT: mv a2, a0
[all …]
/external/swiftshader/third_party/llvm-7.0/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/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/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
DInterfaceFieldProbeArrayStrategy.java53 public int storeInstance(final MethodVisitor mv, final boolean clinit, in storeInstance() argument
57 className, probeCount, mv); in storeInstance()
61 mv.visitInsn(Opcodes.DUP); in storeInstance()
66 mv.visitFieldInsn(Opcodes.PUTSTATIC, className, in storeInstance()
71 mv.visitVarInsn(Opcodes.ASTORE, variable); in storeInstance()
76 mv.visitMethodInsn(Opcodes.INVOKESTATIC, className, in storeInstance()
79 mv.visitVarInsn(Opcodes.ASTORE, variable); in storeInstance()
99 final MethodVisitor mv = cv.visitMethod(InstrSupport.INITMETHOD_ACC, in createInitMethod() local
102 mv.visitCode(); in createInitMethod()
105 mv.visitFieldInsn(Opcodes.GETSTATIC, className, in createInitMethod()
[all …]
DClassFieldProbeArrayStrategy.java51 public int storeInstance(final MethodVisitor mv, final boolean clinit, in storeInstance() argument
53 mv.visitMethodInsn(Opcodes.INVOKESTATIC, className, in storeInstance()
56 mv.visitVarInsn(Opcodes.ASTORE, variable); in storeInstance()
71 final MethodVisitor mv = cv.visitMethod(InstrSupport.INITMETHOD_ACC, in createInitMethod() local
74 mv.visitCode(); in createInitMethod()
77 mv.visitFieldInsn(Opcodes.GETSTATIC, className, in createInitMethod()
79 mv.visitInsn(Opcodes.DUP); in createInitMethod()
86 mv.visitJumpInsn(Opcodes.IFNONNULL, alreadyInitialized); in createInitMethod()
90 mv.visitInsn(Opcodes.POP); in createInitMethod()
91 final int size = genInitializeDataField(mv, probeCount); in createInitMethod()
[all …]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
DRuntimeDataTest.java120 MethodVisitor mv = writer.visitMethod(Opcodes.ACC_PUBLIC, "<init>", in testGenerateArgumentArray() local
122 mv.visitCode(); in testGenerateArgumentArray()
123 mv.visitVarInsn(Opcodes.ALOAD, 0); in testGenerateArgumentArray()
124 mv.visitMethodInsn(Opcodes.INVOKESPECIAL, "java/lang/Object", "<init>", in testGenerateArgumentArray()
126 mv.visitInsn(Opcodes.RETURN); in testGenerateArgumentArray()
127 mv.visitMaxs(1, 1); in testGenerateArgumentArray()
128 mv.visitEnd(); in testGenerateArgumentArray()
131 mv = writer.visitMethod(Opcodes.ACC_PUBLIC, "call", in testGenerateArgumentArray()
133 mv.visitCode(); in testGenerateArgumentArray()
134 RuntimeData.generateArgumentArray(1000, "Sample", 15, mv); in testGenerateArgumentArray()
[all …]
/external/toybox/tests/
Dmv.test5 # "touch two; chmod -w two; mv one two" shouldn't prompt to delete two if
17 "mv file file1 && [ ! -e file -a -f file1 ] && echo yes" \
24 "mv file dir && [ ! -e file -a -f dir/file ] && echo yes" \
30 "mv dir dir1 && [ ! -e dir -a -d dir1 ] && echo yes" \
38 "mv file1 file2 link1 dir1 dir2 &&
47 "mv file1 file2 && [ ! -e file1 -a -f file2 ] && stat -c %s file2" \
54 "mv link1 link2 && [ ! -e link1 -a -L link2 ] && readlink link2" \
62 "mv link1 link2 && [ ! -e link1 -a -f link2 -a file1 -ef link2 ] && echo yes" \
70 "mv file1 file2 && [ ! -e file1 -a -f file2 ] && echo yes" \
78 "mv file1 link1 dir1 &&
[all …]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
DResizeInstructionsTest.java68 final MethodVisitor mv = cv.visitMethod(0, "m", "()V", null, in should_not_loose_InnerClasses_attribute()
70 mv.visitCode(); in should_not_loose_InnerClasses_attribute()
71 addCauseOfResizeInstructions(mv); in should_not_loose_InnerClasses_attribute()
72 mv.visitInsn(Opcodes.NOP); in should_not_loose_InnerClasses_attribute()
73 mv.visitMaxs(2, 1); in should_not_loose_InnerClasses_attribute()
74 mv.visitEnd(); in should_not_loose_InnerClasses_attribute()
111 final MethodVisitor mv = cw.visitMethod(Opcodes.ACC_PUBLIC, "m", "()V", in should_not_require_computation_of_common_superclass() local
113 mv.visitCode(); in should_not_require_computation_of_common_superclass()
114 addCauseOfResizeInstructions(mv); in should_not_require_computation_of_common_superclass()
115 addCauseOfGetCommonSuperClass(mv); in should_not_require_computation_of_common_superclass()
[all …]
/external/libvpx/libvpx/vp9/common/
Dvp9_reconinter.c25 const MV *src_mv, const struct scale_factors *sf, int w, int h, int ref, in vp9_highbd_build_inter_predictor()
29 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2, in vp9_highbd_build_inter_predictor()
31 MV32 mv = vp9_scale_mv(&mv_q4, x, y, sf); in vp9_highbd_build_inter_predictor() local
32 const int subpel_x = mv.col & SUBPEL_MASK; in vp9_highbd_build_inter_predictor()
33 const int subpel_y = mv.row & SUBPEL_MASK; in vp9_highbd_build_inter_predictor()
35 src += (mv.row >> SUBPEL_BITS) * src_stride + (mv.col >> SUBPEL_BITS); in vp9_highbd_build_inter_predictor()
44 int dst_stride, const MV *src_mv, in vp9_build_inter_predictor()
49 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2, in vp9_build_inter_predictor()
51 MV32 mv = vp9_scale_mv(&mv_q4, x, y, sf); in vp9_build_inter_predictor() local
52 const int subpel_x = mv.col & SUBPEL_MASK; in vp9_build_inter_predictor()
[all …]
Dvp9_mv.h22 typedef struct mv { struct
25 } MV; typedef
29 MV as_mv;
37 static INLINE int is_zero_mv(const MV *mv) { in is_zero_mv() argument
38 return *((const uint32_t *)mv) == 0; 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, int min_row, in clamp_mv() argument
47 mv->col = clamp(mv->col, min_col, max_col); in clamp_mv()
48 mv->row = clamp(mv->row, min_row, max_row); in clamp_mv()
Dvp9_mvref_common.h44 // adding 9 for each intra block, 3 for each zero mv and 1 for each new
216 static INLINE void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) { in clamp_mv_ref() argument
217 clamp_mv(mv, xd->mb_to_left_edge - MV_BORDER, in clamp_mv_ref()
222 // This function returns either the appropriate sub block or block's mv
230 : candidate->mv[which_mv]; in get_sub_block_mv()
233 // Performs mv sign inversion if indicated by the reference frame combination.
237 int_mv mv = mi->mv[ref]; in scale_mv() local
239 mv.as_mv.row *= -1; in scale_mv()
240 mv.as_mv.col *= -1; in scale_mv()
242 return mv; in scale_mv()
[all …]
/external/swiftshader/third_party/LLVM/test/Transforms/MemCpyOpt/
Dform-memset.ll61 %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]* %up_mvd, i32 0, i32 7, i32 0 ; <i16*> [#uses=1]
86 %tmp46 = getelementptr [8 x %struct.MV]* %up_mvd, i32 0, i32 7, i32 1 ; <i16*> [#uses=1]
88 %tmp57 = getelementptr [8 x %struct.MV]* %up_mvd, i32 0, i32 6, i32 0 ; <i16*> [#uses=1]
90 %tmp60 = getelementptr [8 x %struct.MV]* %up_mvd, i32 0, i32 6, i32 1 ; <i16*> [#uses=1]
92 %tmp71 = getelementptr [8 x %struct.MV]* %up_mvd, i32 0, i32 5, i32 0 ; <i16*> [#uses=1]
94 %tmp74 = getelementptr [8 x %struct.MV]* %up_mvd, i32 0, i32 5, i32 1 ; <i16*> [#uses=1]
96 %tmp85 = getelementptr [8 x %struct.MV]* %up_mvd, i32 0, i32 4, i32 0 ; <i16*> [#uses=1]
[all …]
/external/libhevc/decoder/
Dihevcd_mv_merge.c100 ps_mv_1 = &ps_pu_1->mv; in ihevcd_compare_pu_t()
101 ps_mv_2 = &ps_pu_2->mv; in ihevcd_compare_pu_t()
233 as_mv_col[0] = ps_col_pu->mv.s_l1_mv; in ihevcd_collocated_mvp()
234 au4_ref_idx_col[0] = ps_col_pu->mv.i1_l1_ref_idx; in ihevcd_collocated_mvp()
237 as_mv_col[1] = ps_col_pu->mv.s_l1_mv; in ihevcd_collocated_mvp()
238 au4_ref_idx_col[1] = ps_col_pu->mv.i1_l1_ref_idx; in ihevcd_collocated_mvp()
245 as_mv_col[0] = ps_col_pu->mv.s_l0_mv; in ihevcd_collocated_mvp()
246 au4_ref_idx_col[0] = ps_col_pu->mv.i1_l0_ref_idx; in ihevcd_collocated_mvp()
249 as_mv_col[1] = ps_col_pu->mv.s_l0_mv; in ihevcd_collocated_mvp()
250 au4_ref_idx_col[1] = ps_col_pu->mv.i1_l0_ref_idx; in ihevcd_collocated_mvp()
[all …]
Dihevcd_inter_pred.c233 …ps_pic_buf_l0 = (pic_buf_t *)((ps_slice_hdr->as_ref_pic_list0[ps_pu->mv.i1_l0_ref_idx].pv_pic_buf)… in ihevcd_inter_pred_ctb()
238 luma_weight_l0 = ps_slice_hdr->s_wt_ofst.i2_luma_weight_l0[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
239 … chroma_weight_l0_cb = ps_slice_hdr->s_wt_ofst.i2_chroma_weight_l0_cb[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
240 … chroma_weight_l0_cr = ps_slice_hdr->s_wt_ofst.i2_chroma_weight_l0_cr[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
242 luma_offset_l0 = ps_slice_hdr->s_wt_ofst.i2_luma_offset_l0[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
243 … chroma_offset_l0_cb = ps_slice_hdr->s_wt_ofst.i2_chroma_offset_l0_cb[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
244 … chroma_offset_l0_cr = ps_slice_hdr->s_wt_ofst.i2_chroma_offset_l0_cr[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
250 …ps_pic_buf_l1 = (pic_buf_t *)((ps_slice_hdr->as_ref_pic_list1[ps_pu->mv.i1_l1_ref_idx].pv_pic_buf)… in ihevcd_inter_pred_ctb()
254 luma_weight_l1 = ps_slice_hdr->s_wt_ofst.i2_luma_weight_l1[ps_pu->mv.i1_l1_ref_idx]; in ihevcd_inter_pred_ctb()
255 … chroma_weight_l1_cb = ps_slice_hdr->s_wt_ofst.i2_chroma_weight_l1_cb[ps_pu->mv.i1_l1_ref_idx]; in ihevcd_inter_pred_ctb()
[all …]
/external/libvpx/libvpx/vp8/decoder/
Ddecodemv.c91 static void read_mv(vp8_reader *r, MV *mv, const MV_CONTEXT *mvc) { in read_mv() argument
92 mv->row = (short)(read_mvcomponent(r, mvc) * 2); in read_mv()
93 mv->col = (short)(read_mvcomponent(r, ++mvc) * 2); in read_mv()
221 leftmv.as_int = left_mb->mbmi.mv.as_int; in decode_split_mv()
223 leftmv.as_int = (left_mb->bmi + k + 4 - 1)->mv.as_int; in decode_split_mv()
226 leftmv.as_int = (mi->bmi + k - 1)->mv.as_int; in decode_split_mv()
232 abovemv.as_int = above_mb->mbmi.mv.as_int; in decode_split_mv()
234 abovemv.as_int = (above_mb->bmi + k + 16 - 4)->mv.as_int; in decode_split_mv()
237 abovemv.as_int = (mi->bmi + k - 4)->mv.as_int; in decode_split_mv()
273 mi->bmi[*fill_offset].mv.as_int = blockmv.as_int; in decode_split_mv()
[all …]

12345678910>>...94