MCPcopy Index your code
hub / github.com/nodejs/node / CreateResizableArrayBufferViaWasm

Function CreateResizableArrayBufferViaWasm

deps/v8/test/mjsunit/typedarray-helpers.js:81–84  ·  view source on GitHub ↗
(initial, maximum)

Source from the content-addressed store, hash-verified

79}
80
81function CreateResizableArrayBufferViaWasm(initial, maximum) {
82 let mem = new WebAssembly.Memory({initial, maximum});
83 return mem.toResizableBuffer();
84}
85
86function CreateGrowableSharedArrayBufferViaWasm(initial, maximum) {
87 let mem = new WebAssembly.Memory({initial, maximum, shared: true});

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…