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

Function Module

deps/v8/test/mjsunit/asm/int32-mul.js:5–24  ·  view source on GitHub ↗
(stdlib, foreign, heap)

Source from the content-addressed store, hash-verified

3// found in the LICENSE file.
4
5function Module(stdlib, foreign, heap) {
6 "use asm";
7 function f1(i) {
8 i = i|0;
9 return (i | 0) * -3 | 0;
10 }
11 function f2(i) {
12 i = i|0;
13 return (i | 0) * 7 | 0;
14 }
15 function f3(i) {
16 i = i|0;
17 return (i | 0) * 1024 | 0;
18 }
19 function f4(i) {
20 i = i|0;
21 return (i | 0) * 333339 | 0;
22 }
23 return { f1: f1, f2: f2, f3: f3, f4: f4 };
24}
25
26var m = Module(this, {}, new ArrayBuffer(1024));
27

Callers 1

int32-mul.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected