Lines Matching refs:dst8
1330 uint16x8_t dst8, scale8, alpha8; in S32A_D565_Opaque_Dither_neon() local
1381 dst8 = vld1q_u16(dst); in S32A_D565_Opaque_Dither_neon()
1382 dst_b = vandq_u16(dst8, vdupq_n_u16(SK_B16_MASK)); in S32A_D565_Opaque_Dither_neon()
1383 dst_g = vshrq_n_u16(vshlq_n_u16(dst8, SK_R16_BITS), SK_R16_BITS + SK_B16_BITS); in S32A_D565_Opaque_Dither_neon()
1384 dst_r = vshrq_n_u16(dst8, SK_R16_SHIFT); // clearing hi bits in S32A_D565_Opaque_Dither_neon()
1396 dst8 = vshrq_n_u16(dst_b, 5); in S32A_D565_Opaque_Dither_neon()
1397 dst8 = vsliq_n_u16(dst8, vshrq_n_u16(dst_g, 5), 5); in S32A_D565_Opaque_Dither_neon()
1398 dst8 = vsliq_n_u16(dst8, vshrq_n_u16(dst_r,5), 11); in S32A_D565_Opaque_Dither_neon()
1400 vst1q_u16(dst, dst8); in S32A_D565_Opaque_Dither_neon()
1459 uint16x8_t dst8; in S32_D565_Opaque_Dither_neon() local
1504 dst8 = vshrq_n_u16(db, 3); in S32_D565_Opaque_Dither_neon()
1505 dst8 = vsliq_n_u16(dst8, vshrq_n_u16(dg, 2), 5); in S32_D565_Opaque_Dither_neon()
1506 dst8 = vsliq_n_u16(dst8, vshrq_n_u16(dr, 3), 11); in S32_D565_Opaque_Dither_neon()
1509 vst1q_u16(dst, dst8); in S32_D565_Opaque_Dither_neon()