Lines Matching refs:Pey
177 spx_float_t Pey; member
515 st->Pey = st->Pyy = FLOAT_ONE; in speex_echo_state_init_mc()
576 st->Pey = st->Pyy = FLOAT_ONE; in speex_echo_state_reset()
703 spx_float_t Pey = FLOAT_ONE, Pyy=FLOAT_ONE; in speex_echo_cancellation() local
1065 Pey = FLOAT_ADD(Pey,FLOAT_MULT(Eh,Yh)); in speex_echo_cancellation()
1077 Pey = FLOAT_DIVU(Pey,Pyy); in speex_echo_cancellation()
1086 st->Pey = FLOAT_ADD(FLOAT_MULT(alpha_1,st->Pey) , FLOAT_MULT(alpha,Pey)); in speex_echo_cancellation()
1091 if (FLOAT_LT(st->Pey, FLOAT_MULT(MIN_LEAK,st->Pyy))) in speex_echo_cancellation()
1092 st->Pey = FLOAT_MULT(MIN_LEAK,st->Pyy); in speex_echo_cancellation()
1093 if (FLOAT_GT(st->Pey, st->Pyy)) in speex_echo_cancellation()
1094 st->Pey = st->Pyy; in speex_echo_cancellation()
1096 st->leak_estimate = FLOAT_EXTRACT16(FLOAT_SHL(FLOAT_DIVU(st->Pey, st->Pyy),14)); in speex_echo_cancellation()