aboutsummaryrefslogtreecommitdiff
path: root/lib/msun
Commit message (Expand)AuthorAgeFilesLines
* mdoc: fix column names, indentation, column separation within each row, andJoel Dahl2012-04-071-7/+7
* Fix a bug in remquo{,f,l}, in which the quotient didn't always have theDavid Schultz2012-04-073-5/+8
* Remove superfluous paragraph macro.Joel Dahl2012-03-251-1/+0
* Fix a small nit noted by bde: exp_x should be of type float, not double.David Schultz2012-01-201-1/+1
* Add a change I missed in r230367 (don't inline arm's fenv.h functions).David Schultz2012-01-201-1/+0
* Don't inline fenv.h functions on arm for now. Inlining makes sense:David Schultz2012-01-203-13/+31
* Add an implementation of fenv.h intended for platforms that lack an FPU andDavid Schultz2012-01-164-6/+205
* Convert files to UTF-8 and add some copyright markers where missing.Ulrich Spörlein2012-01-071-1/+1
* Expose the unimplemented libm functions in the math.h header. This allows C+...David Chisnall2011-11-121-13/+13
* Minor corrections and clarifications regarding exceptions.David Schultz2011-10-211-12/+23
* Fix a regression introduced in r226371: When the high part of x*yDavid Schultz2011-10-212-6/+6
* Fix a corner case: tan(large + Inf i) == NaN + NaN i.David Schultz2011-10-212-0/+10
* Improved handling of large x in ccosh{,f}():David Schultz2011-10-214-15/+83
* Use __ldexp_exp() to simplify things and improve accuracy for x nearDavid Schultz2011-10-214-27/+10
* The cexp() and {,c}{cos,sin}h functions all need to be able to computeDavid Schultz2011-10-216-33/+210
* Use STRICT_ASSIGN() to ensure that the compiler doesn't screw thingsDavid Schultz2011-10-214-5/+13
* Per IEEE754r, pow(1, y) is 1 even if y is NaN, and pow(-1, +-Inf) is 1.David Schultz2011-10-212-2/+8
* Bugfix: feenableexcept() and fedisableexcept() should just return theDavid Schultz2011-10-212-8/+8
* It's no longer accurate to say that math.h "constitute[s] the C mathDavid Schultz2011-10-171-1/+16
* Add c{cos,sin,tan}{,h}{,f} functions. This is joint work withDavid Schultz2011-10-1717-12/+871
* - change "is is" to "is" or "it is"Eitan Adler2011-10-161-1/+1
* Use #include "fenv.h" instead of #include <fenv.h>. This makes itDavid Schultz2011-10-167-7/+7
* Fix some non-standard variable declarations.David Schultz2011-10-161-10/+10
* Optimize the case of pure imaginary arguments. Calls like this areDavid Schultz2011-10-162-2/+9
* Move the macros GET_LDBL_EXPSIGN() and SET_LDBL_EXPSIGN() intoDavid Schultz2011-10-162-15/+19
* Remove an unused variable.David Schultz2011-10-161-1/+1
* Remove some unnecessary initializations.David Schultz2011-10-156-6/+2
* Various changes to improve the accuracy and speed of log{2,10}{,f}.David Schultz2011-10-156-72/+143
* Style fixes and updates to comments.David Schultz2011-10-154-32/+34
* Don't define FP_FAST_FMA on sparc64; with the recent fixes, fma() isDavid Schultz2011-10-151-5/+2
* Add INSERT_WORD64 and EXTRACT_WORD64 macros for use in s_fma.c.David Schultz2011-10-151-0/+24
* Replace two lines accidentally removed in r226218. Thanks to bdeDavid Schultz2011-10-151-0/+3
* Fix a double-rounding bug in fma{,f,l}. The bug would occur inDavid Schultz2011-10-153-125/+231
* Refactor this code by introducing separate functions to handle theDavid Schultz2011-10-112-92/+164
* Provide external definitions of all of the standardized functions inDavid Schultz2011-10-1022-91/+288
* In the libm access macros for the double type, z can sometimesSteve Kargl2011-06-191-2/+1
* Fix clang warnings.Ben Laurie2011-06-181-1/+1
* Clean up the unneeded cpp macro INLINE_REM_PIO2L.Steve Kargl2011-05-305-11/+2
* Improve the accuracy from a max ULP of ~2000 to max ULP < 0.79Steve Kargl2011-04-295-98/+321
* Take two. Add the missing file that should have been committedSteve Kargl2011-03-123-1/+159
* Temporary disable the building of cbrtl until ISteve Kargl2011-03-122-2/+1
* Implement the long double version for the cube root function, cbrtl.Steve Kargl2011-03-126-18/+32
* Add cexp() to the complex(3) manpage. Thanks to bde for pointing outDavid Schultz2011-03-071-14/+12
* Remove part of an uncommitted change that snuck into the last commit.David Schultz2011-03-071-1/+0
* Convert log10f() to use __kernel_log(), which is more accurate and simpler.David Schultz2011-03-071-11/+19
* Convert log10() to use __kernel_log(), which is more accurate and simpler.David Schultz2011-03-071-38/+16
* Add cexp() and cexpf().David Schultz2011-03-075-2/+317
* Fix typos - remove duplicate "the".Rebecca Cran2011-02-211-1/+1
* Add complex(3) manual page documenting our partial support for C99Murray Stokely2011-02-202-1/+130
* Fix a bug where the wrong argument was passed to SET_FLOAT_WORD().David Schultz2011-02-101-2/+2