OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MIN32
(Results
1 - 3
of
3
) sorted by null
/external/speex/libspeex/
preprocess.c
328
noise_gain = EXTRACT16(
MIN32
(Q15_ONE,SHR32(spx_exp(MULT16_16(QCONST16(0.11513,11),noise_suppress)),1)));
329
gain_ratio = EXTRACT16(
MIN32
(Q15_ONE,SHR32(spx_exp(MULT16_16(QCONST16(.2302585f,11),effective_echo_suppress-noise_suppress)),1)));
338
echo_gain = EXTRACT16(
MIN32
(Q15_ONE,SHR32(spx_exp(MULT16_16(QCONST16(0.11513,11),effective_echo_suppress)),1)));
339
gain_ratio = EXTRACT16(
MIN32
(Q15_ONE,SHR32(spx_exp(MULT16_16(QCONST16(.2302585f,11),noise_suppress-effective_echo_suppress)),1)));
695
st->Smin[i] =
MIN32
(st->Stmp[i], st->S[i]);
701
st->Smin[i] =
MIN32
(st->Smin[i], st->S[i]);
702
st->Stmp[i] =
MIN32
(st->Stmp[i], st->S[i]);
855
st->gain[i] = EXTRACT16(
MIN32
(Q15_ONE, MULT16_32_Q15(prior_ratio, MM)));
862
theta =
MIN32
(theta, EXTEND32(32767));
863
/*Q8*/tmp = MULT16_16_Q15((SHL32(1,SNR_SHIFT)+st->prior[i]),EXTRACT16(
MIN32
(Q15ONE,SHR32(spx_exp(-EXTRACT16(theta)),1))))
[
all
...]
arch.h
86
#define
MIN32
(a,b) ((a) < (b) ? (a) : (b)) /**< Maximum 32-bit value. */
mdf.c
366
tmp =
MIN32
(ABS32(tmp), 536870912);
[
all
...]
Completed in 181 milliseconds