Searched refs:left_u16 (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | highbd_intrapred_intrin_sse2.c | 22 const __m128i left_u16 = _mm_loadl_epi64((const __m128i *)left); in vpx_highbd_h_predictor_4x4_sse2() local 23 const __m128i row0 = _mm_shufflelo_epi16(left_u16, 0x0); in vpx_highbd_h_predictor_4x4_sse2() 24 const __m128i row1 = _mm_shufflelo_epi16(left_u16, 0x55); in vpx_highbd_h_predictor_4x4_sse2() 25 const __m128i row2 = _mm_shufflelo_epi16(left_u16, 0xaa); in vpx_highbd_h_predictor_4x4_sse2() 26 const __m128i row3 = _mm_shufflelo_epi16(left_u16, 0xff); in vpx_highbd_h_predictor_4x4_sse2() 41 const __m128i left_u16 = _mm_load_si128((const __m128i *)left); in vpx_highbd_h_predictor_8x8_sse2() local 42 const __m128i row0 = _mm_shufflelo_epi16(left_u16, 0x0); in vpx_highbd_h_predictor_8x8_sse2() 43 const __m128i row1 = _mm_shufflelo_epi16(left_u16, 0x55); in vpx_highbd_h_predictor_8x8_sse2() 44 const __m128i row2 = _mm_shufflelo_epi16(left_u16, 0xaa); in vpx_highbd_h_predictor_8x8_sse2() 45 const __m128i row3 = _mm_shufflelo_epi16(left_u16, 0xff); in vpx_highbd_h_predictor_8x8_sse2() [all …]
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | highbd_intrapred_neon.c | 102 const uint16x8_t left_u16 = vld1q_u16(left); in vpx_highbd_dc_predictor_8x8_neon() local 103 const uint16x8_t p0 = vaddq_u16(above_u16, left_u16); in vpx_highbd_dc_predictor_8x8_neon() 760 const uint16x4_t left_u16 = vld1_u16(left); in vpx_highbd_h_predictor_4x4_neon() local 765 row = vdup_lane_u16(left_u16, 0); in vpx_highbd_h_predictor_4x4_neon() 768 row = vdup_lane_u16(left_u16, 1); in vpx_highbd_h_predictor_4x4_neon() 771 row = vdup_lane_u16(left_u16, 2); in vpx_highbd_h_predictor_4x4_neon() 774 row = vdup_lane_u16(left_u16, 3); in vpx_highbd_h_predictor_4x4_neon() 781 const uint16x8_t left_u16 = vld1q_u16(left); in vpx_highbd_h_predictor_8x8_neon() local 782 const uint16x4_t left_low = vget_low_u16(left_u16); in vpx_highbd_h_predictor_8x8_neon() 783 const uint16x4_t left_high = vget_high_u16(left_u16); in vpx_highbd_h_predictor_8x8_neon()
|