• Home
  • Raw
  • Download

Lines Matching refs:u4_b

129     UWORD32  u4_r, u4_g, u4_b;  in ihevcd_fmt_conv_420sp_to_rgb565()  local
162 u4_b = CLIP_U8(*pu1_y_src + i2_b); in ihevcd_fmt_conv_420sp_to_rgb565()
163 u4_b >>= 3; 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()
176 u4_b = CLIP_U8(*pu1_y_src + i2_b); in ihevcd_fmt_conv_420sp_to_rgb565()
177 u4_b >>= 3; 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()
190 u4_b = CLIP_U8(*pu1_y_src_nxt + i2_b); in ihevcd_fmt_conv_420sp_to_rgb565()
191 u4_b >>= 3; 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()
204 u4_b = CLIP_U8(*pu1_y_src_nxt + i2_b); in ihevcd_fmt_conv_420sp_to_rgb565()
205 u4_b >>= 3; 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
277 u4_b = CLIP_U8(*pu1_y_src + i2_b); 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()
288 u4_b = CLIP_U8(*pu1_y_src + i2_b); 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()
299 u4_b = CLIP_U8(*pu1_y_src_nxt + i2_b); 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()
310 u4_b = CLIP_U8(*pu1_y_src_nxt + i2_b); 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()