Searched refs:srcTypedArray (Results 1 – 1 of 1) sorted by relevance
778 wasm.allocFromTypedArray = function(srcTypedArray){ argument779 affirmBindableTypedArray(srcTypedArray);780 const pRet = wasm.alloc(srcTypedArray.byteLength || 1);781 wasm.heapForSize(srcTypedArray.constructor).set(782 srcTypedArray.byteLength ? srcTypedArray : [0], pRet