| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix ilogb(3) implementation. The results have to match FP_ILOGB0 and |  kettenis | 2020-11-07 | 5 | -85/+110 |
* | Fix declaration of S1 by swapping misplaced ',' and ';'. |  tb | 2019-10-30 | 1 | -2/+2 |
* | repair confusing "} if" indentation as suggested by deraadt@ |  naddy | 2019-04-01 | 2 | -2/+4 |
* | Remove FBSDID. |  kevlo | 2019-03-15 | 2 | -8/+2 |
* | Gah, rintl() is used internally, so add a macro for the fourth possiblity, |  guenther | 2018-03-12 | 1 | -1/+1 |
* | Make the binding of rintl, significand, and significandf consistently |  guenther | 2018-03-12 | 1 | -1/+1 |
* | Fix build of sincosl on machines where long double == double |  guenther | 2018-03-12 | 1 | -1/+2 |
* | Implement sicos(3), sincosf(3) and sincosl(3). These functions are common |  kettenis | 2018-03-10 | 7 | -0/+539 |
* | Nuke whitespace foolish enough to expose itself during the great |  krw | 2017-01-21 | 14 | -28/+28 |
* | Implement gcc suggestion of extra parentheses. No functional change. |  krw | 2017-01-20 | 1 | -2/+2 |
* | Reduce libm's exports and make internal calls go direct. |  guenther | 2016-09-12 | 161 | -356/+324 |
* | Per fpclassify(3): isinff(), isnanf(), finite(), and finitef() are deprecated |  guenther | 2016-09-12 | 6 | -13/+13 |
* | Use fe*() routines from <fenv.h> instead of fp*() routines from <ieeefp.h> |  guenther | 2016-09-12 | 1 | -10/+11 |
* | Fix wrong answer if the imaginary part is zero. |  shadchin | 2015-12-18 | 3 | -3/+9 |
* | Fix behavior csqrt, should be |  shadchin | 2015-12-18 | 3 | -6/+6 |
* | From FreeBSD 23397: |  shadchin | 2015-11-06 | 1 | -7/+7 |
* | Avoid left-shifting a negative integer, which is undefined. Replace |  naddy | 2015-08-20 | 1 | -3/+3 |
* | fix a case where ceill() returns 1.0L: in the x86 extended precision format |  naddy | 2015-08-12 | 1 | -1/+1 |
* | Make exponents of x and y signed and fix esx and esy |  martynas | 2015-07-19 | 1 | -4/+5 |
* | Adapt previous to extended-precision, and fix single-precision constants. |  martynas | 2015-07-16 | 1 | -2/+2 |
* | Signs of cacosh/cacoshf were not always correct (e.g., -1.1 -1.1i), |  martynas | 2015-07-16 | 2 | -4/+4 |
* | Fix logic botch causing warnings with Clang. Reported by dhill, matches |  miod | 2015-01-22 | 2 | -12/+12 |
* | Possibly uninitialized variable. From Clang via dhill. |  miod | 2015-01-22 | 1 | -1/+1 |
* | Missing $OpenBSD$'s. |  krw | 2015-01-20 | 1 | -0/+1 |
* | Switch from <sys/endian.h> or <machine/endian.h> to the new, |  guenther | 2014-07-21 | 3 | -8/+6 |
* | Extended precision floating-point numbers have an explicit integer part bit. |  kettenis | 2014-06-05 | 1 | -11/+10 |
* | Make sure STRICT_ASSIGN handles double as well. From FreeBSD, where the |  kettenis | 2014-06-02 | 1 | -2/+2 |
* | Make floor round to integral value less than x, when x is tiny. |  martynas | 2014-02-11 | 2 | -6/+8 |
* | unsigned char casts for ctype macros |  deraadt | 2013-11-22 | 1 | -3/+3 |
* | Trick the compiler that volatile temporary is used while raising |  martynas | 2013-11-12 | 3 | -0/+12 |
* | Declare __p1evll and __polevll protos in math_private.h instead of |  martynas | 2013-11-12 | 10 | -27/+30 |
* | Add parentheses around comparison in operand of ^. Pointed out by theo. |  martynas | 2013-11-12 | 2 | -10/+10 |
* | Add explicit braces to avoid ambiguous else. Pointed out by theo. |  martynas | 2013-11-12 | 10 | -18/+27 |
* | tgamma(+-0) == +-Inf |  kettenis | 2013-08-05 | 1 | -1/+3 |
* | Fix a couple of corner cases in the implementation of pow(3) to make it |  kettenis | 2013-08-02 | 3 | -9/+15 |
* | test LDBL_MANT_DIG == DBL_MANT_DIG instead of hardcoding 53. |  espie | 2013-07-03 | 69 | -171/+171 |
* | Switch libc and libm to use strong aliases rather than weak aliases |  martynas | 2013-03-28 | 71 | -107/+107 |
* | Get rid of the very ugly lint workarounds: LINTLIBRARY, PROTOLIB, |  martynas | 2013-01-13 | 74 | -524/+33 |
* | Remove excessive sys/cdefs.h inclusion |  deraadt | 2012-12-05 | 84 | -175/+37 |
* | Fix ranges in the method description. |  martynas | 2012-08-19 | 1 | -5/+5 |
* | At some point we've switched to the VFP floating-point--unlike FPA |  martynas | 2011-07-26 | 1 | -3/+3 |
* | __arm32__ -> __arm__, since our new compiler isn't defining the |  martynas | 2011-07-26 | 1 | -4/+4 |
* | Make huge constants actually long, so they don't overflow and become |  martynas | 2011-07-25 | 2 | -26/+26 |
* | - Make constants const. |  martynas | 2011-07-20 | 14 | -50/+50 |
* | For intermediate computations use single or extended counterparts |  martynas | 2011-07-20 | 16 | -50/+49 |
* | Typo. |  martynas | 2011-07-19 | 1 | -1/+1 |
* | Make the zero condition properly raise the exception and return. |  martynas | 2011-07-09 | 1 | -1/+2 |
* | Don't reimplement the same thing twice. OK matthew@. |  martynas | 2011-07-09 | 1 | -30/+1 |
* | Remove the stupid commented out fabs(3), frexp(3), and modf(3) |  martynas | 2011-07-08 | 3 | -187/+0 |
* | Revert (leaving the complex math part alone). Some stuff is depending |  martynas | 2011-07-08 | 2 | -2/+0 |