summaryrefslogtreecommitdiffstatshomepage
path: root/lib/libm/kf_rem_pio2.c
Commit message (Collapse)AuthorAge
* lib/libm: Reduce size of static two_over_pi array.Damien George2020-09-04
| | | | | | Thanks to Jeff Epler for the idea. Signed-off-by: Damien George <damien@micropython.org>
* all: Fix implicit conversion from double to float.stijn2020-04-18
| | | | These are found when building with -Wfloat-conversion.
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
| | | | | There were several different spellings of MicroPython present in comments, when there should be only one.
* lib/libm: Format code to pass gcc v6.1.1 warning.Damien George2016-06-25
| | | | | | gcc 6.1.1 warns when indentation is misleading, and in this case the formatting of the code really is misleading. So adjust the formatting to be clear of the meaning of the code.
* lib/libm: Add acosh, asinh, atanh, tan; get working with stmhal.Damien George2014-12-18
acoshf, asinhf, atanhf were added from musl. mathsincos.c was split up into its original, separate files (from newlibe-nano-2). tan was added. All of the important missing float functions are now implemented, and pyboard now passes tests/float/math_fun.py (finally!).