Searched refs:shiftFromNearToNoise (Results 1 - 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/aecm/
H A Daecm_core_mips.c1271 int16_t shiftFromNearToNoise = kNoiseEstQDomain - aecm->dfaCleanQDomain; local
1274 assert(shiftFromNearToNoise >= 0);
1275 assert(shiftFromNearToNoise < 16);
1299 "sllv %[outLShift32], %[tmp32], %[shiftFromNearToNoise] \n\t"
1303 [shiftFromNearToNoise] "r" (shiftFromNearToNoise)
1377 "sllv %[outLShift32], %[tmp32], %[shiftFromNearToNoise] \n\t"
1380 : [tmp1] "r" (tmp1), [shiftFromNearToNoise] "r" (shiftFromNearToNoise)
1456 "srav %[tmp32], %[tnoise], %[shiftFromNearToNoise] \
[all...]
H A Daecm_core_c.c654 int16_t shiftFromNearToNoise = kNoiseEstQDomain - aecm->dfaCleanQDomain; local
657 assert(shiftFromNearToNoise >= 0);
658 assert(shiftFromNearToNoise < 16);
675 outLShift32 = tmp32 << shiftFromNearToNoise;
734 tmp32 = aecm->noiseEst[i] >> shiftFromNearToNoise;
738 aecm->noiseEst[i] = tmp32 << shiftFromNearToNoise;

Completed in 210 milliseconds