/external/chromium_org/third_party/webrtc/modules/audio_processing/ns/ |
nsx_core_c.c | 35 int16_t tmp16, tmp16no1, tmp16no2, tmpIndFX, tableIndex, frac, intPart; local 102 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; 104 tmp16no2 += (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(tmp16no1, frac, 14); 134 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; 136 tmp16no2 += (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(tmp16no1, frac, 14); 182 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; 185 tmp16no1, frac, 14);
|
nsx_core_mips.c | 34 int16_t tmp16, tmp16no1, tmp16no2, tmpIndFX, tableIndex, frac; local 136 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; 138 tmp16no2 += (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(tmp16no1, frac, 14); 168 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; 170 tmp16no2 += (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(tmp16no1, frac, 14); 216 tmp16no1 = kIndicatorTable[tableIndex + 1] - kIndicatorTable[tableIndex]; 219 tmp16no1, frac, 14); [all...] |
nsx_core_neon.c | 142 int16_t log2, tabind, logval, tmp16, tmp16no1, tmp16no2; local 316 tmp16no1 = WEBRTC_SPL_RSHIFT_W16(tmp16, 2); 317 inst->noiseEstLogQuantile[offset + i] += tmp16no1; 320 tmp16no1 = WEBRTC_SPL_RSHIFT_W16(tmp16, 1); 322 tmp16no2 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(tmp16no1, 3, 1); 335 tmp16no1 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( 339 inst->noiseEstDensity[offset + i] = tmp16no1 + tmp16no2;
|
nsx_core.c | 341 int16_t log2, tabind, logval, tmp16, tmp16no1, tmp16no2; local 410 tmp16no1 = WEBRTC_SPL_RSHIFT_W16(tmp16, 2); 411 inst->noiseEstLogQuantile[offset + i] += tmp16no1; 414 tmp16no1 = WEBRTC_SPL_RSHIFT_W16(tmp16, 1); 416 tmp16no2 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(tmp16no1, 3, 1); 428 tmp16no1 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( 432 inst->noiseEstDensity[offset + i] = tmp16no1 + tmp16no2; 1108 int16_t tmp16no1; local 1450 int16_t tmp16no1, tmp16no2; local [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_processing/aecm/ |
aecm_core.c | 968 int16_t tmp16no1; local 1175 int16_t tmp16no1; local [all...] |
aecm_core_c.c | 181 int16_t tmp16no1; local 193 tmp16no1 = WebRtcSpl_MaxAbsValueW16(time_signal, PART_LEN2); 194 time_signal_scaling = WebRtcSpl_NormW16(tmp16no1); 228 tmp16no1 = WEBRTC_SPL_ABS_W16(freq_signal[i].real); 231 if(tmp16no1 > tmp16no2) 233 max_value = tmp16no1; 238 min_value = tmp16no1; 255 tmp16no1 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(max_value, alpha, 15); 257 freq_signal_abs[i] = (uint16_t)tmp16no1 + (uint16_t)tmp16no2; 269 tmp16no1 = WEBRTC_SPL_ABS_W16(freq_signal[i].real) 324 int16_t tmp16no1; local [all...] |
aecm_core_mips.c | 640 int16_t tmp16no1; local 831 int16_t tmp16no1; local [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_processing/agc/ |
digital_agc.c | 81 int16_t i, tmp16, tmp16no1; local 91 tmp16no1 = analogTarget - targetLevelDbfs; 92 tmp16no1 += WebRtcSpl_DivW32W16ResW16(tmp32no1 + (kCompRatio >> 1), kCompRatio); 93 maxGain = WEBRTC_SPL_MAX(tmp16no1, (analogTarget - targetLevelDbfs)); 122 tmp16no1 = WebRtcSpl_DivW32W16ResW16(limiterOffset + (kCompRatio >> 1), kCompRatio); 123 limiterLvl = targetLevelDbfs + tmp16no1;
|