Lines Matching refs:tmp32
700 spx_word32_t tmp32;
724 spx_word32_t tmp32;
726 tmp32 = SUB32(EXTEND32(st->input[chan*st->frame_size+i]), EXTEND32(MULT16_16_P15(st->preemph, st->memD[chan])));
728 if (tmp32 > 32767)
730 tmp32 = 32767;
734 if (tmp32 < -32767)
736 tmp32 = -32767;
742 st->input[chan*st->frame_size+i] = EXTRACT16(tmp32);
750 spx_word32_t tmp32;
752 tmp32 = SUB32(EXTEND32(far_end[i*K+speak]), EXTEND32(MULT16_16_P15(st->preemph, st->memX[speak])));
755 if (tmp32 > 32767)
757 tmp32 = 32767;
760 if (tmp32 < -32767)
762 tmp32 = -32767;
766 st->x[speak*N+i+st->frame_size] = EXTRACT16(tmp32);
1074 tmp32 = MULT16_32_Q15(st->beta0,Syy);
1075 if (tmp32 > MULT16_32_Q15(st->beta_max,See))
1076 tmp32 = MULT16_32_Q15(st->beta_max,See);
1077 alpha = FLOAT_DIV32(tmp32, See);
1100 tmp32 = MULT16_32_Q15(st->leak_estimate,Syy);
1101 tmp32 = ADD32(SHR32(Sxx,13), ADD32(tmp32, SHL32(tmp32,1)));
1107 tmp32 = See;
1108 else if (tmp32 < FLOAT_EXTRACT32(bound))
1109 tmp32 = FLOAT_EXTRACT32(bound);
1111 if (tmp32 > SHR32(See,1))
1112 tmp32 = SHR32(See,1);
1113 RER = FLOAT_EXTRACT16(FLOAT_SHL(FLOAT_DIV32(tmp32,See),15));
1155 tmp32 = MULT16_32_Q15(QCONST16(.25f, 15), Sxx);
1157 if (tmp32 > SHR32(See,2))
1158 tmp32 = SHR32(See,2);
1160 if (tmp32 > .25*See)
1161 tmp32 = .25*See;
1163 adapt_rate = FLOAT_EXTRACT16(FLOAT_SHL(FLOAT_DIV32(tmp32, See),15));