Lines Matching refs:u4_g

127     UWORD32  u4_r, u4_g, u4_b;  in ihevcd_fmt_conv_420sp_to_rgb565()  local
163 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ihevcd_fmt_conv_420sp_to_rgb565()
164 u4_g >>= 2; in ihevcd_fmt_conv_420sp_to_rgb565()
170 *pu2_rgb_dst++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ihevcd_fmt_conv_420sp_to_rgb565()
177 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ihevcd_fmt_conv_420sp_to_rgb565()
178 u4_g >>= 2; in ihevcd_fmt_conv_420sp_to_rgb565()
184 *pu2_rgb_dst++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ihevcd_fmt_conv_420sp_to_rgb565()
191 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ihevcd_fmt_conv_420sp_to_rgb565()
192 u4_g >>= 2; in ihevcd_fmt_conv_420sp_to_rgb565()
198 *pu2_rgb_dst_NextRow++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ihevcd_fmt_conv_420sp_to_rgb565()
205 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ihevcd_fmt_conv_420sp_to_rgb565()
206 u4_g >>= 2; in ihevcd_fmt_conv_420sp_to_rgb565()
212 *pu2_rgb_dst_NextRow++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ihevcd_fmt_conv_420sp_to_rgb565()
242 UWORD32 u4_r, u4_g, u4_b; in ihevcd_fmt_conv_420sp_to_rgba8888() local
277 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ihevcd_fmt_conv_420sp_to_rgba8888()
282 *pu4_rgba_dst++ = ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ihevcd_fmt_conv_420sp_to_rgba8888()
288 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ihevcd_fmt_conv_420sp_to_rgba8888()
293 *pu4_rgba_dst++ = ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ihevcd_fmt_conv_420sp_to_rgba8888()
299 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ihevcd_fmt_conv_420sp_to_rgba8888()
304 *pu4_rgba_dst_NextRow++ = ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ihevcd_fmt_conv_420sp_to_rgba8888()
310 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ihevcd_fmt_conv_420sp_to_rgba8888()
315 *pu4_rgba_dst_NextRow++ = ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ihevcd_fmt_conv_420sp_to_rgba8888()