| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | Improve the accuracy from a max ULP of ~2000 to max ULP < 0.79 | kargl | 2011-04-29 | 5 | -98/+321 |
* | Take two. Add the missing file that should have been committed | kargl | 2011-03-12 | 3 | -1/+159 |
* | Temporary disable the building of cbrtl until I | kargl | 2011-03-12 | 2 | -2/+1 |
* | Implement the long double version for the cube root function, cbrtl. | kargl | 2011-03-12 | 6 | -18/+32 |
* | Add cexp() to the complex(3) manpage. Thanks to bde for pointing out | das | 2011-03-07 | 1 | -14/+12 |
* | Remove part of an uncommitted change that snuck into the last commit. | das | 2011-03-07 | 1 | -1/+0 |
* | Convert log10f() to use __kernel_log(), which is more accurate and simpler. | das | 2011-03-07 | 1 | -11/+19 |
* | Convert log10() to use __kernel_log(), which is more accurate and simpler. | das | 2011-03-07 | 1 | -38/+16 |
* | Add cexp() and cexpf(). | das | 2011-03-07 | 5 | -2/+317 |
* | Fix typos - remove duplicate "the". | brucec | 2011-02-21 | 1 | -1/+1 |
* | Add complex(3) manual page documenting our partial support for C99 | murray | 2011-02-20 | 2 | -1/+130 |
* | Fix a bug where the wrong argument was passed to SET_FLOAT_WORD(). | das | 2011-02-10 | 1 | -2/+2 |
* | Fix a bug where the wrong argument was passed to INSERT_WORDS(). | das | 2011-02-10 | 1 | -2/+2 |
* | For small arguments, these functions use simple approximations, | das | 2011-02-10 | 5 | -5/+5 |
* | Fix a bogus threshold that was copied from the double precision version. | das | 2011-02-10 | 1 | -1/+1 |
* | Remove duplicate .note.GNU-stack section declaration. | kib | 2011-02-04 | 2 | -4/+0 |
* | Add section .note.GNU-stack for assembly files used by 386 and amd64. | kib | 2011-01-07 | 68 | -0/+136 |
* | Another minor nit: Make sure the constant here is a float so the compiler | das | 2010-12-07 | 1 | -1/+1 |
* | Fix various nits in style and comments that were pointed out by bde. | das | 2010-12-07 | 4 | -13/+16 |
* | Add log2() and log2f(). | das | 2010-12-05 | 8 | -12/+149 |
* | Add a "kernel" log function, based on e_log.c, which is useful for | das | 2010-12-05 | 2 | -0/+171 |
* | Disable gcc's built-in rint() function when compiling s_nearbyint.c. | das | 2010-12-03 | 1 | -0/+6 |
* | Fix bug in jn(3) and jnf(3) that led to -inf results | uqs | 2010-11-13 | 2 | -2/+12 |
* | Use __FBSDID() instead of RCSID() in most .S files under lib/msun/i386, | dim | 2010-10-01 | 21 | -42/+21 |
* | This is exactly the same as the .else, so remove it. | imp | 2010-09-13 | 1 | -2/+0 |
* | MFtbemd: Move to using MACHINE_CPUARCH, now that it is safe. | imp | 2010-09-13 | 1 | -2/+2 |
* | Repair some build breakage introduced in r211725 and garbage collect some | nwhitehorn | 2010-08-28 | 1 | -1/+6 |
* | MFtbemd: | imp | 2010-08-23 | 1 | -1/+1 |
* | Fix typos, spelling, formatting and mdoc mistakes found by Nobuyuki while | joel | 2010-08-16 | 1 | -1/+1 |
* | powerpc64 floating-point is identical to powerpc, so use the same | nwhitehorn | 2010-07-10 | 1 | -0/+2 |