Age | Commit message (Expand) | Author | Lines |
2015-02-08 | math: fix __fpclassifyl(-0.0) for IEEE binary128 | Szabolcs Nagy | -3/+2 |
2015-02-08 | add parenthesis in fma.c to clarify intent and silence warnings | Szabolcs Nagy | -1/+1 |
2014-11-05 | math: use fnstsw consistently instead of fstsw in x87 asm | Szabolcs Nagy | -11/+11 |
2014-11-05 | math: fix x86_64 and x32 asm not to use sahf instruction | Szabolcs Nagy | -28/+14 |
2014-10-31 | math: use the rounding idiom consistently | Szabolcs Nagy | -58/+89 |
2014-10-31 | fix rint.c and rintf.c when FLT_EVAL_METHOD!=0 | Szabolcs Nagy | -4/+22 |
2014-10-08 | always provide __fpclassifyl and __signbitl definitions | Rich Felker | -1/+9 |
2014-09-18 | math: fix exp10 not to raise invalid exception on NaN | Szabolcs Nagy | -4/+13 |
2014-09-08 | fix exp10l.c to include float.h | Szabolcs Nagy | -0/+1 |
2014-09-08 | prune math code on archs with binary64 long double | Szabolcs Nagy | -0/+10 |
2014-04-11 | math: fix aliasing violation in long double wrappers | Szabolcs Nagy | -2/+10 |
2014-02-23 | x32 port (diff against vanilla x86_64) | rofl0r | -69/+69 |
2014-02-23 | import vanilla x86_64 code as x32 | rofl0r | -0/+396 |
2014-01-08 | math: add drem and dremf weak aliases to i386 remainder asm | Szabolcs Nagy | -0/+6 |
2013-12-12 | math: define _GNU_SOURCE when implementing non-standard math functions | Szabolcs Nagy | -0/+6 |
2013-11-24 | math: clean up __rem_pio2 | Szabolcs Nagy | -71/+53 |
2013-11-21 | math: add (obsolete) bsd drem and finite functions | Szabolcs Nagy | -0/+20 |
2013-11-21 | math: lgamma cleanup (simpler sin(pi*x) for the negative case) | Szabolcs Nagy | -202/+110 |
2013-10-28 | math: extensive log*.c cleanup | Szabolcs Nagy | -583/+369 |
2013-10-07 | math: fix rare underflow issue in fma | Szabolcs Nagy | -13/+55 |
2013-10-07 | math: use sqrtl if FLT_EVAL_METHOD==2 in acosh and acoshf | Szabolcs Nagy | -0/+13 |
2013-10-06 | math: remove an unused variable from modfl | Szabolcs Nagy | -1/+0 |
2013-10-04 | math: remove code duplication in erfl found by clang analyzer | Szabolcs Nagy | -13/+2 |
2013-10-04 | math: remove a useless assignment in lgammal found by clang analyzer | Szabolcs Nagy | -2/+2 |
2013-09-13 | fix x86_64 lrintl asm, again | Rich Felker | -2/+2 |
2013-09-06 | math: remove STRICT_ASSIGN from exp2f (see previous commit) | Szabolcs Nagy | -1/+1 |
2013-09-06 | math: remove STRICT_ASSIGN macro | Szabolcs Nagy | -12/+13 |
2013-09-05 | math: support invalid ld80 representations in fpclassify | Szabolcs Nagy | -2/+4 |
2013-09-05 | math: fix atanh (overflow and underflow issues) | Szabolcs Nagy | -14/+37 |
2013-09-05 | math: remove libc.h include from libm.h | Szabolcs Nagy | -1/+5 |
2013-09-05 | math: fix acoshf on negative values | Szabolcs Nagy | -7/+8 |
2013-09-05 | math: fix expm1l on x86_64 (avoid underflow for large negative x) | Szabolcs Nagy | -3/+13 |
2013-09-05 | math: fix lrintl.s on x86_64 (use movslq to signextend the result) | Szabolcs Nagy | -1/+1 |
2013-09-05 | math: fix exp2l asm on x86 (raise underflow correctly) | Szabolcs Nagy | -67/+78 |
2013-09-05 | math: cosmetic cleanup (use explicit union instead of fshape and dshape) | Szabolcs Nagy | -100/+84 |
2013-09-05 | math: remove *_WORD64 macros from libm.h | Szabolcs Nagy | -13/+13 |
2013-09-05 | math: long double fix (use ldshape union) | Szabolcs Nagy | -51/+24 |
2013-09-05 | math: use float_t and double_t in scalbnf and scalbn | Szabolcs Nagy | -16/+20 |
2013-09-05 | math: fix remaining old long double code (erfl, fmal, lgammal, scalbnl) | Szabolcs Nagy | -93/+65 |
2013-09-05 | math: cbrt cleanup and long double fix | Szabolcs Nagy | -72/+59 |
2013-09-05 | math: fix underflow in exp*.c and long double handling in exp2l | Szabolcs Nagy | -182/+139 |
2013-09-05 | math: long double trigonometric cleanup (cosl, sinl, sincosl, tanl) | Szabolcs Nagy | -236/+228 |
2013-09-05 | math: long double inverse trigonometric cleanup (acosl, asinl, atanl, atan2l) | Szabolcs Nagy | -103/+180 |
2013-09-05 | math: rewrite hypot | Szabolcs Nagy | -324/+135 |
2013-09-05 | math: rewrite remainder functions (remainder, remquo, fmod, modf) | Szabolcs Nagy | -1010/+472 |
2013-09-05 | math: rewrite rounding functions (ceil, floor, trunc, round, rint) | Szabolcs Nagy | -905/+274 |
2013-09-05 | math: fix logb(-0.0) in downward rounding mode | Szabolcs Nagy | -6/+6 |
2013-09-05 | math: ilogb cleanup | Szabolcs Nagy | -16/+43 |
2013-09-05 | long double cleanup, initial commit | Szabolcs Nagy | -70/+61 |
2013-08-16 | some initial math asm for armhf (fabs[f] and sqrt[f]) | Rich Felker | -0/+32 |