Home | History | Annotate | Download | only in vad

Lines Matching refs:tmp32

35   int32_t tmp32;
40 tmp32 = (int32_t) 131072 + (int32_t) (std >> 1);
41 inv_std = (int16_t) WebRtcSpl_DivW32W16(tmp32, std);
59 // Calculate the exponent |tmp32| = (x - m)^2 / (2 * s^2), in Q10. Replacing
62 tmp32 = (*delta * tmp16) >> 9;
66 // ~= exp2(-log2(exp(1)) * |tmp32|).
67 if (tmp32 < kCompVar) {
68 // Calculate |tmp16| = log2(exp(1)) * |tmp32|, in Q10.
70 tmp16 = (int16_t)((kLog2Exp * tmp32) >> 12);
76 // Get |exp_value| = exp(-|tmp32|) in Q10.