about summary refs log tree commit diff
path: root/src/math
Commit message (Expand)AuthorAgeFilesLines
* Merge remote-tracking branch 'nsz/exp'Rich Felker2012-08-132-40/+35
|\
| * math: fix exp.s on i386 and x86_64 so the exception flags are correctnsz2012-08-082-40/+35
* | remove significandlRich Felker2012-08-131-7/+0
* | add significand[fl] math functionsRich Felker2012-08-133-0/+21
|/
* fix missing prototype and simplify sincosl on ld64 archsRich Felker2012-07-021-4/+2
* fix invalid implicit pointer conversion in ld64 modflRich Felker2012-07-021-1/+1
* math: fix fma bug on x86 (found by Bruno Haible with gnulib)nsz2012-06-201-2/+10
* support ld80 pseudo-denormal invalid bit patterns; treat them as nanRich Felker2012-06-201-2/+5
* use fistpll mnemonic instead of fistpq (more widely supported) on x86_64 tooRich Felker2012-06-021-1/+1
* math: fix remquo.c when x==-y and a subnormal remainder bug as wellnsz2012-05-083-5/+8
* some assemblers don't like fistpq; use the alt. mnemonic fistpllRich Felker2012-05-073-3/+3
* add FORCE_EVAL macro to evaluate float expr for their side effectnsz2012-05-065-24/+12
* fix unused variable warnings in new nextafter/nexttoward codeRich Felker2012-05-065-6/+12
* math: nextafter and nexttoward cleanupnsz2012-05-065-291/+176
* math: change the formula used for acos.snsz2012-05-052-20/+16
* support alternate glibc name pow10 for exp10Rich Felker2012-05-013-0/+9
* add C stub for sqrtl (already implemented in asm on i386 and x86_64)Rich Felker2012-04-301-0/+9
* first try at writing an efficient and "correct" exp10Rich Felker2012-04-303-0/+55
* fix typo in the x86_64 rounding asmRich Felker2012-04-294-4/+4
* new math asm (abs/rounding) for x86_64Rich Felker2012-04-296-0/+36
* math: fix x86 asin accuracynsz2012-04-042-5/+6
* math: minor cleanups in ceil and floornsz2012-03-295-10/+7
* math: remove x86 modf asmnsz2012-03-294-111/+0
* math: rewrite modf.c and clean up modff.cnsz2012-03-292-72/+45
* math: fix modfl.c bugnsz2012-03-281-1/+1
* math: fix a regression in powl and do some cleanupsnsz2012-03-271-12/+11
* math: add dummy tgamma and tgammaf implementationsnsz2012-03-272-0/+32
* math: remove comment about aliasing lgamma as gammansz2012-03-273-8/+4
* math: fix typo in i386 remquof and remquol asmnsz2012-03-271-5/+5
* Merge branch 'master' of git://git.etalabs.net/muslnsz2012-03-232-0/+87
|\
| * asm for hypot and hypotfRich Felker2012-03-232-0/+87
* | minor rintl.c fix: remove unsupported ldbl format messagensz2012-03-231-2/+0
* | fix tgammal: don't set the signgam globalnsz2012-03-231-13/+6
|/
* acos.s fix: use the formula acos(x) = atan2(sqrt(1-x),sqrt(1+x))nsz2012-03-222-6/+2
* x86_64 math asm, long double functions onlyRich Felker2012-03-2017-0/+239
* nearbyint optimization (only clear inexact when necessary)nsz2012-03-203-19/+29
* remove a fixme commentnsz2012-03-203-3/+2
* clean up pow.c and powf.cnsz2012-03-202-57/+43
* clean up powl.cnsz2012-03-201-92/+47
* fix a cbrtl.c regression and remove x87 precision settingnsz2012-03-201-27/+6
* optimize scalbn familyRich Felker2012-03-203-7/+46
* remquo asm: return quotient mod 8, as intended by the specRich Felker2012-03-191-17/+26
* use alternate formula for acos asm to avoid loss of precisionRich Felker2012-03-191-3/+11
* Merge remote branch 'nsz/master'Rich Felker2012-03-1994-806/+654
|\
| * code cleanup of named constantsnsz2012-03-1973-623/+513
| * fix remainder*.c: remove useless long double castnsz2012-03-192-15/+6
| * don't try to create non-standard denormalization signalnsz2012-03-193-7/+4
| * new modff.c code, fix nan handling in modflnsz2012-03-192-44/+26
| * use scalbn or *2.0 instead of ldexp, fix fmalnsz2012-03-198-101/+102
| * fix long double const workaround in cbrtlnsz2012-03-191-5/+1