summaryrefslogtreecommitdiff
path: root/src/math
AgeCommit message (Expand)AuthorFilesLines
2014-11-05math: use fnstsw consistently instead of fstsw in x87 asmSzabolcs Nagy11-11/+11
2014-11-05math: fix x86_64 and x32 asm not to use sahf instructionSzabolcs Nagy6-28/+14
2014-10-31math: use the rounding idiom consistentlySzabolcs Nagy13-58/+89
2014-10-31fix rint.c and rintf.c when FLT_EVAL_METHOD!=0Szabolcs Nagy2-4/+22
2014-10-08always provide __fpclassifyl and __signbitl definitionsRich Felker2-1/+9
2014-09-18math: fix exp10 not to raise invalid exception on NaNSzabolcs Nagy3-4/+13
2014-09-08fix exp10l.c to include float.hSzabolcs Nagy1-0/+1
2014-09-08prune math code on archs with binary64 long doubleSzabolcs Nagy2-0/+10
2014-04-11math: fix aliasing violation in long double wrappersSzabolcs Nagy2-2/+10
2014-02-23x32 port (diff against vanilla x86_64)rofl0r18-69/+69
2014-02-23import vanilla x86_64 code as x32rofl0r30-0/+396
2014-01-08math: add drem and dremf weak aliases to i386 remainder asmSzabolcs Nagy2-0/+6
2013-12-12math: define _GNU_SOURCE when implementing non-standard math functionsSzabolcs Nagy6-0/+6
2013-11-24math: clean up __rem_pio2Szabolcs Nagy3-71/+53
2013-11-21math: add (obsolete) bsd drem and finite functionsSzabolcs Nagy4-0/+20
2013-11-21math: lgamma cleanup (simpler sin(pi*x) for the negative case)Szabolcs Nagy4-202/+110
2013-10-28math: extensive log*.c cleanupSzabolcs Nagy14-583/+369
2013-10-07math: fix rare underflow issue in fmaSzabolcs Nagy3-13/+55
2013-10-07math: use sqrtl if FLT_EVAL_METHOD==2 in acosh and acoshfSzabolcs Nagy2-0/+13
2013-10-06math: remove an unused variable from modflSzabolcs Nagy1-1/+0
2013-10-04math: remove code duplication in erfl found by clang analyzerSzabolcs Nagy1-13/+2
2013-10-04math: remove a useless assignment in lgammal found by clang analyzerSzabolcs Nagy1-2/+2
2013-09-13fix x86_64 lrintl asm, againRich Felker1-2/+2
2013-09-06math: remove STRICT_ASSIGN from exp2f (see previous commit)Szabolcs Nagy1-1/+1
2013-09-06math: remove STRICT_ASSIGN macroSzabolcs Nagy10-12/+13
2013-09-05math: support invalid ld80 representations in fpclassifySzabolcs Nagy1-2/+4
2013-09-05math: fix atanh (overflow and underflow issues)Szabolcs Nagy3-14/+37
2013-09-05math: remove libc.h include from libm.hSzabolcs Nagy4-1/+5
2013-09-05math: fix acoshf on negative valuesSzabolcs Nagy2-7/+8
2013-09-05math: fix expm1l on x86_64 (avoid underflow for large negative x)Szabolcs Nagy3-3/+13
2013-09-05math: fix lrintl.s on x86_64 (use movslq to signextend the result)Szabolcs Nagy1-1/+1
2013-09-05math: fix exp2l asm on x86 (raise underflow correctly)Szabolcs Nagy2-67/+78
2013-09-05math: cosmetic cleanup (use explicit union instead of fshape and dshape)Szabolcs Nagy10-100/+84
2013-09-05math: remove *_WORD64 macros from libm.hSzabolcs Nagy1-13/+13
2013-09-05math: long double fix (use ldshape union)Szabolcs Nagy8-51/+24
2013-09-05math: use float_t and double_t in scalbnf and scalbnSzabolcs Nagy2-16/+20
2013-09-05math: fix remaining old long double code (erfl, fmal, lgammal, scalbnl)Szabolcs Nagy5-93/+65
2013-09-05math: cbrt cleanup and long double fixSzabolcs Nagy3-72/+59
2013-09-05math: fix underflow in exp*.c and long double handling in exp2lSzabolcs Nagy8-182/+139
2013-09-05math: long double trigonometric cleanup (cosl, sinl, sincosl, tanl)Szabolcs Nagy8-236/+228
2013-09-05math: long double inverse trigonometric cleanup (acosl, asinl, atanl, atan2l)Szabolcs Nagy6-103/+180
2013-09-05math: rewrite hypotSzabolcs Nagy3-324/+135
2013-09-05math: rewrite remainder functions (remainder, remquo, fmod, modf)Szabolcs Nagy11-1010/+472
2013-09-05math: rewrite rounding functions (ceil, floor, trunc, round, rint)Szabolcs Nagy15-905/+274
2013-09-05math: fix logb(-0.0) in downward rounding modeSzabolcs Nagy3-6/+6
2013-09-05math: ilogb cleanupSzabolcs Nagy3-16/+43
2013-09-05long double cleanup, initial commitSzabolcs Nagy6-70/+61
2013-08-16some initial math asm for armhf (fabs[f] and sqrt[f])Rich Felker12-0/+32
2013-08-16fix build of x86_64 expl assemblyRich Felker1-1/+1
2013-08-15math: fix pow(x,-1) to raise underflow properlySzabolcs Nagy1-2/+14