Lines Matching refs:u4_g
120 UWORD32 u4_r, u4_g, u4_b; in ih264d_fmt_conv_420sp_to_rgb565() local
157 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ih264d_fmt_conv_420sp_to_rgb565()
158 u4_g >>= 2; in ih264d_fmt_conv_420sp_to_rgb565()
164 *pu2_rgb_dst++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ih264d_fmt_conv_420sp_to_rgb565()
171 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ih264d_fmt_conv_420sp_to_rgb565()
172 u4_g >>= 2; in ih264d_fmt_conv_420sp_to_rgb565()
178 *pu2_rgb_dst++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ih264d_fmt_conv_420sp_to_rgb565()
185 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ih264d_fmt_conv_420sp_to_rgb565()
186 u4_g >>= 2; in ih264d_fmt_conv_420sp_to_rgb565()
192 *pu2_rgb_dst_next_row++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ih264d_fmt_conv_420sp_to_rgb565()
199 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ih264d_fmt_conv_420sp_to_rgb565()
200 u4_g >>= 2; in ih264d_fmt_conv_420sp_to_rgb565()
206 *pu2_rgb_dst_next_row++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ih264d_fmt_conv_420sp_to_rgb565()
234 UWORD32 u4_r, u4_g, u4_b; in ih264d_fmt_conv_420sp_to_rgba8888() local
270 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ih264d_fmt_conv_420sp_to_rgba8888()
275 *pu4_rgba_dst++ = ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ih264d_fmt_conv_420sp_to_rgba8888()
281 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ih264d_fmt_conv_420sp_to_rgba8888()
286 *pu4_rgba_dst++ = ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ih264d_fmt_conv_420sp_to_rgba8888()
292 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ih264d_fmt_conv_420sp_to_rgba8888()
298 ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ih264d_fmt_conv_420sp_to_rgba8888()
304 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ih264d_fmt_conv_420sp_to_rgba8888()
310 ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ih264d_fmt_conv_420sp_to_rgba8888()