Home
last modified time | relevance | path

Searched refs:fptemp (Results 1 – 1 of 1) sorted by relevance

/external/qemu/target-i386/
Dfpu_helper.c659 double fptemp = floatx80_to_double(env, ST0); in helper_fyl2x() local
661 if (fptemp>0.0){ in helper_fyl2x()
662 fptemp = log(fptemp)/log(2.0); /* log2(ST) */ in helper_fyl2x()
663 fptemp *= floatx80_to_double(env, ST1); in helper_fyl2x()
664 ST1 = double_to_floatx80(env, fptemp); in helper_fyl2x()
674 double fptemp = floatx80_to_double(env, ST0); in helper_fptan() local
676 if((fptemp > MAXTAN)||(fptemp < -MAXTAN)) { in helper_fptan()
679 fptemp = tan(fptemp); in helper_fptan()
680 ST0 = double_to_floatx80(env, fptemp); in helper_fptan()
690 double fptemp, fpsrcop; in helper_fpatan() local
[all …]