Lines Matching refs:i
10 for (i = 0; i < 10; i++) { \
11 if (i == 0) { \
13 } else if ( i == 1) { \
15 } else if ( i == 2) { \
17 } else if ( i == 7) { \
19 } else if (i == 8) { \
22 uv_ptr = uv_mode[i]; \
24 memcpy(&uv_mode_prob[i], uv_ptr, 9); \
31 int i; in vp9d_fill_segmentation() local
39 for (i = 0; i < 7; i++) { in vp9d_fill_segmentation()
40 seg->tree_probs[i] = s->prob.seg[i]; in vp9d_fill_segmentation()
47 for (i = 0; i < 8; i++) { in vp9d_fill_segmentation()
48 seg->feature_data[i][0] = s->segmentation.feat[i].q_val; in vp9d_fill_segmentation()
49 seg->feature_data[i][1] = s->segmentation.feat[i].lf_val; in vp9d_fill_segmentation()
50 seg->feature_data[i][2] = s->segmentation.feat[i].ref_val; in vp9d_fill_segmentation()
51 seg->feature_data[i][3] = s->segmentation.feat[i].skip_enabled; in vp9d_fill_segmentation()
52 seg->feature_mask[i] = s->segmentation.feat[i].q_enabled in vp9d_fill_segmentation()
53 | (s->segmentation.feat[i].lf_enabled << 1) in vp9d_fill_segmentation()
54 | (s->segmentation.feat[i].ref_enabled << 2) in vp9d_fill_segmentation()
55 | (s->segmentation.feat[i].skip_enabled << 3); in vp9d_fill_segmentation()
57 mpp_log("seg->feature_data[%d][0] = 0x%x", i, seg->feature_data[i][0]); in vp9d_fill_segmentation()
59 mpp_log("seg->feature_data[%d][1] = 0x%x", i, seg->feature_data[i][0]); in vp9d_fill_segmentation()
61 mpp_log("seg->feature_data[%d][2] = 0x%x", i, seg->feature_data[i][0]); in vp9d_fill_segmentation()
63 mpp_log("seg->feature_data[%d][3] = 0x%x", i, seg->feature_data[i][0]); in vp9d_fill_segmentation()
64 mpp_log("seg->feature_mask[%d] = 0x%x", i, seg->feature_mask[i]); in vp9d_fill_segmentation()
79 int i; in vp9d_fill_picparams() local
102 for (i = 0; i < 8; i++) { in vp9d_fill_picparams()
103 pic->ref_frame_map[i].Index7Bits = s->refs[i].slot_index; in vp9d_fill_picparams()
104 pic->ref_frame_coded_width[i] = mpp_frame_get_width(s->refs[i].f); in vp9d_fill_picparams()
105 pic->ref_frame_coded_height[i] = mpp_frame_get_height(s->refs[i].f); in vp9d_fill_picparams()
151 for (i = MPP_ARRAY_ELEMS(pic->prob.partition) - 1; i >= 0; i--) { in vp9d_fill_picparams()
152 memcpy(&partition_probs[m][0], &pic->prob.partition[i][0][0], len); in vp9d_fill_picparams()
153 memcpy(&partition_probs_flag[m][0], &prob_flag->partition[i][0][0], len); in vp9d_fill_picparams()
154 memcpy(&partition_probs_delata[m][0], &prob_delta->partition[i][0][0], len); in vp9d_fill_picparams()