Lines Matching refs:col
187 WORD32 row, col; in ih264e_sixtap_filter_2dvh_vert() local
194 for (col = -2; col < wd + 3; col++) in ih264e_sixtap_filter_2dvh_vert()
196 tmp = ih264_g_six_tap[0] * (pu1_src[col - 2 * src_strd] + pu1_src[col + 3 * src_strd]) + in ih264e_sixtap_filter_2dvh_vert()
197 … ih264_g_six_tap[1] * (pu1_src[col - 1 * src_strd] + pu1_src[col + 2 * src_strd]) + in ih264e_sixtap_filter_2dvh_vert()
198 ih264_g_six_tap[2] * (pu1_src[col] + pu1_src[col + 1 * src_strd]); in ih264e_sixtap_filter_2dvh_vert()
200 pi4_pred_temp[col] = tmp; in ih264e_sixtap_filter_2dvh_vert()
209 for (col = 0; col < wd; col++) in ih264e_sixtap_filter_2dvh_vert()
211 tmp = (pi4_pred[col - 2] + pi4_pred[col + 3]) + in ih264e_sixtap_filter_2dvh_vert()
212 ih264_g_six_tap[1] * (pi4_pred[col - 1] + pi4_pred[col + 2]) + in ih264e_sixtap_filter_2dvh_vert()
213 ih264_g_six_tap[2] * (pi4_pred[col] + pi4_pred[col + 1]); in ih264e_sixtap_filter_2dvh_vert()
217 pu1_dst2[col] = CLIP_U8(tmp); in ih264e_sixtap_filter_2dvh_vert()
218 pu1_dst1[col] = CLIP_U8((pi4_pred[col] + 16) >> 5); in ih264e_sixtap_filter_2dvh_vert()