Lines Matching defs:Pyy
172 spx_float_t Pyy;
509 st->Pey = st->Pyy = FLOAT_ONE;
570 st->Pey = st->Pyy = FLOAT_ONE;
697 spx_float_t Pey = FLOAT_ONE, Pyy=FLOAT_ONE;
1060 Pyy = FLOAT_ADD(Pyy,FLOAT_MULT(Yh,Yh));
1070 Pyy = FLOAT_SQRT(Pyy);
1071 Pey = FLOAT_DIVU(Pey,Pyy);
1081 st->Pyy = FLOAT_ADD(FLOAT_MULT(alpha_1,st->Pyy) , FLOAT_MULT(alpha,Pyy));
1082 if (FLOAT_LT(st->Pyy, FLOAT_ONE))
1083 st->Pyy = FLOAT_ONE;
1085 if (FLOAT_LT(st->Pey, FLOAT_MULT(MIN_LEAK,st->Pyy)))
1086 st->Pey = FLOAT_MULT(MIN_LEAK,st->Pyy);
1087 if (FLOAT_GT(st->Pey, st->Pyy))
1088 st->Pey = st->Pyy;
1090 st->leak_estimate = FLOAT_EXTRACT16(FLOAT_SHL(FLOAT_DIVU(st->Pey, st->Pyy),14));