Lines Matching refs:u4_b

127     UWORD32  u4_r, u4_g, u4_b;  in ihevcd_fmt_conv_420sp_to_rgb565()  local
160 u4_b = CLIP_U8(*pu1_y_src + i2_b); in ihevcd_fmt_conv_420sp_to_rgb565()
161 u4_b >>= 3; 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()
174 u4_b = CLIP_U8(*pu1_y_src + i2_b); in ihevcd_fmt_conv_420sp_to_rgb565()
175 u4_b >>= 3; 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()
188 u4_b = CLIP_U8(*pu1_y_src_nxt + i2_b); in ihevcd_fmt_conv_420sp_to_rgb565()
189 u4_b >>= 3; 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()
202 u4_b = CLIP_U8(*pu1_y_src_nxt + i2_b); in ihevcd_fmt_conv_420sp_to_rgb565()
203 u4_b >>= 3; 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
275 u4_b = CLIP_U8(*pu1_y_src + i2_b); 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()
286 u4_b = CLIP_U8(*pu1_y_src + i2_b); 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()
297 u4_b = CLIP_U8(*pu1_y_src_nxt + i2_b); 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()
308 u4_b = CLIP_U8(*pu1_y_src_nxt + i2_b); 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()