Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(514)

Side by Side Diff: fusl/src/math/asinhf.c

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/src/math/asinh.c ('k') | fusl/src/math/asinhl.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include "libm.h"
2
3 /* asinh(x) = sign(x)*log(|x|+sqrt(x*x+1)) ~= x - x^3/6 + o(x^5) */
4 float asinhf(float x)
5 {
6 union {float f; uint32_t i;} u = {.f = x};
7 uint32_t i = u.i & 0x7fffffff;
8 unsigned s = u.i >> 31;
9
10 /* |x| */
11 u.i = i;
12 x = u.f;
13
14 if (i >= 0x3f800000 + (12<<23)) {
15 /* |x| >= 0x1p12 or inf or nan */
16 x = logf(x) + 0.693147180559945309417232121458176568f;
17 } else if (i >= 0x3f800000 + (1<<23)) {
18 /* |x| >= 2 */
19 x = logf(2*x + 1/(sqrtf(x*x+1)+x));
20 } else if (i >= 0x3f800000 - (12<<23)) {
21 /* |x| >= 0x1p-12, up to 1.6ulp error in [0.125,0.5] */
22 x = log1pf(x + x*x/(sqrtf(x*x+1)+1));
23 } else {
24 /* |x| < 0x1p-12, raise inexact if x!=0 */
25 FORCE_EVAL(x + 0x1p120f);
26 }
27 return s ? -x : x;
28 }
OLDNEW
« no previous file with comments | « fusl/src/math/asinh.c ('k') | fusl/src/math/asinhl.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698