/external/libmpeg2/common/ |
D | ideint_cac.c | 248 WORD32 tmp_1, tmp_2; in cac_4x8() local 252 tmp_2 = AVG(pu1_top_2[i], pu1_top_3[i]); in cac_4x8() 253 val_1 = AVG(tmp_1, tmp_2); in cac_4x8() 256 tmp_2 = AVG(pu1_bot_2[i], pu1_bot_3[i]); in cac_4x8() 257 val_2 = AVG(tmp_1, tmp_2); in cac_4x8() 277 WORD32 tmp_1, tmp_2; in cac_4x8() local 281 tmp_2 = AVG(pu1_top_2[i], pu1_bot_2[i]); in cac_4x8() 282 val_1 = AVG(tmp_1, tmp_2); in cac_4x8() 285 tmp_2 = AVG(pu1_top_3[i], pu1_bot_3[i]); in cac_4x8() 286 val_2 = AVG(tmp_1, tmp_2); in cac_4x8()
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorFFT.h | 433 ComplexScalar tmp_2[8]; 451 tmp_2[0] = tmp_1[0] + tmp_1[2]; 452 tmp_2[1] = tmp_1[1] + tmp_1[3]; 453 tmp_2[2] = tmp_1[0] - tmp_1[2]; 454 tmp_2[3] = tmp_1[1] - tmp_1[3]; 455 tmp_2[4] = tmp_1[4] + tmp_1[6]; 459 tmp_2[5] = (tmp_1[5] + tmp_1[7]) * ComplexScalar(SQRT2DIV2, -SQRT2DIV2); 460 tmp_2[6] = (tmp_1[4] - tmp_1[6]) * ComplexScalar(0, -1); 461 tmp_2[7] = (tmp_1[5] - tmp_1[7]) * ComplexScalar(-SQRT2DIV2, -SQRT2DIV2); 463 tmp_2[5] = (tmp_1[5] + tmp_1[7]) * ComplexScalar(SQRT2DIV2, SQRT2DIV2); [all …]
|
/external/webp/src/dsp/ |
D | enc_sse41.c | 76 __m128i tmp_0, tmp_1, tmp_2, tmp_3; in TTransform_SSE41() local 100 tmp_2 = _mm_cvtepu8_epi16(inAB_2); in TTransform_SSE41() 112 const __m128i a0 = _mm_add_epi16(tmp_0, tmp_2); in TTransform_SSE41() 115 const __m128i a3 = _mm_sub_epi16(tmp_0, tmp_2); in TTransform_SSE41() 126 VP8Transpose_2_4x4_16b(&b0, &b1, &b2, &b3, &tmp_0, &tmp_1, &tmp_2, &tmp_3); in TTransform_SSE41() 136 const __m128i a0 = _mm_add_epi16(tmp_0, tmp_2); in TTransform_SSE41() 139 const __m128i a3 = _mm_sub_epi16(tmp_0, tmp_2); in TTransform_SSE41()
|
D | enc_sse2.c | 1100 __m128i tmp_0, tmp_1, tmp_2, tmp_3; in TTransform_SSE2() local 1121 tmp_2 = _mm_unpacklo_epi8(inAB_2, zero); in TTransform_SSE2() 1133 const __m128i a0 = _mm_add_epi16(tmp_0, tmp_2); in TTransform_SSE2() 1136 const __m128i a3 = _mm_sub_epi16(tmp_0, tmp_2); in TTransform_SSE2() 1147 VP8Transpose_2_4x4_16b(&b0, &b1, &b2, &b3, &tmp_0, &tmp_1, &tmp_2, &tmp_3); in TTransform_SSE2() 1157 const __m128i a0 = _mm_add_epi16(tmp_0, tmp_2); in TTransform_SSE2() 1160 const __m128i a3 = _mm_sub_epi16(tmp_0, tmp_2); in TTransform_SSE2()
|
/external/libaom/libaom/av1/encoder/x86/ |
D | corner_match_sse4.c | 84 __m128i tmp_2 = _mm_unpacklo_epi32(sumsq2_vec, cross_vec); in compute_cross_correlation_sse4_1() local 87 __m128i tmp_4 = _mm_unpacklo_epi64(tmp_0, tmp_2); in compute_cross_correlation_sse4_1() 88 __m128i tmp_5 = _mm_unpackhi_epi64(tmp_0, tmp_2); in compute_cross_correlation_sse4_1()
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
D | decode.c | 56 int16_t tmp_1, tmp_2; in WebRtcIsacfix_DecodeImpl() local 209 …tmp_2 = (int16_t)WebRtcSpl_SatW32ToW16(((int32_t)Vector_Word16_1[k]-Vector_Word16_2[k])); /* Const… in WebRtcIsacfix_DecodeImpl() 211 Vector_Word16_2[k] = tmp_2; in WebRtcIsacfix_DecodeImpl()
|
D | decode_plc.c | 257 int16_t tmp_1, tmp_2; in WebRtcIsacfix_DecodePlcImpl() local 793 tmp_2 = (int16_t)WebRtcSpl_SatW32ToW16( in WebRtcIsacfix_DecodePlcImpl() 796 Vector_Word16_2[k] = tmp_2; in WebRtcIsacfix_DecodePlcImpl()
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | convolve_sse2.h | 70 const __m128i tmp_2 = _mm_unpackhi_epi32(*src_1, *src_2); in mm_zip_epi32_sse2() local 71 return _mm_packs_epi32(tmp_1, tmp_2); in mm_zip_epi32_sse2()
|
/external/webrtc/webrtc/common_audio/resampler/ |
D | resampler.cc | 457 int16_t* tmp_2; in Push() local 828 tmp_2 = (int16_t*) malloc((sizeof(int16_t) * lengthIn) / 6); in Push() 843 WebRtcSpl_DownsampleBy2(tmp, outLen, tmp_2, (int32_t*) state2_); in Push() 847 WebRtcSpl_DownsampleBy2(tmp_2, outLen, samplesOut, in Push() 849 free(tmp_2); in Push()
|
/external/libaom/libaom/av1/common/x86/ |
D | highbd_warp_plane_sse4.c | 40 const __m128i tmp_2 = _mm_loadu_si128( in highbd_prepare_horizontal_filter_coeff() local 48 const __m128i tmp_8 = _mm_unpacklo_epi32(tmp_0, tmp_2); in highbd_prepare_horizontal_filter_coeff() 52 const __m128i tmp_12 = _mm_unpackhi_epi32(tmp_0, tmp_2); in highbd_prepare_horizontal_filter_coeff() 459 const __m128i tmp_2 = _mm_loadu_si128( in av1_highbd_warp_affine_sse4_1() local 469 const __m128i tmp_8 = _mm_unpacklo_epi32(tmp_0, tmp_2); in av1_highbd_warp_affine_sse4_1() 471 const __m128i tmp_12 = _mm_unpackhi_epi32(tmp_0, tmp_2); in av1_highbd_warp_affine_sse4_1()
|
D | warp_plane_sse4.c | 277 const __m128i tmp_2 = _mm_loadl_epi64( in prepare_horizontal_filter_coeff() local 291 const __m128i tmp_8 = _mm_unpacklo_epi16(tmp_0, tmp_2); in prepare_horizontal_filter_coeff() 461 const __m128i tmp_2 = _mm_loadu_si128( in prepare_vertical_filter_coeffs() local 468 const __m128i tmp_8 = _mm_unpacklo_epi32(tmp_0, tmp_2); in prepare_vertical_filter_coeffs() 470 const __m128i tmp_12 = _mm_unpackhi_epi32(tmp_0, tmp_2); in prepare_vertical_filter_coeffs()
|
/external/webrtc/webrtc/modules/audio_processing/ns/ |
D | nsx_core_mips.c | 761 int16_t tmp_1, tmp_2, tmp_3, tmp_4, tmp_5, tmp_6; in WebRtcNsx_PrepareSpectrum_mips() local 852 [tmp_1] "=&r" (tmp_1), [tmp_2] "=&r" (tmp_2), [tmp_3] "=&r" (tmp_3), in WebRtcNsx_PrepareSpectrum_mips()
|
/external/libaom/libaom/av1/common/arm/ |
D | warp_plane_neon.c | 239 uint8x16_t tmp_2 = vandq_u8(src_3, mask); in horizontal_filter_neon() local 242 tmp_2 = vextq_u8(tmp_0, tmp_0, 1); in horizontal_filter_neon() 245 src_1 = vaddq_u8(tmp_0, tmp_2); in horizontal_filter_neon()
|