/external/webrtc/src/modules/audio_processing/agc/ |
D | digital_agc.c | 70 WebRtc_Word32 tmp32, tmp32no1, tmp32no2, numFIX, den, y32; in WebRtcAgc_CalculateGainTable() local 143 tmp32 = WEBRTC_SPL_MUL_16_U16(tmp16, kLog10_2) + 1; // Q14 in WebRtcAgc_CalculateGainTable() 144 inLevel = WebRtcSpl_DivW32W16(tmp32, kCompRatio); // Q14 in WebRtcAgc_CalculateGainTable() 216 tmp32 = WEBRTC_SPL_MUL_16_U16(i - 1, kLog10_2); // Q14 in WebRtcAgc_CalculateGainTable() 217 tmp32 -= WEBRTC_SPL_LSHIFT_W32(limiterLvl, 14); // Q14 in WebRtcAgc_CalculateGainTable() 218 y32 = WebRtcSpl_DivW32W16(tmp32 + 10, 20); in WebRtcAgc_CalculateGainTable() 222 tmp32 = WEBRTC_SPL_MUL(y32 >> 1, kLog10) + 4096; // in Q27 in WebRtcAgc_CalculateGainTable() 223 tmp32 = WEBRTC_SPL_RSHIFT_W32(tmp32, 13); // in Q14 in WebRtcAgc_CalculateGainTable() 226 tmp32 = WEBRTC_SPL_MUL(y32, kLog10) + 8192; // in Q28 in WebRtcAgc_CalculateGainTable() 227 tmp32 = WEBRTC_SPL_RSHIFT_W32(tmp32, 14); // in Q14 in WebRtcAgc_CalculateGainTable() [all …]
|
D | analog_agc.c | 116 WebRtc_Word32 nrg, max_nrg, sample, tmp32; in WebRtcAgc_AddMic() local 209 tmp32 = WEBRTC_SPL_MUL_16_16(GAIN_TBL_LEN - 1, tmp16); in WebRtcAgc_AddMic() 211 targetGainIdx = (WebRtc_UWord16)WEBRTC_SPL_DIV(tmp32, tmp16); in WebRtcAgc_AddMic() 231 tmp32 = WEBRTC_SPL_MUL_16_U16(in_mic[i], gain); in WebRtcAgc_AddMic() 232 sample = WEBRTC_SPL_RSHIFT_W32(tmp32, 12); in WebRtcAgc_AddMic() 247 tmp32 = WEBRTC_SPL_MUL_16_U16(in_mic_H[i], gain); in WebRtcAgc_AddMic() 248 sample = WEBRTC_SPL_RSHIFT_W32(tmp32, 12); in WebRtcAgc_AddMic() 618 WebRtc_Word32 tmp32 = 0; in WebRtcAgc_ZeroCtrl() local 624 tmp32 += env[i]; in WebRtcAgc_ZeroCtrl() 630 if (tmp32 < 500) in WebRtcAgc_ZeroCtrl() [all …]
|
/external/webrtc/src/common_audio/signal_processing/ |
D | lpc_to_refl_coef.c | 25 WebRtc_Word32 tmp32[SPL_LPC_TO_REFL_COEF_MAX_AR_MODEL_ORDER]; in WebRtcSpl_LpcToReflCoef() local 42 tmp32[k] = WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)a16[k], 16) in WebRtcSpl_LpcToReflCoef() 45 tmp32[k] = WebRtcSpl_DivW32W16(tmp32[k], tmp_inv_denom16); //Q28/Q15 = Q13 in WebRtcSpl_LpcToReflCoef() 50 a16[k] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(tmp32[k], 1); //Q13>>1 => Q12 in WebRtcSpl_LpcToReflCoef() 53 tmp32[m] = WEBRTC_SPL_SAT(8191, tmp32[m], -8191); in WebRtcSpl_LpcToReflCoef() 54 k16[m - 1] = (WebRtc_Word16)WEBRTC_SPL_LSHIFT_W32(tmp32[m], 2); //Q13<<2 => Q15 in WebRtcSpl_LpcToReflCoef()
|
D | complex_fft.c | 292 WebRtc_Word32 tmp32, round2; in WebRtcSpl_ComplexIFFT() local 313 tmp32 = (WebRtc_Word32)WebRtcSpl_MaxAbsValueW16(frfi, 2 * n); in WebRtcSpl_ComplexIFFT() 314 if (tmp32 > 13573) in WebRtcSpl_ComplexIFFT() 320 if (tmp32 > 27146) in WebRtcSpl_ComplexIFFT()
|
/external/webrtc/src/common_audio/vad/ |
D | vad_gmm.c | 35 int32_t tmp32; in WebRtcVad_GaussianProbability() local 40 tmp32 = (int32_t) 131072 + (int32_t) (std >> 1); in WebRtcVad_GaussianProbability() 41 inv_std = (int16_t) WebRtcSpl_DivW32W16(tmp32, std); in WebRtcVad_GaussianProbability() 62 tmp32 = WEBRTC_SPL_MUL_16_16_RSFT(*delta, tmp16, 9); in WebRtcVad_GaussianProbability() 67 if (tmp32 < kCompVar) { in WebRtcVad_GaussianProbability() 70 tmp16 = (int16_t) WEBRTC_SPL_MUL_16_16_RSFT(kLog2Exp, (int16_t) tmp32, 12); in WebRtcVad_GaussianProbability()
|
D | vad_filterbank.c | 43 int32_t tmp32 = 0; in WebRtcVad_HpOutput() local 56 tmp32 = (int32_t) WEBRTC_SPL_MUL_16_16(kHpZeroCoefs[0], (*in_ptr)); in WebRtcVad_HpOutput() 57 tmp32 += (int32_t) WEBRTC_SPL_MUL_16_16(kHpZeroCoefs[1], filter_state[0]); in WebRtcVad_HpOutput() 58 tmp32 += (int32_t) WEBRTC_SPL_MUL_16_16(kHpZeroCoefs[2], in WebRtcVad_HpOutput() 64 tmp32 -= (int32_t) WEBRTC_SPL_MUL_16_16(kHpPoleCoefs[1], in WebRtcVad_HpOutput() 66 tmp32 -= (int32_t) WEBRTC_SPL_MUL_16_16(kHpPoleCoefs[2], filter_state[3]); in WebRtcVad_HpOutput() 68 filter_state[2] = (int16_t) WEBRTC_SPL_RSHIFT_W32 (tmp32, 14); in WebRtcVad_HpOutput() 86 int32_t tmp32 = 0, in32 = 0; in WebRtcVad_Allpass() local 90 tmp32 = state32 + WEBRTC_SPL_MUL_16_16(filter_coefficients, (*in_vector)); in WebRtcVad_Allpass() 91 tmp16 = (int16_t) WEBRTC_SPL_RSHIFT_W32(tmp32, 16); in WebRtcVad_Allpass()
|
D | vad_sp.c | 68 int32_t tmp32 = 0; in WebRtcVad_FindMinimum() local 175 tmp32 = WEBRTC_SPL_MUL_16_16(alpha + 1, self->mean_value[channel]); in WebRtcVad_FindMinimum() 176 tmp32 += WEBRTC_SPL_MUL_16_16(WEBRTC_SPL_WORD16_MAX - alpha, current_median); in WebRtcVad_FindMinimum() 177 tmp32 += 16384; in WebRtcVad_FindMinimum() 178 self->mean_value[channel] = (int16_t) (tmp32 >> 15); in WebRtcVad_FindMinimum()
|
/external/speex/libspeex/ |
D | mdf.c | 706 spx_word32_t tmp32; in speex_echo_cancellation() local 730 spx_word32_t tmp32; in speex_echo_cancellation() local 732 …tmp32 = SUB32(EXTEND32(st->input[chan*st->frame_size+i]), EXTEND32(MULT16_16_P15(st->preemph, st->… in speex_echo_cancellation() 734 if (tmp32 > 32767) in speex_echo_cancellation() 736 tmp32 = 32767; in speex_echo_cancellation() 740 if (tmp32 < -32767) in speex_echo_cancellation() 742 tmp32 = -32767; in speex_echo_cancellation() 748 st->input[chan*st->frame_size+i] = EXTRACT16(tmp32); in speex_echo_cancellation() 756 spx_word32_t tmp32; in speex_echo_cancellation() local 758 …tmp32 = SUB32(EXTEND32(far_end[i*K+speak]), EXTEND32(MULT16_16_P15(st->preemph, st->memX[speak]))); in speex_echo_cancellation() [all …]
|
/external/openssl/crypto/sha/asm/ |
D | sha512-sparcv9.pl | 117 $tmp32="%i5"; 131 subcc %g0,$tmp31,$tmp32 ! should be 64-$tmp31, but -$tmp31 works too 141 srlx @X[$j+1],$tmp32,$tmp1 147 srlx $T1,$tmp32,$T1 180 srlx @pair[2],$tmp32,@pair[1] 198 srlx @pair[2],$tmp32,@pair[1] 270 $xi=$tmp32; 288 $xi=$tmp32; 470 mov 32,$tmp32 471 sub $tmp32,$tmp31,$tmp32
|
/external/webrtc/src/modules/audio_processing/ns/ |
D | nsx_core.c | 621 int32_t tmp32 = 0; in DenormalizeC() local 623 tmp32 = WEBRTC_SPL_SHIFT_W32((WebRtc_Word32)in[j], in DenormalizeC() 625 inst->real[i] = WebRtcSpl_SatW32ToW16(tmp32); // Q0 in DenormalizeC() 637 int32_t tmp32 = 0; in SynthesisUpdateC() local 643 tmp32 = WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(tmp16a, gain_factor, 13); // Q0 in SynthesisUpdateC() 645 tmp16b = WebRtcSpl_SatW32ToW16(tmp32); // Q0 in SynthesisUpdateC() 933 WebRtc_Word32 tmp32; in WebRtcNsx_FeatureParameterExtraction() local 985 tmp32 = WEBRTC_SPL_MUL_16_16(inst->histLrt[i], j); in WebRtcNsx_FeatureParameterExtraction() 986 avgHistLrtFX += tmp32; in WebRtcNsx_FeatureParameterExtraction() 988 avgSquareHistLrtFX += WEBRTC_SPL_MUL_32_16(tmp32, j); in WebRtcNsx_FeatureParameterExtraction() [all …]
|
/external/llvm/test/CodeGen/PowerPC/ |
D | int-fp-conv-1.ll | 9 %tmp32 = add i64 %tmp282930, 0 ; <i64> [#uses=1] 10 ret i64 %tmp32
|
D | itofp128.ll | 12 %tmp32 = add i128 %tmp282930, 0 ; <i128> [#uses=1] 13 ret i128 %tmp32
|
/external/llvm/test/Analysis/BasicAA/ |
D | 2010-09-15-GEP-SignedArithmetic.ll | 8 %tmp32 = add i32 %tmp31, 30 9 %t.5 = getelementptr i32* %tab, i32 %tmp32
|
/external/llvm/test/Transforms/IndVarSimplify/ |
D | polynomial-expand.ll | 21 %tmp32 = phi i32 [ %tmp37, %bb30 ], [ %tmp27, %bb24 ] ; <i32> [#uses=2] 22 %tmp33 = sext i32 %tmp32 to i64 ; <i64> [#uses=1] 25 %tmp37 = add nsw i32 %tmp32, -1 ; <i32> [#uses=1]
|
/external/llvm/test/CodeGen/X86/ |
D | mul-legalize.ll | 13 %tmp32 = icmp eq i64 %tmp7, 105553116266496 14 br i1 %tmp32, label %return, label %bb35
|
D | 2008-02-06-LoadFoldingBug.ll | 12 %tmp32 = fsub double -0.000000e+00, %tmp20 ; <double> [#uses=1] 16 store double %tmp32, double* %tmp40, align 8
|
D | 2007-10-17-IllegalAsm.ll | 36 %tmp32 = load i32* null, align 8 ; <i32> [#uses=3] 37 %tmp3435 = trunc i32 %tmp32 to i8 ; <i8> [#uses=1] 42 %tmp65 = and i32 %tmp32, 255 ; <i32> [#uses=1] 80 %tmp547 = and i32 %tmp32, -8193 ; <i32> [#uses=1]
|
D | vec_set-4.ll | 20 %tmp32 = insertelement <16 x i8> %tmp30, i8 0, i32 14 ; <<16 x i8>> [#uses=1] 21 %tmp34 = insertelement <16 x i8> %tmp32, i8 0, i32 15 ; <<16 x i8>> [#uses=1]
|
D | 2010-01-13-OptExtBug.ll | 29 %tmp32 = zext i16 %tmp31 to i32 35 %tmp33 = add i32 %indvar, %tmp32
|
/external/llvm/test/Transforms/InstCombine/ |
D | trunc.ll | 87 %tmp32 = zext i32 %B to i128 88 %tmp33 = shl i128 %tmp32, 32 94 ; CHECK: %tmp32 = zext i32 %B to i64 95 ; CHECK: %tmp33 = shl nuw i64 %tmp32, 32
|
D | bitcast.ll | 70 %tmp32 = zext i32 %B to i64 71 %tmp33 = shl i64 %tmp32, 32 87 %tmp32 = zext i32 %tmp31 to i64 88 %tmp33 = shl i64 %tmp32, 32
|
/external/llvm/test/Object/Inputs/ |
D | shared.ll | 6 ; llc -mtriple=i386-linux-gnu shared.ll -filetype=obj -o tmp32.o -relocation-model=pic 7 ; ld -melf_i386 -shared tmp32.o -o shared-object-test.elf-i386 $LDARGS
|
/external/webrtc/src/modules/audio_processing/aecm/ |
D | aecm_core.c | 565 WebRtc_Word32 tmp32 = PART_LEN1 * PART_LEN1; in WebRtcAecm_InitCore() local 636 aecm->noiseEst[i] = (tmp32 << 8); in WebRtcAecm_InitCore() 638 tmp32 -= (WebRtc_Word32)((tmp16 << 1) + 1); in WebRtcAecm_InitCore() 642 aecm->noiseEst[i] = (tmp32 << 8); in WebRtcAecm_InitCore() 1035 WebRtc_Word32 tmp32; in WebRtcAecm_CalcStepSize() local 1053 tmp32 = WEBRTC_SPL_MUL_16_16(tmp16, MU_DIFF); in WebRtcAecm_CalcStepSize() 1054 tmp32 = WebRtcSpl_DivW32W16(tmp32, aecm->farEnergyMaxMin); in WebRtcAecm_CalcStepSize() 1055 mu = MU_MIN - 1 - (WebRtc_Word16)(tmp32); in WebRtcAecm_CalcStepSize() 1924 WebRtc_Word32 tmp32; in ComfortNoise() local 1953 tmp32 = (WebRtc_Word32)dfa[i]; in ComfortNoise() [all …]
|
/external/llvm/test/Transforms/LICM/ |
D | 2007-05-22-VolatileSink.ll | 49 %tmp32 = icmp sle i32 %i.1, 7 ; <i1> [#uses=1] 50 %tmp3233 = zext i1 %tmp32 to i8 ; <i8> [#uses=1]
|
/external/llvm/test/Analysis/TypeBasedAliasAnalysis/ |
D | dynamic-indices.ll | 16 ; CHECK: %tmp32 = load i64* %arrayidx31, align 8, !tbaa !3 60 %tmp32 = load i64* %arrayidx31, align 8, !tbaa !3 62 store i64 %tmp32, i64* %arrayidx35, align 8, !tbaa !3
|