Home | History | Annotate | Download | only in src

Lines Matching defs:temp

242     FIXP_DBL result, temp;
261 temp = fPow2(x); // q25 * q25 - (DFRACT_BITS-1) = q19
262 temp = fMult(temp, ONEBY3P56); // q19 * q31 - (DFRACT_BITS-1) = q19
263 temp = temp + Q(19); // q19 + q19 = q19
264 result = fDivNorm(x, temp, &res_e);
279 temp = fPow2Div2(x); // q25 * q25 - (DFRACT_BITS-1) - 1 = q18
280 temp = temp + P281; // q18 + q18 = q18
281 result = fDivNorm(x, temp, &res_e);