summaryrefslogtreecommitdiff
path: root/src/math
AgeCommit message (Expand)AuthorFilesLines
2012-03-19asm for log2Rich Felker3-0/+21
2012-03-19asm for remquoRich Felker3-0/+43
2012-03-19optimize exponential asm for i386Rich Felker2-58/+77
2012-03-19Merge remote branch 'nsz/master'Rich Felker5-163/+208
2012-03-19fix broken modf family functionsRich Felker3-27/+66
2012-03-19asm for modf functionsRich Felker3-0/+45
2012-03-19simplify scalbn*.c implementationsnsz3-152/+65
2012-03-19Merge branch 'master' of git://git.etalabs.net/muslnsz9-0/+75
2012-03-19asm for floor/ceil/truncRich Felker9-0/+75
2012-03-19Merge branch 'master' of git://git.etalabs.net/muslnsz21-0/+157
2012-03-19asm for scalbn familyRich Felker9-0/+64
2012-03-19asm for inverse trig functionsRich Felker12-0/+93
2012-03-19Merge branch 'master' of git://git.etalabs.net/muslnsz14-1/+109
2012-03-18asm for log functionsRich Felker6-0/+42
2012-03-18fix broken exponential asmRich Felker2-1/+21
2012-03-18asm for lrint family on i386Rich Felker6-0/+46
2012-03-19Merge branch 'master' of git://git.etalabs.net/muslnsz9-0/+89
2012-03-18asm exponential functions for i386Rich Felker9-0/+89
2012-03-19remove unnecessary TODO comments from fma.cnsz1-5/+1
2012-03-19fmal bug fix: nan input should not raise exceptionnsz1-4/+4
2012-03-19add fma implementation for x86nsz1-7/+143
2012-03-18assembly optimizations for fmod/remainder functionsRich Felker8-0/+88
2012-03-18asm versions of some simple math functions for i386 and x86_64Rich Felker8-0/+48
2012-03-18simplify lround and llround functionsnsz6-112/+20
2012-03-18make lrint and llrint functions work without fenv supportnsz6-6/+16
2012-03-18faster lrint and llrint functionsnsz6-80/+99
2012-03-18fix loads of missing const in new libm, and some global vars (?!) in powlRich Felker19-49/+49
2012-03-17one more fenv availability issue: lroundRich Felker1-0/+2
2012-03-16make fma and lrint functions build without full fenv supportRich Felker4-4/+28
2012-03-16other side of the signgam namespace fix: use the internal nameRich Felker3-3/+7
2012-03-16make signgam a weak alias for an internal symbolRich Felker1-2/+5
2012-03-16fix namespace issues for lgamma, etc.Rich Felker6-14/+23
2012-03-16Merge remote branch 'nsz/master'Rich Felker66-216/+413
2012-03-15remove special nan handling from x86 sqrt asmRich Felker1-3/+0
2012-03-15simplify nan check in sqrt (x86 asm); result of sqrt is never negativeRich Felker1-4/+3
2012-03-15in math.h make lgamma_r and non-double bessel _GNU_SOURCE onlynsz3-0/+3
2012-03-15efficient sincos based on sin and cosnsz3-0/+247
2012-03-15avoid changing NaNs in sqrt (x86 asm) to satisfy c99 f.9 recommendationRich Felker1-0/+4
2012-03-15correctly rounded sqrt() asm for x86 (i387)Rich Felker1-0/+16
2012-03-13correct rounding for i387 sqrtf functionRich Felker1-0/+2
2012-03-13math cleanup: use 1.0f instead of 1.0Fnsz4-6/+6
2012-03-13math cleanup: use 1.0f instead of (float)1.0nsz25-96/+96
2012-03-13remove libm.h includes when math.h and float.h are enoughnsz31-30/+47
2012-03-13clean up __expo2.c, use a slightly better k constantnsz2-84/+14
2012-03-13implement nan, nanf, nanlRich Felker3-0/+18
2012-03-13first commit of the new libm!Rich Felker305-7726/+17926
2011-06-30fix error in previous ld80 fpclassify commitRich Felker1-1/+1
2011-06-30catch invalid ld80 bit patterns and treat them as nanRich Felker1-2/+2
2011-06-26type directives for x86_64 math asmRich Felker2-0/+2
2011-06-26use .type directives for math asm (needed for dynamic linking to work)Rich Felker15-0/+26