| /external/llvm/unittests/ADT/ | 
| D | MapVectorTest.cpp | 43   MapVector<int, int> MV;  in TEST()  local46   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/ | 
| D | Bug62060793TestDataGenerator.java | 106     MethodVisitor mv;  in createClass()  local125       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/vp9/encoder/ | 
| D | vp9_mcomp.h | 27 // Max full pel mv specified in the unit of full pixel38   MV ss_mv[8 * MAX_MVSEARCH_STEPS];        // Motion vector
 45                                              const MV *mv) {  in get_buf_from_mv()  argument
 46   return &buf->buf[mv->row * buf->stride + mv->col];  in get_buf_from_mv()
 52 void vp9_set_mv_search_range(MvLimits *mv_limits, const MV *mv);
 53 int vp9_mv_bit_cost(const MV *mv, const MV *ref, const int *mvjcost,
 56 // Utility to compute variance + MV rate cost for a given MV
 57 int vp9_get_mvpred_var(const MACROBLOCK *x, const MV *best_mv,
 58                        const MV *center_mv, const vp9_variance_fn_ptr_t *vfp,
 60 int vp9_get_mvpred_av_var(const MACROBLOCK *x, const MV *best_mv,
 [all …]
 
 | 
| D | vp9_mcomp.c | 32 void vp9_set_mv_search_range(MvLimits *mv_limits, const MV *mv) {  in vp9_set_mv_search_range()  argument33   int col_min = (mv->col >> 3) - MAX_FULL_PEL_VAL + (mv->col & 7 ? 1 : 0);  in vp9_set_mv_search_range()
 34   int row_min = (mv->row >> 3) - MAX_FULL_PEL_VAL + (mv->row & 7 ? 1 : 0);  in vp9_set_mv_search_range()
 35   int col_max = (mv->col >> 3) + MAX_FULL_PEL_VAL;  in vp9_set_mv_search_range()
 36   int row_max = (mv->row >> 3) + MAX_FULL_PEL_VAL;  in vp9_set_mv_search_range()
 43   // Get intersection of UMV window and valid MV window to reduce # of checks  in vp9_set_mv_search_range()
 53                                     const MV *ref_mv) {  in vp9_set_subpel_mv_search_range()
 80 static INLINE int mv_cost(const MV *mv, const int *joint_cost,  in mv_cost()  argument
 82   assert(mv->row >= -MV_MAX && mv->row < MV_MAX);  in mv_cost()
 83   assert(mv->col >= -MV_MAX && mv->col < MV_MAX);  in mv_cost()
 [all …]
 
 | 
| /external/oss-fuzz/projects/skia/ | 
| D | build.sh | 56 mv libGLESv2_deprecated.so libEGL_deprecated.so $OUT167 mv out/Fuzz/region_deserialize $OUT/region_deserialize
 169 mv out/Fuzz/region_set_path $OUT/region_set_path
 170 mv ../skia_data/region_set_path_seed_corpus.zip $OUT/region_set_path_seed_corpus.zip
 172 mv out/Fuzz/textblob_deserialize $OUT/textblob_deserialize
 173 mv ../skia_data/textblob_deserialize_seed_corpus.zip $OUT/textblob_deserialize_seed_corpus.zip
 175 mv out/Fuzz/path_deserialize $OUT/path_deserialize
 176 mv ../skia_data/path_deserialize_seed_corpus.zip $OUT/path_deserialize_seed_corpus.zip
 178 mv out/Fuzz/animated_image_decode $OUT/animated_image_decode
 179 mv ../skia_data/animated_image_decode_seed_corpus.zip $OUT/animated_image_decode_seed_corpus.zip
 [all …]
 
 | 
| /external/libvpx/vp8/common/ | 
| D | reconinter.c | 64   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 …]
 
 | 
| D | findnearmv.h | 15 #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/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/ | 
| D | ClassProbesAdapterTest.java | 120 		final MockMethodVisitor mv = new MockMethodVisitor();  in testVisitWithFrames()  local125 				return mv;  in testVisitWithFrames()
 131 		assertTrue(mv.frame);  in testVisitWithFrames()
 136 		final MockMethodVisitor mv = new MockMethodVisitor();  in testVisitWithoutFrames()  local
 141 				return mv;  in testVisitWithoutFrames()
 147 		assertFalse(mv.frame);  in testVisitWithoutFrames()
 151 		MethodVisitor mv = cv.visitMethod(0, "foo", "()V", null, null);  in writeMethod()  local
 152 		mv.visitCode();  in writeMethod()
 153 		mv.visitInsn(Opcodes.RETURN);  in writeMethod()
 154 		mv.visitMaxs(0, 1);  in writeMethod()
 [all …]
 
 | 
| /external/libgav1/src/dsp/ | 
| D | motion_vector_search.cc | 51             &candidate_mvs[index].mv[i]);  in MvProjectionCompoundLowPrecision_C()52         for (auto& mv : candidate_mvs[index].mv[i].mv) {  in MvProjectionCompoundLowPrecision_C()  local
 54           // if ((mv & 1) != 0) mv += (mv > 0) ? -1 : 1;  in MvProjectionCompoundLowPrecision_C()
 55           mv = (mv - (mv >> 15)) & ~1;  in MvProjectionCompoundLowPrecision_C()
 78             &candidate_mvs[index].mv[i]);  in MvProjectionCompoundForceInteger_C()
 79         for (auto& mv : candidate_mvs[index].mv[i].mv) {  in MvProjectionCompoundForceInteger_C()  local
 81           // const int value = (std::abs(static_cast<int>(mv)) + 3) & ~7;  in MvProjectionCompoundForceInteger_C()
 82           // const int sign = mv >> 15;  in MvProjectionCompoundForceInteger_C()
 83           // mv = ApplySign(value, sign);  in MvProjectionCompoundForceInteger_C()
 84           mv = (mv + 3 - (mv >> 15)) & ~7;  in MvProjectionCompoundForceInteger_C()
 [all …]
 
 | 
| /external/llvm/test/Transforms/MemCpyOpt/ | 
| D | form-memset.ll | 60 %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/ | 
| D | InterfaceFieldProbeArrayStrategy.java | 55 	public int storeInstance(final MethodVisitor mv, final boolean clinit,  in storeInstance()  argument59 					className, probeCount, mv);  in storeInstance()
 63 			mv.visitInsn(Opcodes.DUP);  in storeInstance()
 68 			mv.visitFieldInsn(Opcodes.PUTSTATIC, className,  in storeInstance()
 73 			mv.visitVarInsn(Opcodes.ASTORE, variable);  in storeInstance()
 78 			mv.visitMethodInsn(Opcodes.INVOKESTATIC, className,  in storeInstance()
 81 			mv.visitVarInsn(Opcodes.ASTORE, variable);  in storeInstance()
 101 		final MethodVisitor mv = cv.visitMethod(InstrSupport.INITMETHOD_ACC,  in createInitMethod()  local
 104 		mv.visitCode();  in createInitMethod()
 107 		mv.visitFieldInsn(Opcodes.GETSTATIC, className,  in createInitMethod()
 [all …]
 
 | 
| D | ClassFieldProbeArrayStrategy.java | 53 	public int storeInstance(final MethodVisitor mv, final boolean clinit,  in storeInstance()  argument55 		mv.visitMethodInsn(Opcodes.INVOKESTATIC, className,  in storeInstance()
 58 		mv.visitVarInsn(Opcodes.ASTORE, variable);  in storeInstance()
 73 		final MethodVisitor mv = cv.visitMethod(InstrSupport.INITMETHOD_ACC,  in createInitMethod()  local
 76 		mv.visitCode();  in createInitMethod()
 79 		mv.visitFieldInsn(Opcodes.GETSTATIC, className,  in createInitMethod()
 81 		mv.visitInsn(Opcodes.DUP);  in createInitMethod()
 88 		mv.visitJumpInsn(Opcodes.IFNONNULL, alreadyInitialized);  in createInitMethod()
 92 		mv.visitInsn(Opcodes.POP);  in createInitMethod()
 93 		final int size = genInitializeDataField(mv, probeCount);  in createInitMethod()
 [all …]
 
 | 
| /external/libaom/av1/common/ | 
| D | mv.h | 31 #define MARK_MV_INVALID(mv)                \  argument33     ((int_mv *)(mv))->as_int = INVALID_MV; \
 44 typedef struct mv {  struct
 47 } MV;  typedef
 49 static const MV kZeroMv = { 0, 0 };
 54   MV as_mv;
 63 // The mv limit for fullpel mvs  argument
 71 // The mv limit for subpel mvs
 79 static AOM_INLINE FULLPEL_MV get_fullmv_from_mv(const MV *subpel_mv) {  in get_fullmv_from_mv()
 85 static AOM_INLINE MV get_mv_from_fullmv(const FULLPEL_MV *full_mv) {  in get_mv_from_fullmv()
 [all …]
 
 | 
| /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/ | 
| D | RuntimeDataTest.java | 121 		MethodVisitor mv = writer.visitMethod(Opcodes.ACC_PUBLIC, "<init>",  in testGenerateArgumentArray()  local123 		mv.visitCode();  in testGenerateArgumentArray()
 124 		mv.visitVarInsn(Opcodes.ALOAD, 0);  in testGenerateArgumentArray()
 125 		mv.visitMethodInsn(Opcodes.INVOKESPECIAL, "java/lang/Object", "<init>",  in testGenerateArgumentArray()
 127 		mv.visitInsn(Opcodes.RETURN);  in testGenerateArgumentArray()
 128 		mv.visitMaxs(1, 1);  in testGenerateArgumentArray()
 129 		mv.visitEnd();  in testGenerateArgumentArray()
 132 		mv = writer.visitMethod(Opcodes.ACC_PUBLIC, "call",  in testGenerateArgumentArray()
 134 		mv.visitCode();  in testGenerateArgumentArray()
 135 		RuntimeData.generateArgumentArray(1000, "Sample", 15, mv);  in testGenerateArgumentArray()
 [all …]
 
 | 
| /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/instr/ | 
| D | ResizeInstructionsTest.java | 70 				final MethodVisitor mv = cv.visitMethod(0, "m", "()V", null,  in should_not_loose_InnerClasses_attribute()72 				mv.visitCode();  in should_not_loose_InnerClasses_attribute()
 73 				addCauseOfResizeInstructions(mv);  in should_not_loose_InnerClasses_attribute()
 74 				mv.visitInsn(Opcodes.NOP);  in should_not_loose_InnerClasses_attribute()
 75 				mv.visitMaxs(2, 1);  in should_not_loose_InnerClasses_attribute()
 76 				mv.visitEnd();  in should_not_loose_InnerClasses_attribute()
 115 		final MethodVisitor mv = cw.visitMethod(Opcodes.ACC_PUBLIC, "m", "()V",  in should_not_require_computation_of_common_superclass()  local
 117 		mv.visitCode();  in should_not_require_computation_of_common_superclass()
 118 		addCauseOfResizeInstructions(mv);  in should_not_require_computation_of_common_superclass()
 119 		addCauseOfGetCommonSuperClass(mv);  in should_not_require_computation_of_common_superclass()
 [all …]
 
 | 
| /external/ow2-asm/asm-commons/src/main/java/org/objectweb/asm/commons/ | 
| D | InstructionAdapter.java | 681     mv.visitInsn(Opcodes.NOP);  in nop()696       mv.visitInsn(Opcodes.ACONST_NULL);  in aconst()
 698       mv.visitLdcInsn(value);  in aconst()
 709       mv.visitInsn(Opcodes.ICONST_0 + intValue);  in iconst()
 711       mv.visitIntInsn(Opcodes.BIPUSH, intValue);  in iconst()
 713       mv.visitIntInsn(Opcodes.SIPUSH, intValue);  in iconst()
 715       mv.visitLdcInsn(intValue);  in iconst()
 726       mv.visitInsn(Opcodes.LCONST_0 + (int) longValue);  in lconst()
 728       mv.visitLdcInsn(longValue);  in lconst()
 740       mv.visitInsn(Opcodes.FCONST_0 + (int) floatValue);  in fconst()
 [all …]
 
 | 
| /external/libaom/av1/encoder/ | 
| D | mcomp.h | 15 #include "av1/common/mv.h"33   MV_COST_ENTROPY,    // Use the entropy rate of the mv as the cost
 34   MV_COST_L1_LOWRES,  // Use the l1 norm of the mv as the cost (<480p)
 35   MV_COST_L1_MIDRES,  // Use the l1 norm of the mv as the cost (>=480p)
 36   MV_COST_L1_HDRES,   // Use the l1 norm of the mv as the cost (>=720p)
 37   MV_COST_NONE        // Use 0 as as cost irrespective of the current mv
 41   // The reference mv used to compute the mv cost
 42   const MV *ref_mv;
 52 int av1_mv_bit_cost(const MV *mv, const MV *ref_mv, const int *mvjcost,
 119   int mesh_search_mv_diff_threshold;  // mv diff threshold to enable
 [all …]
 
 | 
| D | encodemv.h | 21 void av1_encode_mv(AV1_COMP *cpi, aom_writer *w, ThreadData *td, const MV *mv,22                    const MV *ref, nmv_context *mvctx, int usehp);
 24 void av1_update_mv_stats(const MV *mv, const MV *ref, nmv_context *mvctx,
 36 void av1_encode_dv(aom_writer *w, const MV *mv, const MV *ref,
 49 static INLINE MV_JOINT_TYPE av1_get_mv_joint(const MV *mv) {  in av1_get_mv_joint()  argument
 54   return (!!mv->col) | ((!!mv->row) << 1);  in av1_get_mv_joint()
 84     if (mbmi->mv[0].as_int == ref_mv_0.as_int ||  in av1_check_newmv_joint_nonzero()
 85         mbmi->mv[1].as_int == ref_mv_1.as_int) {  in av1_check_newmv_joint_nonzero()
 90     if (mbmi->mv[1].as_int == ref_mv_1.as_int) {  in av1_check_newmv_joint_nonzero()
 95     if (mbmi->mv[0].as_int == ref_mv_0.as_int) {  in av1_check_newmv_joint_nonzero()
 [all …]
 
 | 
| /external/toybox/tests/ | 
| D | mv.test | 5 # "touch two; chmod -w two; mv one two" shouldn't prompt to delete two if17   "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/libgav1/src/ | 
| D | motion_vector.cc | 43     for (auto& mv : mvs->mv) {  in LowerMvPrecision()  local45       // const int value = (std::abs(static_cast<int>(mv)) + 3) & ~7;  in LowerMvPrecision()
 46       // const int sign = mv >> 15;  in LowerMvPrecision()
 47       // mv = ApplySign(value, sign);  in LowerMvPrecision()
 48       mv = (mv + 3 - (mv >> 15)) & ~7;  in LowerMvPrecision()
 51     for (auto& mv : mvs->mv) {  in LowerMvPrecision()  local
 53       // if ((mv & 1) != 0) mv += (mv > 0) ? -1 : 1;  in LowerMvPrecision()
 54       mv = (mv - (mv >> 15)) & ~1;  in LowerMvPrecision()
 61                    MotionVector* const mv) {  in SetupGlobalMv()  argument
 68     mv->mv32 = 0;  in SetupGlobalMv()
 [all …]
 
 | 
| /external/libvpx/vp9/common/ | 
| D | vp9_mv.h | 24 typedef struct mv {  struct27 } MV;  typedef
 31   MV as_mv;
 39 static INLINE int is_zero_mv(const MV *mv) {  in is_zero_mv()  argument
 40   return *((const uint32_t *)mv) == 0;  in is_zero_mv()
 43 static INLINE int is_equal_mv(const MV *a, const MV *b) {  in is_equal_mv()
 47 static INLINE void clamp_mv(MV *mv, int min_col, int max_col, int min_row,  in clamp_mv()  argument
 49   mv->col = clamp(mv->col, min_col, max_col);  in clamp_mv()
 50   mv->row = clamp(mv->row, min_row, max_row);  in clamp_mv()
 
 | 
| D | vp9_reconinter.c | 25     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 …]
 
 | 
| D | vp9_mvref_common.h | 44 // adding 9 for each intra block, 3 for each zero mv and 1 for each new216 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/libhevc/decoder/ | 
| D | ihevcd_mv_merge.c | 100     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 …]
 
 | 
| D | ihevcd_inter_pred.c | 233 …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 …]
 
 |