Lines Matching refs:subarray
748 if (slab.subarray || slab.slice) {
807 curr = String.fromCharCode.apply(String, HEAPU8.subarray(ptr, ptr + Math.min(length, MAX_CHUNK)));
1092 // check for full engine support (use string 'subarray' to avoid closure compiler confusion)
1093 assert(typeof Int32Array !== 'undefined' && typeof Float64Array !== 'undefined' && !!(new Int32Array(1)['subarray']) && !!(new Int32Array(1)['set']),
1735 if (size > 8 && contents.subarray) { // non-trivial, and typed array
1736 buffer.set(contents.subarray(position, position + size), offset);
1748 if (length && contents.length === 0 && position === 0 && buffer.subarray) {
1751 node.contents = buffer; // this could be a subarray of Emscripten HEAP, or allocated from some other source.
1754 node.contents = new Uint8Array(buffer.subarray(offset, offset+length));
1803 if (contents.subarray) {
1804 contents = contents.subarray(position, position + length);
2263 var nbuffer = new Buffer(buffer.subarray(offset, offset + length));
5414 HEAPU8.set(HEAPU8.subarray(src, src+num), dest);