summaryrefslogtreecommitdiff
path: root/src/math
AgeCommit message (Expand)AuthorLines
2012-08-13Merge remote-tracking branch 'nsz/exp'Rich Felker-40/+35
2012-08-13remove significandlRich Felker-7/+0
2012-08-13add significand[fl] math functionsRich Felker-0/+21
2012-08-08math: fix exp.s on i386 and x86_64 so the exception flags are correctnsz-40/+35
2012-07-02fix missing prototype and simplify sincosl on ld64 archsRich Felker-4/+2
2012-07-02fix invalid implicit pointer conversion in ld64 modflRich Felker-1/+1
2012-06-20math: fix fma bug on x86 (found by Bruno Haible with gnulib)nsz-2/+10
2012-06-20support ld80 pseudo-denormal invalid bit patterns; treat them as nanRich Felker-2/+5
2012-06-02use fistpll mnemonic instead of fistpq (more widely supported) on x86_64 tooRich Felker-1/+1
2012-05-08math: fix remquo.c when x==-y and a subnormal remainder bug as wellnsz-5/+8
2012-05-07some assemblers don't like fistpq; use the alt. mnemonic fistpllRich Felker-3/+3
2012-05-06add FORCE_EVAL macro to evaluate float expr for their side effectnsz-24/+12
2012-05-06fix unused variable warnings in new nextafter/nexttoward codeRich Felker-6/+12
2012-05-06math: nextafter and nexttoward cleanupnsz-291/+176
2012-05-05math: change the formula used for acos.snsz-20/+16
2012-05-01support alternate glibc name pow10 for exp10Rich Felker-0/+9
2012-04-30add C stub for sqrtl (already implemented in asm on i386 and x86_64)Rich Felker-0/+9
2012-04-30first try at writing an efficient and "correct" exp10Rich Felker-0/+55
2012-04-29fix typo in the x86_64 rounding asmRich Felker-4/+4
2012-04-29new math asm (abs/rounding) for x86_64Rich Felker-0/+36
2012-04-04math: fix x86 asin accuracynsz-5/+6
2012-03-29math: minor cleanups in ceil and floornsz-10/+7
2012-03-29math: remove x86 modf asmnsz-111/+0
2012-03-29math: rewrite modf.c and clean up modff.cnsz-72/+45
2012-03-28math: fix modfl.c bugnsz-1/+1
2012-03-27math: fix a regression in powl and do some cleanupsnsz-12/+11
2012-03-27math: add dummy tgamma and tgammaf implementationsnsz-0/+32
2012-03-27math: remove comment about aliasing lgamma as gammansz-8/+4
2012-03-27math: fix typo in i386 remquof and remquol asmnsz-5/+5
2012-03-23Merge branch 'master' of git://git.etalabs.net/muslnsz-0/+87
2012-03-23asm for hypot and hypotfRich Felker-0/+87
2012-03-23minor rintl.c fix: remove unsupported ldbl format messagensz-2/+0
2012-03-23fix tgammal: don't set the signgam globalnsz-13/+6
2012-03-22acos.s fix: use the formula acos(x) = atan2(sqrt(1-x),sqrt(1+x))nsz-6/+2
2012-03-20x86_64 math asm, long double functions onlyRich Felker-0/+239
2012-03-20nearbyint optimization (only clear inexact when necessary)nsz-19/+29
2012-03-20remove a fixme commentnsz-3/+2
2012-03-20clean up pow.c and powf.cnsz-57/+43
2012-03-20clean up powl.cnsz-92/+47
2012-03-20fix a cbrtl.c regression and remove x87 precision settingnsz-27/+6
2012-03-20optimize scalbn familyRich Felker-7/+46
2012-03-19remquo asm: return quotient mod 8, as intended by the specRich Felker-17/+26
2012-03-19use alternate formula for acos asm to avoid loss of precisionRich Felker-3/+11
2012-03-19Merge remote branch 'nsz/master'Rich Felker-806/+654
2012-03-19fix exp asmRich Felker-23/+22
2012-03-19code cleanup of named constantsnsz-623/+513
2012-03-19fix remainder*.c: remove useless long double castnsz-15/+6
2012-03-19don't try to create non-standard denormalization signalnsz-7/+4
2012-03-19Merge remote branch 'nsz/master'Rich Felker-80/+3
2012-03-19new modff.c code, fix nan handling in modflnsz-44/+26