Lines Matching refs:u4_g
129 UWORD32 u4_r, u4_g, u4_b; in ihevcd_fmt_conv_420sp_to_rgb565() local
165 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ihevcd_fmt_conv_420sp_to_rgb565()
166 u4_g >>= 2; in ihevcd_fmt_conv_420sp_to_rgb565()
172 *pu2_rgb_dst++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ihevcd_fmt_conv_420sp_to_rgb565()
179 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ihevcd_fmt_conv_420sp_to_rgb565()
180 u4_g >>= 2; in ihevcd_fmt_conv_420sp_to_rgb565()
186 *pu2_rgb_dst++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ihevcd_fmt_conv_420sp_to_rgb565()
193 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ihevcd_fmt_conv_420sp_to_rgb565()
194 u4_g >>= 2; in ihevcd_fmt_conv_420sp_to_rgb565()
200 *pu2_rgb_dst_NextRow++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ihevcd_fmt_conv_420sp_to_rgb565()
207 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ihevcd_fmt_conv_420sp_to_rgb565()
208 u4_g >>= 2; in ihevcd_fmt_conv_420sp_to_rgb565()
214 *pu2_rgb_dst_NextRow++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ihevcd_fmt_conv_420sp_to_rgb565()
244 UWORD32 u4_r, u4_g, u4_b; in ihevcd_fmt_conv_420sp_to_rgba8888() local
279 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ihevcd_fmt_conv_420sp_to_rgba8888()
284 *pu4_rgba_dst++ = ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ihevcd_fmt_conv_420sp_to_rgba8888()
290 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ihevcd_fmt_conv_420sp_to_rgba8888()
295 *pu4_rgba_dst++ = ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ihevcd_fmt_conv_420sp_to_rgba8888()
301 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ihevcd_fmt_conv_420sp_to_rgba8888()
306 *pu4_rgba_dst_NextRow++ = ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ihevcd_fmt_conv_420sp_to_rgba8888()
312 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ihevcd_fmt_conv_420sp_to_rgba8888()
317 *pu4_rgba_dst_NextRow++ = ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ihevcd_fmt_conv_420sp_to_rgba8888()