• Home
  • Annotate
  • current directory
Name
Date
Size
#Lines
LOC

..29-Oct-2021-

README A D29-Oct-20211.7 KiB3729

__cos.c A D29-Oct-20212.8 KiB7218

__expo2.c A D29-Oct-2021485 179

__fpclassify.c A D29-Oct-2021259 1210

__rem_pio2.c A D29-Oct-20214.4 KiB178138

__rem_pio2_large.c A D29-Oct-202116 KiB443276

__signbit.c A D29-Oct-2021116 139

__sin.c A D29-Oct-20212.3 KiB6520

__tan.c A D29-Oct-20213.9 KiB11156

acos.c A D29-Oct-20212.9 KiB10256

acosh.c A D29-Oct-2021569 2515

asin.c A D29-Oct-20213.3 KiB10855

asinh.c A D29-Oct-2021697 2919

atan.c A D29-Oct-20213.8 KiB11776

atan2.c A D29-Oct-20213.2 KiB10858

atanh.c A D29-Oct-2021577 3021

ceil.c A D29-Oct-2021654 3226

copysign.c A D29-Oct-20211.5 KiB4917

cos.c A D29-Oct-20212.1 KiB7826

cosh.c A D29-Oct-2021764 4124

erf.c A D29-Oct-202110.1 KiB274143

exp.c A D29-Oct-20214 KiB13555

expm1.c A D29-Oct-20216.8 KiB20285

floor.c A D29-Oct-2021653 3226

fmod.c A D29-Oct-20211.2 KiB6957

frexp.c A D29-Oct-2021374 2420

ldexp.c A D29-Oct-202175 75

lgamma.c A D29-Oct-2021128 96

libm.h A D29-Oct-20213.6 KiB9766

log.c A D29-Oct-20213.9 KiB11949

log10.c A D29-Oct-2021133 85

log1p.c A D29-Oct-20213.8 KiB12361

modf.c A D29-Oct-2021536 3528

nearbyint.c A D29-Oct-2021314 2015

pow.c A D29-Oct-202110.1 KiB329231

rint.c A D29-Oct-2021489 2925

round.c A D29-Oct-2021597 3631

scalbn.c A D29-Oct-2021576 3429

sin.c A D29-Oct-20212.1 KiB7926

sinh.c A D29-Oct-2021837 4024

sqrt.c A D29-Oct-20215.3 KiB18694

tan.c A D29-Oct-20211.9 KiB7120

tanh.c A D29-Oct-2021190 1311

tgamma.c A D29-Oct-20215.3 KiB223145

thumb_vfp_sqrt.c A D29-Oct-2021252 118

trunc.c A D29-Oct-2021303 2017

README

1This directory contains source code for the standard double-precision math
2functions.
3
4The files lgamma.c, log10.c and tanh.c are too small to have a meaningful
5copyright or license.
6
7The file copysign.c contains a double version of the float copysignf provided
8in libm/math.c for use in DEBUG builds where the standard library copy is
9not available.
10
11The rest of the files in this directory are copied from the musl library,
12v1.1.16, and, unless otherwise stated in the individual file, have the
13following copyright and MIT license:
14
15----------------------------------------------------------------------
16Copyright © 2005-2014 Rich Felker, et al.
17
18Permission is hereby granted, free of charge, to any person obtaining
19a copy of this software and associated documentation files (the
20"Software"), to deal in the Software without restriction, including
21without limitation the rights to use, copy, modify, merge, publish,
22distribute, sublicense, and/or sell copies of the Software, and to
23permit persons to whom the Software is furnished to do so, subject to
24the following conditions:
25
26The above copyright notice and this permission notice shall be
27included in all copies or substantial portions of the Software.
28
29THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
30EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
32IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
33CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
34TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
35SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36----------------------------------------------------------------------
37