Home
last modified time | relevance | path

Searched refs:remainingBytes (Results 1 – 6 of 6) sorted by relevance

/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/
H A Dflac.js738 var buffer = stream.readSingleBuffer(stream.remainingBytes());
776 this.flac = AV.Demuxer.find(stream.peekSingleBuffer(0, stream.remainingBytes()));
H A Daurora.js884 Stream.prototype.remainingBytes = function() { method in Stream
1495 chunkSize = Math.min(4096, stream.remainingBytes());
1616 samples = Math.min(4096, this.stream.remainingBytes());
1922 this.emit('data', this.stream.readSingleBuffer(this.stream.remainingBytes()));
2469 bytes = Math.min(this.stream.remainingBytes(), this.len);
H A Daac.js78 var buffer = this.stream.readSingleBuffer(this.stream.remainingBytes());
H A Dmp3.js288 var buffer = stream.readSingleBuffer(stream.remainingBytes());
/plugin/xlsx2dw/packages/jszip/
H A Djszip.js25 var i = 0, len = input.length, remainingBytes = len;
29 remainingBytes = len - i;
43 enc3 = remainingBytes > 1 ? (((chr2 & 15) << 2) | (chr3 >> 6)) : 64;
44 enc4 = remainingBytes > 2 ? (chr3 & 63) : 64;
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js50746 remainingBytes = len;
50750 remainingBytes = len - i;
50764 enc3 = remainingBytes > 1 ? (chr2 & 15) << 2 | chr3 >> 6 : 64;
50765 enc4 = remainingBytes > 2 ? chr3 & 63 : 64;