summaryrefslogtreecommitdiff
path: root/src/math
AgeCommit message (Expand)AuthorLines
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
2013-01-01math: bessel cleanup (j0.c and j0f.c)Szabolcs Nagy-203/+161
2012-12-16math: use 0x1p-120f and 0x1p120f for tiny and huge valuesSzabolcs Nagy-27/+27
2012-12-16math: tgammal.c fixesSzabolcs Nagy-28/+23
2012-12-16math: tanh.c cleanup similar to sinh, coshSzabolcs Nagy-173/+83
2012-12-16math: sinh.c cleanup similar to the cosh oneSzabolcs Nagy-171/+72
2012-12-16math: finished cosh.c cleanupSzabolcs Nagy-142/+49
2012-12-16math: x86_64 version of expl, fixed some comments in the i386 versionSzabolcs Nagy-4/+112
2012-12-16math: move x86_64 exp2l implementation to exp2l.s from expl.sSzabolcs Nagy-85/+76
2012-12-14math: fix i386/expl.s with more precise x*log2eSzabolcs Nagy-7/+107
2012-12-12math: add a non-dummy tgamma implementationSzabolcs Nagy-20/+215
2012-12-12math: cosh cleanupSzabolcs Nagy-70/+63
2012-12-12math: fix comment in __rem_pio2f.cSzabolcs Nagy-2/+2
2012-12-12math: add empty __invtrigl.s to i386 and x86_64Szabolcs Nagy-0/+0
2012-12-11math: clean up inverse trigonometric functionsSzabolcs Nagy-377/+258
2012-12-11math: rewrite inverse hyperbolic functions to be simpler/smallerSzabolcs Nagy-406/+149
2012-12-07fix trailing whitespace issues that crept in here and thereRich Felker-1/+1
2012-11-18math: use float constants in exp10f.cSzabolcs Nagy-1/+1
2012-11-18math: expl.c cleanupSzabolcs Nagy-24/+19
2012-11-18math: expf.c cleanupSzabolcs Nagy-63/+55
2012-11-17math: cleanup exp2.c exp2f.c and exp2l.cSzabolcs Nagy-86/+56
2012-11-17math: exp.c clean upSzabolcs Nagy-72/+49
2012-11-14math: ld80 invtrig cleanupsSzabolcs Nagy-110/+87
2012-11-13math: simplify hypot and hypotf using scalbnSzabolcs Nagy-11/+4
2012-11-13math: use '#pragma STDC FENV_ACCESS ON' when fenv is accessedSzabolcs Nagy-0/+10
2012-11-13math: excess precision fix modf, modff, scalbn, scalbnfSzabolcs Nagy-22/+18
2012-11-13math: fix scalbn and scalbnf on overflow/underflowSzabolcs Nagy-10/+24
2012-11-13math: fix nextafter and nexttoward on maxdbl and maxflt inputSzabolcs Nagy-4/+4
2012-11-13math: raise flags in logl.c on <= 0 argumentsSzabolcs Nagy-9/+3
2012-11-13math: fix logb*.c exceptions now that ilogb raises invalidSzabolcs Nagy-25/+17
2012-11-13math: raise flags in log2l.c on <= 0 arguments, and fix volatileSzabolcs Nagy-8/+3