summaryrefslogtreecommitdiff
path: root/src/math
AgeCommit message (Expand)AuthorLines
2013-10-07math: fix rare underflow issue in fmaSzabolcs Nagy-13/+55
2013-10-07math: use sqrtl if FLT_EVAL_METHOD==2 in acosh and acoshfSzabolcs Nagy-0/+13
2013-10-06math: remove an unused variable from modflSzabolcs Nagy-1/+0
2013-10-04math: remove code duplication in erfl found by clang analyzerSzabolcs Nagy-13/+2
2013-10-04math: remove a useless assignment in lgammal found by clang analyzerSzabolcs Nagy-2/+2
2013-09-13fix x86_64 lrintl asm, againRich Felker-2/+2
2013-09-06math: remove STRICT_ASSIGN from exp2f (see previous commit)Szabolcs Nagy-1/+1
2013-09-06math: remove STRICT_ASSIGN macroSzabolcs Nagy-12/+13
2013-09-05math: support invalid ld80 representations in fpclassifySzabolcs Nagy-2/+4
2013-09-05math: fix atanh (overflow and underflow issues)Szabolcs Nagy-14/+37
2013-09-05math: remove libc.h include from libm.hSzabolcs Nagy-1/+5
2013-09-05math: fix acoshf on negative valuesSzabolcs Nagy-7/+8
2013-09-05math: fix expm1l on x86_64 (avoid underflow for large negative x)Szabolcs Nagy-3/+13
2013-09-05math: fix lrintl.s on x86_64 (use movslq to signextend the result)Szabolcs Nagy-1/+1
2013-09-05math: fix exp2l asm on x86 (raise underflow correctly)Szabolcs Nagy-67/+78
2013-09-05math: cosmetic cleanup (use explicit union instead of fshape and dshape)Szabolcs Nagy-100/+84
2013-09-05math: remove *_WORD64 macros from libm.hSzabolcs Nagy-13/+13
2013-09-05math: long double fix (use ldshape union)Szabolcs Nagy-51/+24
2013-09-05math: use float_t and double_t in scalbnf and scalbnSzabolcs Nagy-16/+20
2013-09-05math: fix remaining old long double code (erfl, fmal, lgammal, scalbnl)Szabolcs Nagy-93/+65
2013-09-05math: cbrt cleanup and long double fixSzabolcs Nagy-72/+59
2013-09-05math: fix underflow in exp*.c and long double handling in exp2lSzabolcs Nagy-182/+139
2013-09-05math: long double trigonometric cleanup (cosl, sinl, sincosl, tanl)Szabolcs Nagy-236/+228
2013-09-05math: long double inverse trigonometric cleanup (acosl, asinl, atanl, atan2l)Szabolcs Nagy-103/+180
2013-09-05math: rewrite hypotSzabolcs Nagy-324/+135
2013-09-05math: rewrite remainder functions (remainder, remquo, fmod, modf)Szabolcs Nagy-1010/+472
2013-09-05math: rewrite rounding functions (ceil, floor, trunc, round, rint)Szabolcs Nagy-905/+274
2013-09-05math: fix logb(-0.0) in downward rounding modeSzabolcs Nagy-6/+6
2013-09-05math: ilogb cleanupSzabolcs Nagy-16/+43
2013-09-05long double cleanup, initial commitSzabolcs Nagy-70/+61
2013-08-16some initial math asm for armhf (fabs[f] and sqrt[f])Rich Felker-0/+32
2013-08-16fix build of x86_64 expl assemblyRich Felker-1/+1
2013-08-15math: fix pow(x,-1) to raise underflow properlySzabolcs Nagy-2/+14
2013-08-15math: fix i386 atan2.s to raise underflow for subnormal resultsSzabolcs Nagy-2/+24
2013-08-15math: clean up atan2.cSzabolcs Nagy-103/+73
2013-08-15math: fix x86 asin, atan, exp, log1p to raise underflowSzabolcs Nagy-3/+98
2013-08-15math: fix x86 expl.s to raise underflow and clean up special case handlingSzabolcs Nagy-45/+31
2013-08-15math: fix asin, atan, log1p, tanh to raise underflow on subnormalSzabolcs Nagy-26/+39
2013-08-15math: fix tgamma to raise underflow for large negative valuesSzabolcs Nagy-0/+1
2013-08-15math: fix pow(0,-inf) to raise divbyzero flagSzabolcs Nagy-2/+2
2013-08-15math: minor scalbn*.c simplificationSzabolcs Nagy-18/+10
2013-07-28add missing erfcl wrapper for archs where long double is plain doubleRich Felker-0/+4
2013-05-19math: add fma TODO comments about the underflow issueSzabolcs Nagy-2/+14
2013-05-19math: fix two fma issues (only affects non-nearest rounding mode, x86)Szabolcs Nagy-4/+38
2013-05-18math: sin cos cleanupSzabolcs Nagy-112/+128
2013-05-18math: tan cleanupsSzabolcs Nagy-106/+80
2013-05-15math: use double_t for temporaries to avoid stores on i386Szabolcs Nagy-28/+31
2013-01-07math: erf and erfc cleanupSzabolcs Nagy-297/+207
2013-01-01math: bessel cleanup (jn.c and jnf.c)Szabolcs Nagy-164/+161
2013-01-01math: bessel cleanup (j1.c and j1f.c)Szabolcs Nagy-187/+138