• Home
  • Raw
  • Download

Lines Matching refs:u4_g

108     UWORD32 u4_r, u4_g, u4_b;  in ih264e_fmt_conv_420sp_to_rgb565()  local
145 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ih264e_fmt_conv_420sp_to_rgb565()
146 u4_g >>= 2; in ih264e_fmt_conv_420sp_to_rgb565()
152 *pu2_rgb_dst++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ih264e_fmt_conv_420sp_to_rgb565()
159 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ih264e_fmt_conv_420sp_to_rgb565()
160 u4_g >>= 2; in ih264e_fmt_conv_420sp_to_rgb565()
166 *pu2_rgb_dst++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ih264e_fmt_conv_420sp_to_rgb565()
173 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ih264e_fmt_conv_420sp_to_rgb565()
174 u4_g >>= 2; in ih264e_fmt_conv_420sp_to_rgb565()
180 *pu2_rgb_dst_NextRow++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ih264e_fmt_conv_420sp_to_rgb565()
187 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ih264e_fmt_conv_420sp_to_rgb565()
188 u4_g >>= 2; in ih264e_fmt_conv_420sp_to_rgb565()
194 *pu2_rgb_dst_NextRow++ = ((u4_r << 11) | (u4_g << 5) | u4_b); in ih264e_fmt_conv_420sp_to_rgb565()
221 UWORD32 u4_r, u4_g, u4_b; in ih264e_fmt_conv_420sp_to_rgba8888() local
257 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ih264e_fmt_conv_420sp_to_rgba8888()
262 *pu4_rgba_dst++ = ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ih264e_fmt_conv_420sp_to_rgba8888()
268 u4_g = CLIP_U8(*pu1_y_src + i2_g); in ih264e_fmt_conv_420sp_to_rgba8888()
273 *pu4_rgba_dst++ = ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ih264e_fmt_conv_420sp_to_rgba8888()
279 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ih264e_fmt_conv_420sp_to_rgba8888()
285 ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ih264e_fmt_conv_420sp_to_rgba8888()
291 u4_g = CLIP_U8(*pu1_y_src_nxt + i2_g); in ih264e_fmt_conv_420sp_to_rgba8888()
297 ((u4_r << 16) | (u4_g << 8) | (u4_b << 0)); in ih264e_fmt_conv_420sp_to_rgba8888()