MCPcopy Create free account
hub / github.com/nodejs/node / abs_i32

Function abs_i32

deps/v8/test/mjsunit/wasm/asm-wasm-stdlib.js:289–289  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

287 function abs_f64(x) { x = +x; return +abs(x); }
288 function abs_f32(x) { x = fround(x); return fround(abs(x)); }
289 function abs_i32(x) { x = x | 0; return abs(x|0) | 0; }
290
291 function acos_f64(x) { x = +x; return +acos(x); }
292 function asin_f64(x) { x = +x; return +asin(x); }

Callers

nothing calls this directly

Calls 1

absFunction · 0.50

Tested by

no test coverage detected