| Commit message (Expand) | Author | Age | Files | Lines |
* | On ARM EABI double precision floating point values are stored in the | andrew | 2013-09-07 | 1 | -1/+1 |
* | Add stub implementations of the missing C++11 math functions. | theraven | 2013-09-06 | 1 | -0/+69 |
* | * Whitespace. | kargl | 2013-08-28 | 1 | -1/+1 |
* | * s_erf.c: | kargl | 2013-08-27 | 2 | -99/+71 |
* | Restore the longer form of the _Generic. The short form does not work in C++. | theraven | 2013-07-29 | 1 | -2/+11 |
* | Reenable the isnan(double) / isinf(double) declarations when targeting C89 + ... | theraven | 2013-07-29 | 1 | -0/+15 |
* | Cleaner support for type qualifiers. | theraven | 2013-07-13 | 1 | -11/+2 |
* | Ensure that the _Generic() macro in math.h works with qualified types. | theraven | 2013-07-13 | 1 | -17/+26 |
* | Fix the build with C++ where __builtin_types_compatible_p is not allowed. | theraven | 2013-07-12 | 1 | -2/+3 |
* | Fix some typoes in math.h cleanup. | theraven | 2013-07-11 | 1 | -3/+3 |
* | Cleanups to math.h that prevent namespace conflicts with C++. | theraven | 2013-07-11 | 1 | -28/+49 |
* | Make the order of operations for lib/msun more clear. | eadler | 2013-06-24 | 2 | -2/+2 |
* | Add implementations of acoshl(), asinhl(), and atanhl(). This is a | das | 2013-06-10 | 7 | -3/+275 |
* | Style fixes. | das | 2013-06-05 | 3 | -48/+51 |
* | ld80 and ld128 implementations of expm1l(). This code started life | kargl | 2013-06-03 | 2 | -1/+5 |
* | Add logl, log2l, log10l, and log1pl. | das | 2013-06-03 | 6 | -4/+316 |
* | I'm happy to finally commit stephen@'s implementations of cacos, | das | 2013-05-30 | 2 | -0/+1031 |
* | Fix some regressions caused by the switch from gcc to clang. The fixes | das | 2013-05-27 | 17 | -22/+47 |
* | Only define isnan, isnanf, __isnan and __isnanf in libc.so, not in | dim | 2012-11-10 | 1 | -3/+4 |
* | Fix typo; s/ouput/output | kevlo | 2012-11-07 | 1 | -1/+1 |
* | Revert r241756 | imp | 2012-10-22 | 1 | -62/+0 |
* | Revert r241755 | imp | 2012-10-22 | 1 | -51/+0 |
* | Document the method used to compute expf. Taken from exp, with | imp | 2012-10-19 | 1 | -0/+62 |
* | Document the methods used to compute logf. Taken and edited from the | imp | 2012-10-19 | 1 | -0/+51 |
* | * src/math_private.h: | kargl | 2012-09-29 | 1 | -5/+9 |
* | * Use ENTERI() and RETURNI() to toggle the rounding precision if | kargl | 2012-09-22 | 3 | -6/+21 |
* | * Make STRICT_ALIGN() work for doubles as well as for floats. This | kargl | 2012-09-22 | 1 | -2/+2 |
* | Add __always_inline to __ieee754_rem_pio2() and __ieee754_rem_pio2f(), | dim | 2012-08-11 | 2 | -2/+2 |
* | Change a few extern inline functions in libm to static inline, since | dim | 2012-08-11 | 6 | -28/+23 |
* | ieeefp.h is only needed on i386 class hardware. | kargl | 2012-07-30 | 1 | -0/+2 |
* | Whitespace. | kargl | 2012-07-30 | 1 | -1/+0 |
* | Replace code that toggles between 53 and 64 bits on i386 | kargl | 2012-07-26 | 1 | -19/+4 |
* | Compute the exponential of x for Intel 80-bit format and IEEE 128-bit | kargl | 2012-07-23 | 3 | -1/+46 |
* | Allow inclusion of libc++ <cmath> to work after including math.h | theraven | 2012-05-27 | 1 | -43/+36 |
* | I stopped using my middle name years ago. | des | 2012-04-25 | 1 | -1/+1 |
* | Fix a bug in remquo{,f,l}, in which the quotient didn't always have the | das | 2012-04-07 | 3 | -5/+8 |
* | Fix a small nit noted by bde: exp_x should be of type float, not double. | das | 2012-01-20 | 1 | -1/+1 |
* | Add an implementation of fenv.h intended for platforms that lack an FPU and | das | 2012-01-16 | 1 | -0/+184 |
* | Convert files to UTF-8 and add some copyright markers where missing. | uqs | 2012-01-07 | 1 | -1/+1 |
* | Expose the unimplemented libm functions in the math.h header. This allows C+... | theraven | 2011-11-12 | 1 | -13/+13 |
* | Fix a regression introduced in r226371: When the high part of x*y | das | 2011-10-21 | 2 | -6/+6 |
* | Fix a corner case: tan(large + Inf i) == NaN + NaN i. | das | 2011-10-21 | 2 | -0/+10 |
* | Improved handling of large x in ccosh{,f}(): | das | 2011-10-21 | 4 | -15/+83 |
* | Use __ldexp_exp() to simplify things and improve accuracy for x near | das | 2011-10-21 | 4 | -27/+10 |
* | The cexp() and {,c}{cos,sin}h functions all need to be able to compute | das | 2011-10-21 | 5 | -32/+209 |
* | Use STRICT_ASSIGN() to ensure that the compiler doesn't screw things | das | 2011-10-21 | 4 | -5/+13 |
* | Per IEEE754r, pow(1, y) is 1 even if y is NaN, and pow(-1, +-Inf) is 1. | das | 2011-10-21 | 2 | -2/+8 |
* | Add c{cos,sin,tan}{,h}{,f} functions. This is joint work with | das | 2011-10-17 | 6 | -0/+671 |
* | Optimize the case of pure imaginary arguments. Calls like this are | das | 2011-10-16 | 2 | -2/+9 |
* | Move the macros GET_LDBL_EXPSIGN() and SET_LDBL_EXPSIGN() into | das | 2011-10-16 | 2 | -15/+19 |