aboutsummaryrefslogtreecommitdiff
path: root/src/math
AgeCommit message (Expand)AuthorFilesLines
2024-03-14math: fix fma(x,y,0) when x*y rounds to -0Szabolcs Nagy1-1/+1
2024-02-29riscv32: add fenv and mathStefan O'Rear12-0/+180
2024-02-03sqrtl: fix invalid use of a non-constant-expression as static initializerRich Felker1-2/+2
2023-08-19math: fix ld80 powl(x,huge) and powl(LDBL_MAX,small)Szabolcs Nagy1-13/+21
2023-08-19math: fix ld80 acoshl(x) for x < 0Szabolcs Nagy1-3/+7
2023-02-12math: fix undefined shift in logfSzabolcs Nagy1-1/+1
2021-09-23add SPE FPU support to powerpc-sfRich Felker4-4/+4
2021-07-06math: fix fmaf not to depend on FE_TOWARDZEROSzabolcs Nagy1-11/+10
2021-02-10math: fix expm1f overflow thresholdSzabolcs Nagy1-2/+1
2021-02-10math: fix acoshf for negative inputsSzabolcs Nagy1-4/+4
2020-11-29arm fabs and sqrt: support single-precision-only fpu variantsJinliang Li2-2/+2
2020-08-05math: new software sqrtlSzabolcs Nagy1-1/+253
2020-08-05math: add __math_invalidlSzabolcs Nagy1-0/+9
2020-08-05math: new software sqrtfSzabolcs Nagy1-70/+70
2020-08-05math: new software sqrtSzabolcs Nagy3-173/+179
2020-08-02add m68k sqrtl using native instructionRich Felker1-0/+15
2020-03-24math: add x86_64 remquolAlexander Monakov1-0/+32
2020-03-24math: move x87-family fmod functions to C with inline asmAlexander Monakov8-44/+38
2020-03-24math: move x87-family remainder functions to C with inline asmAlexander Monakov8-50/+42
2020-03-24math: move x87-family rint functions to C with inline asmAlexander Monakov8-24/+28
2020-03-24math: move x87-family lrint functions to C with inline asmAlexander Monakov16-60/+64
2020-03-24math: move x86_64 (l)lrint(f) functions to C with inline asmAlexander Monakov8-20/+32
2020-03-24math: move i386 sqrt to C with inline asmAlexander Monakov2-21/+15
2020-03-24math: move i386 sqrtf to C with inline asmAlexander Monakov2-7/+12
2020-03-24math: move trivial x86-family sqrt functions to C with inline asmAlexander Monakov8-18/+28
2020-03-24math: move x87-family fabs functions to C with inline asmAlexander Monakov8-24/+28
2020-03-24math: move x86_64 fabs, fabsf to C with inline asmAlexander Monakov4-16/+20
2020-02-21math: fix sinh overflows in non-nearest roundingSzabolcs Nagy6-8/+10
2020-02-21math: fix __rem_pio2 in non-nearest rounding modesSzabolcs Nagy3-3/+41
2020-02-06remove i386 asm for single and double precision exp-family functionsRich Felker9-62/+3
2020-02-06rename i386 exp.s to exp_ld.sRich Felker2-0/+1
2020-02-06fix excess precision in return value of i386 log-family functionsRich Felker8-0/+20
2020-02-06fix excess precision in return value of i386 acos[f] and asin[f]Rich Felker6-42/+75
2020-02-06fix excess precision in return value of i386 atan[2][f]Rich Felker4-2/+8
2020-01-27math/x32: correct lrintl.s for 32-bit longAlexander Monakov1-2/+2
2019-11-05ppc: add configure check for older compilers erroring on 'd' constraintrofl0r2-2/+2
2019-10-14mips: add single-instruction math functionsinfo@mobile-stream.com4-0/+64
2019-10-13math: fix signed int left shift ub in sqrtSzabolcs Nagy2-4/+2
2019-09-27math: optimize lrint on 32bit targetsSzabolcs Nagy1-1/+27
2019-08-05fix build regression in i386 asm for atan2, atan2fRich Felker2-2/+2
2019-08-05fix x87 stack imbalance in corner cases of i386 math asmRich Felker8-44/+14
2019-06-14add riscv64 architecture supportRich Felker12-0/+180
2019-04-17math: new powSzabolcs Nagy3-303/+520
2019-04-17math: new exp and exp2Szabolcs Nagy4-480/+434
2019-04-17math: new log2Szabolcs Nagy3-106/+335
2019-04-17math: new logSzabolcs Nagy3-104/+454
2019-04-17math: new powfSzabolcs Nagy3-240/+226
2019-04-17math: new exp2f and expfSzabolcs Nagy4-179/+177
2019-04-17math: new log2fSzabolcs Nagy3-58/+108
2019-04-17math: new logfSzabolcs Nagy3-54/+109