Skip to content

Commit 0d7dfae

Browse files
committed
Update artifacts
1 parent 49455e2 commit 0d7dfae

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[245,245,100,19,19,100,2,2,100,245,245,100,"b823a6ce2fc7a41c64ccb0ef723ee0da3d47a56f","2025-12-09 01:29:14 +0530"]
1+
[245,245,100,19,19,100,2,2,100,245,245,100,"6236683d3a78bcd781792522213c2ac509cb7eeb","2025-12-20 21:10:15 -0800"]

math/base/special/asinhf/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ <h1>All files</h1>
131131
<div class='footer quiet pad2 space-top1 center small'>
132132
Code coverage generated by
133133
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
134-
at 2025-12-08T20:04:41.878Z
134+
at 2025-12-21T05:12:54.884Z
135135
</div>
136136
<script src="prettify.js"></script>
137137
<script>

math/base/special/asinhf/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ <h1><a href="index.html">All files</a> index.js</h1>
217217
<div class='footer quiet pad2 space-top1 center small'>
218218
Code coverage generated by
219219
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
220-
at 2025-12-08T20:04:41.878Z
220+
at 2025-12-21T05:12:54.884Z
221221
</div>
222222
<script src="prettify.js"></script>
223223
<script>

math/base/special/asinhf/main.js.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ <h1><a href="index.html">All files</a> main.js</h1>
359359
*
360360
* ## Notice
361361
*
362-
* The following copyright, license, and long comment were part of the original implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/s_asinh.c?view=markup}. The implementation follows the original, but has been modified for JavaScript.
362+
* The following copyright, license, and long comment were part of the original implementation available as part of [FreeBSD]{@link https://svnweb.freebsd.org/base/release/12.2.0/lib/msun/src/s_asinhf.c}. The implementation follows the original, but has been modified for JavaScript.
363363
*
364364
* ```text
365365
* Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved.
@@ -447,7 +447,7 @@ <h1><a href="index.html">All files</a> main.js</h1>
447447
return x;
448448
}
449449
if ( x &lt; ZERO ) {
450-
x = -x;
450+
x = f32( -x );
451451
sgn = true;
452452
}
453453
// Case: |x| &lt; 2**-28
@@ -461,14 +461,14 @@ <h1><a href="index.html">All files</a> main.js</h1>
461461
// Case: 2**28 &gt; |x| &gt; 2.0
462462
else if ( x &gt; TWO ) {
463463
xx = f32( x*x );
464-
s = sqrtf( xx + ONE );
465-
t = lnf( f32( TWO*x ) + f32( ONE / f32( s + x ) ) );
464+
s = sqrtf( f32( xx + ONE ) );
465+
t = lnf( f32( f32( TWO*x ) + f32( ONE / f32( s + x ) ) ) );
466466
}
467467
// Case: 2.0 &gt; |x| &gt; 2**-28
468468
else {
469469
xx = f32( x*x );
470-
s = sqrtf( ONE + xx );
471-
t = log1pf( x + f32( xx / f32( ONE + s ) ) );
470+
s = sqrtf( f32( ONE + xx ) );
471+
t = log1pf( f32( f32( x ) + f32( xx / f32( ONE + s ) ) ) );
472472
}
473473
return ( sgn ) ? -t : t;
474474
}
@@ -484,7 +484,7 @@ <h1><a href="index.html">All files</a> main.js</h1>
484484
<div class='footer quiet pad2 space-top1 center small'>
485485
Code coverage generated by
486486
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
487-
at 2025-12-08T20:04:41.878Z
487+
at 2025-12-21T05:12:54.884Z
488488
</div>
489489
<script src="prettify.js"></script>
490490
<script>

math/base/special/asinhf/native.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ <h1><a href="index.html">All files</a> native.js</h1>
244244
<div class='footer quiet pad2 space-top1 center small'>
245245
Code coverage generated by
246246
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
247-
at 2025-12-08T20:04:41.878Z
247+
at 2025-12-21T05:12:54.884Z
248248
</div>
249249
<script src="prettify.js"></script>
250250
<script>

0 commit comments

Comments
 (0)