Lines Matching refs:Uint8Array

91         output = new Uint8Array(totalLength|0);
327 var USE_TYPEDARRAY = (typeof Uint8Array !== "undefined") && (typeof Uint16Array !== "undefined") &&…
1296 if (Buffer.from && Buffer.from !== Uint8Array.from) {
1990 return new Uint8Array(0);
2562 res = new Uint8Array(totalLength);
2727 exports.arraybuffer = typeof ArrayBuffer !== "undefined" && typeof Uint8Array !== "undefined";
2730 exports.uint8array = typeof Uint8Array !== "undefined";
2802 buf = new Uint8Array(buf_len);
2977 data = new Uint8Array(previousData.length + this.leftOver.length);
3058 result = new Uint8Array(str.length);
3179 … return support.uint8array && String.fromCharCode.apply(null, new Uint8Array(1)).length === 1;
3266 return stringToArrayLike(input, new Uint8Array(input.length));
3278 return (new Uint8Array(input)).buffer;
3281 return new Uint8Array(input);
3291 return arrayLikeToString(new Uint8Array(input));
3294 return arrayLikeToArrayLike(new Uint8Array(input), new Array(input.byteLength));
3298 return new Uint8Array(input);
3301 return nodejsUtils.newBufferFrom(new Uint8Array(input));
3330 return arrayLikeToArrayLike(input, new Uint8Array(input.length));
3399 if (support.uint8array && input instanceof Uint8Array) {
4773 dict = new Uint8Array(opt.dictionary);
4831 strm.input = new Uint8Array(data);
5197 strm.input = new Uint8Array(data);
5219 dict = new Uint8Array(dictionary);
5424 var TYPED_OK = (typeof Uint8Array !== 'undefined') &&
5481 result = new Uint8Array(len);
5510 exports.Buf8 = Uint8Array;
5541 try { String.fromCharCode.apply(null, new Uint8Array(1)); } catch (__) { STR_APPLY_UIA_OK = false; }