Home | History | Annotate | Download | only in libspeex

Lines Matching refs:tmp32

706    spx_word32_t tmp32;
730 spx_word32_t tmp32;
732 tmp32 = SUB32(EXTEND32(st->input[chan*st->frame_size+i]), EXTEND32(MULT16_16_P15(st->preemph, st->memD[chan])));
734 if (tmp32 > 32767)
736 tmp32 = 32767;
740 if (tmp32 < -32767)
742 tmp32 = -32767;
748 st->input[chan*st->frame_size+i] = EXTRACT16(tmp32);
756 spx_word32_t tmp32;
758 tmp32 = SUB32(EXTEND32(far_end[i*K+speak]), EXTEND32(MULT16_16_P15(st->preemph, st->memX[speak])));
761 if (tmp32 > 32767)
763 tmp32 = 32767;
766 if (tmp32 < -32767)
768 tmp32 = -32767;
772 st->x[speak*N+i+st->frame_size] = EXTRACT16(tmp32);
1080 tmp32 = MULT16_32_Q15(st->beta0,Syy);
1081 if (tmp32 > MULT16_32_Q15(st->beta_max,See))
1082 tmp32 = MULT16_32_Q15(st->beta_max,See);
1083 alpha = FLOAT_DIV32(tmp32, See);
1106 tmp32 = MULT16_32_Q15(st->leak_estimate,Syy);
1107 tmp32 = ADD32(SHR32(Sxx,13), ADD32(tmp32, SHL32(tmp32,1)));
1113 tmp32 = See;
1114 else if (tmp32 < FLOAT_EXTRACT32(bound))
1115 tmp32 = FLOAT_EXTRACT32(bound);
1117 if (tmp32 > SHR32(See,1))
1118 tmp32 = SHR32(See,1);
1119 RER = FLOAT_EXTRACT16(FLOAT_SHL(FLOAT_DIV32(tmp32,See),15));
1161 tmp32 = MULT16_32_Q15(QCONST16(.25f, 15), Sxx);
1163 if (tmp32 > SHR32(See,2))
1164 tmp32 = SHR32(See,2);
1166 if (tmp32 > .25*See)
1167 tmp32 = .25*See;
1169 adapt_rate = FLOAT_EXTRACT16(FLOAT_SHL(FLOAT_DIV32(tmp32, See),15));