summaryrefslogtreecommitdiff
path: root/src/math
AgeCommit message (Expand)AuthorFilesLines
2012-06-02use fistpll mnemonic instead of fistpq (more widely supported) on x86_64 tooRich Felker1-1/+1
2012-05-08math: fix remquo.c when x==-y and a subnormal remainder bug as wellnsz3-5/+8
2012-05-07some assemblers don't like fistpq; use the alt. mnemonic fistpllRich Felker3-3/+3
2012-05-06add FORCE_EVAL macro to evaluate float expr for their side effectnsz5-24/+12
2012-05-06fix unused variable warnings in new nextafter/nexttoward codeRich Felker5-6/+12
2012-05-06math: nextafter and nexttoward cleanupnsz5-291/+176
2012-05-05math: change the formula used for acos.snsz2-20/+16
2012-05-01support alternate glibc name pow10 for exp10Rich Felker3-0/+9
2012-04-30add C stub for sqrtl (already implemented in asm on i386 and x86_64)Rich Felker1-0/+9
2012-04-30first try at writing an efficient and "correct" exp10Rich Felker3-0/+55
2012-04-29fix typo in the x86_64 rounding asmRich Felker4-4/+4
2012-04-29new math asm (abs/rounding) for x86_64Rich Felker6-0/+36
2012-04-04math: fix x86 asin accuracynsz2-5/+6
2012-03-29math: minor cleanups in ceil and floornsz5-10/+7
2012-03-29math: remove x86 modf asmnsz4-111/+0
2012-03-29math: rewrite modf.c and clean up modff.cnsz2-72/+45
2012-03-28math: fix modfl.c bugnsz1-1/+1
2012-03-27math: fix a regression in powl and do some cleanupsnsz1-12/+11
2012-03-27math: add dummy tgamma and tgammaf implementationsnsz2-0/+32
2012-03-27math: remove comment about aliasing lgamma as gammansz3-8/+4
2012-03-27math: fix typo in i386 remquof and remquol asmnsz1-5/+5
2012-03-23Merge branch 'master' of git://git.etalabs.net/muslnsz2-0/+87
2012-03-23asm for hypot and hypotfRich Felker2-0/+87
2012-03-23minor rintl.c fix: remove unsupported ldbl format messagensz1-2/+0
2012-03-23fix tgammal: don't set the signgam globalnsz1-13/+6
2012-03-22acos.s fix: use the formula acos(x) = atan2(sqrt(1-x),sqrt(1+x))nsz2-6/+2
2012-03-20x86_64 math asm, long double functions onlyRich Felker17-0/+239
2012-03-20nearbyint optimization (only clear inexact when necessary)nsz3-19/+29
2012-03-20remove a fixme commentnsz3-3/+2
2012-03-20clean up pow.c and powf.cnsz2-57/+43
2012-03-20clean up powl.cnsz1-92/+47
2012-03-20fix a cbrtl.c regression and remove x87 precision settingnsz1-27/+6
2012-03-20optimize scalbn familyRich Felker3-7/+46
2012-03-19remquo asm: return quotient mod 8, as intended by the specRich Felker1-17/+26
2012-03-19use alternate formula for acos asm to avoid loss of precisionRich Felker1-3/+11
2012-03-19Merge remote branch 'nsz/master'Rich Felker94-806/+654
2012-03-19fix exp asmRich Felker1-23/+22
2012-03-19code cleanup of named constantsnsz73-623/+513
2012-03-19fix remainder*.c: remove useless long double castnsz2-15/+6
2012-03-19don't try to create non-standard denormalization signalnsz3-7/+4
2012-03-19Merge remote branch 'nsz/master'Rich Felker7-80/+3
2012-03-19new modff.c code, fix nan handling in modflnsz2-44/+26
2012-03-19use scalbn or *2.0 instead of ldexp, fix fmalnsz8-101/+102
2012-03-19fix long double const workaround in cbrtlnsz1-5/+1
2012-03-19don't inline __rem_pio2l so the code size is smallernsz5-9/+1
2012-03-19minor fix in __tanl (get sign properly)nsz1-2/+1
2012-03-19bug fix: wrong opcode for writing long longRich Felker2-2/+2
2012-03-19remove long double const workaroundsnsz6-79/+2
2012-03-19fix erfl wrapper for long double==double casensz1-1/+1
2012-03-19asm for log1pRich Felker3-0/+45