Home
last modified time | relevance | path

Searched refs:_MM_SHUFFLE (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/src/modules/audio_processing/aec/main/source/
Daec_rdft_sse2.c40 _mm_shuffle_ps(wkrt, wkrt, _MM_SHUFFLE(0, 1, 2, 3)); // 31, 30, 29, 28, in rftfsub_128_SSE2()
48 _MM_SHUFFLE(2, 0, 2 ,0)); // 2, 4, 6, 8, in rftfsub_128_SSE2()
50 _MM_SHUFFLE(3, 1, 3 ,1)); // 3, 5, 7, 9, in rftfsub_128_SSE2()
52 _MM_SHUFFLE(0, 2, 0 ,2)); // 126, 124, 122, 120, in rftfsub_128_SSE2()
54 _MM_SHUFFLE(1, 3, 1 ,3)); // 127, 125, 123, 121, in rftfsub_128_SSE2()
88 _MM_SHUFFLE(1, 0, 3 ,2)); // 120, 121, 122, 123, in rftfsub_128_SSE2()
90 _MM_SHUFFLE(1, 0, 3 ,2)); // 124, 125, 126, 127, in rftfsub_128_SSE2()
131 _mm_shuffle_ps(wkrt, wkrt, _MM_SHUFFLE(0, 1, 2, 3)); // 31, 30, 29, 28, in rftbsub_128_SSE2()
139 _MM_SHUFFLE(2, 0, 2 ,0)); // 2, 4, 6, 8, in rftbsub_128_SSE2()
141 _MM_SHUFFLE(3, 1, 3 ,1)); // 3, 5, 7, 9, in rftbsub_128_SSE2()
[all …]
Daec_core_sse2.c200 const __m128 fft_re = _mm_shuffle_ps(fft0, fft4, _MM_SHUFFLE(2, 0, 2 ,0)); in FilterAdaptationSSE2()
201 const __m128 fft_im = _mm_shuffle_ps(fft0, fft4, _MM_SHUFFLE(3, 1, 3 ,1)); in FilterAdaptationSSE2()
/external/webp/src/enc/
Ddsp_sse2.c343 v32 = _mm_shuffle_epi32(v23, _MM_SHUFFLE(1, 0, 3, 2)); in FTransformSSE2()
389 v32 = _mm_shuffle_epi32(v23, _MM_SHUFFLE(1, 0, 3, 2)); in FTransformSSE2()
791 outZ0 = _mm_shufflehi_epi16(out0, _MM_SHUFFLE(2, 1, 3, 0)); in QuantizeBlockSSE2()
792 outZ0 = _mm_shuffle_epi32 (outZ0, _MM_SHUFFLE(3, 1, 2, 0)); in QuantizeBlockSSE2()
793 outZ0 = _mm_shufflehi_epi16(outZ0, _MM_SHUFFLE(3, 1, 0, 2)); in QuantizeBlockSSE2()
794 outZ8 = _mm_shufflelo_epi16(out8, _MM_SHUFFLE(3, 0, 2, 1)); in QuantizeBlockSSE2()
795 outZ8 = _mm_shuffle_epi32 (outZ8, _MM_SHUFFLE(3, 1, 2, 0)); in QuantizeBlockSSE2()
796 outZ8 = _mm_shufflelo_epi16(outZ8, _MM_SHUFFLE(1, 3, 2, 0)); in QuantizeBlockSSE2()
/external/opencv/cv/src/
Dcvstereobm.cpp331 minsad82 = _mm_shufflelo_epi16(minsad8, _MM_SHUFFLE(3,2,3,2)); in icvFindStereoCorrespondenceBM_SSE2()
332 mind82 = _mm_shufflelo_epi16(mind8, _MM_SHUFFLE(3,2,3,2)); in icvFindStereoCorrespondenceBM_SSE2()
/external/clang/lib/Headers/
Dxmmintrin.h895 #define _MM_SHUFFLE(z, y, x, w) (((z) << 6) | ((y) << 4) | ((x) << 2) | (w)) macro