Lines Matching refs:py
32 _fp_mul(pfpsd, px, py, pz) in _fp_mul() argument
34 unpacked *px, *py, *pz;
41 if ((int) px->fpclass <= (int) py->fpclass) {
43 px = py;
44 py = pt;
50 pz->sign = px->sign ^ py->sign;
58 if (py->fpclass == fp_zero) {
64 if (py->fpclass == fp_zero) {
77 y = py->significand[3]; /* py->significand[3] * x */
98 y = py->significand[2]; /* py->significand[2] * x */
123 y = py->significand[1]; /* py->significand[1] * x */
149 y = py->significand[0]; /* y is of form 0x0001???? */
169 pz->exponent = px->exponent + py->exponent + 1;
177 pz->exponent = px->exponent + py->exponent;