You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Alessandro Gatti 3613ad9624 lib/libm: Do not force floating point type size evaluation. 6 months ago
..
README lib/libm_dbl: Add implementation of copysign() for DEBUG builds. 6 years ago
__cos.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
__expo2.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
__fpclassify.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
__rem_pio2.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
__rem_pio2_large.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
__signbit.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
__sin.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
__tan.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
acos.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
acosh.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
asin.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
asinh.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
atan.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
atan2.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
atanh.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
ceil.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
copysign.c lib/libm_dbl: Add implementation of copysign() for DEBUG builds. 6 years ago
cos.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
cosh.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
erf.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
exp.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
expm1.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
floor.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
fmod.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
frexp.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
ldexp.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
lgamma.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
libm.h lib/libm: Do not force floating point type size evaluation. 5 months ago
log.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
log1p.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
log10.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
modf.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
nearbyint.c all: Remove commented-out include statements. 5 years ago
pow.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
rint.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
round.c lib/libm_dbl: Add round.c source code. 4 years ago
scalbn.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
sin.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
sinh.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
sqrt.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
tan.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
tanh.c lib/libm_dbl/tanh: Make tanh more efficient and handle large numbers. 6 years ago
tgamma.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago
thumb_vfp_sqrt.c lib/libm: Use __asm__ instead of asm. 2 years ago
trunc.c lib: Add libm_dbl, a double-precision math library, from musl-1.1.16. 7 years ago

README

This directory contains source code for the standard double-precision math
functions.

The files lgamma.c, log10.c and tanh.c are too small to have a meaningful
copyright or license.

The file copysign.c contains a double version of the float copysignf provided
in libm/math.c for use in DEBUG builds where the standard library copy is
not available.

The rest of the files in this directory are copied from the musl library,
v1.1.16, and, unless otherwise stated in the individual file, have the
following copyright and MIT license:

----------------------------------------------------------------------
Copyright © 2005-2014 Rich Felker, et al.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
----------------------------------------------------------------------