| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | 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 | 3 | -4/+3 |
* | Replace the macro name NUM with INTERVALS. This change provides | kargl | 2012-07-26 | 2 | -15/+16 |
* | * ld80/expl.c: | kargl | 2012-07-26 | 2 | -8/+3 |
* | Replace code that toggles between 53 and 64 bits on i386 | kargl | 2012-07-26 | 1 | -19/+4 |
* | Hook ld80/s_expl.c or ld128/s_expl.c into the building of libm. | kargl | 2012-07-23 | 1 | -1/+1 |
* | Compute the exponential of x for Intel 80-bit format and IEEE 128-bit | kargl | 2012-07-23 | 7 | -6/+620 |
* | Allow inclusion of libc++ <cmath> to work after including math.h | theraven | 2012-05-27 | 1 | -43/+36 |
* | General mdoc(7) and typo fixes. | gjb | 2012-05-11 | 2 | -2/+2 |
* | I stopped using my middle name years ago. | des | 2012-04-25 | 1 | -1/+1 |
* | mdoc: fix column names, indentation, column separation within each row, and | joel | 2012-04-07 | 1 | -7/+7 |
* | Fix a bug in remquo{,f,l}, in which the quotient didn't always have the | das | 2012-04-07 | 3 | -5/+8 |
* | Remove superfluous paragraph macro. | joel | 2012-03-25 | 1 | -1/+0 |
* | Fix a small nit noted by bde: exp_x should be of type float, not double. | das | 2012-01-20 | 1 | -1/+1 |
* | Add a change I missed in r230367 (don't inline arm's fenv.h functions). | das | 2012-01-20 | 1 | -1/+0 |
* | Don't inline fenv.h functions on arm for now. Inlining makes sense: | das | 2012-01-20 | 3 | -13/+31 |
* | Add an implementation of fenv.h intended for platforms that lack an FPU and | das | 2012-01-16 | 4 | -6/+205 |
* | 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 |
* | Minor corrections and clarifications regarding exceptions. | das | 2011-10-21 | 1 | -12/+23 |
* | 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 | 6 | -33/+210 |
* | 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 |
* | Bugfix: feenableexcept() and fedisableexcept() should just return the | das | 2011-10-21 | 2 | -8/+8 |
* | It's no longer accurate to say that math.h "constitute[s] the C math | das | 2011-10-17 | 1 | -1/+16 |
* | Add c{cos,sin,tan}{,h}{,f} functions. This is joint work with | das | 2011-10-17 | 17 | -12/+871 |
* | - change "is is" to "is" or "it is" | eadler | 2011-10-16 | 1 | -1/+1 |
* | Use #include "fenv.h" instead of #include <fenv.h>. This makes it | das | 2011-10-16 | 7 | -7/+7 |
* | Fix some non-standard variable declarations. | das | 2011-10-16 | 1 | -10/+10 |
* | 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 |
* | Remove an unused variable. | das | 2011-10-16 | 1 | -1/+1 |
* | Remove some unnecessary initializations. | das | 2011-10-15 | 6 | -6/+2 |
* | Various changes to improve the accuracy and speed of log{2,10}{,f}. | das | 2011-10-15 | 6 | -72/+143 |
* | Style fixes and updates to comments. | das | 2011-10-15 | 4 | -32/+34 |
* | Don't define FP_FAST_FMA on sparc64; with the recent fixes, fma() is | das | 2011-10-15 | 1 | -5/+2 |
* | Add INSERT_WORD64 and EXTRACT_WORD64 macros for use in s_fma.c. | das | 2011-10-15 | 1 | -0/+24 |
* | Replace two lines accidentally removed in r226218. Thanks to bde | das | 2011-10-15 | 1 | -0/+3 |
* | Fix a double-rounding bug in fma{,f,l}. The bug would occur in | das | 2011-10-15 | 3 | -125/+231 |
* | Refactor this code by introducing separate functions to handle the | das | 2011-10-11 | 2 | -92/+164 |
* | Provide external definitions of all of the standardized functions in | das | 2011-10-10 | 22 | -91/+288 |
* | In the libm access macros for the double type, z can sometimes | kargl | 2011-06-19 | 1 | -2/+1 |
* | Fix clang warnings. | benl | 2011-06-18 | 1 | -1/+1 |
* | Clean up the unneeded cpp macro INLINE_REM_PIO2L. | kargl | 2011-05-30 | 5 | -11/+2 |