Lines Matching refs:bufferLength

17241     this.bufferLength = 0;
17255 while (!this.eof && this.bufferLength === 0) {
17259 return this.bufferLength === 0;
17282 while (this.bufferLength <= pos) {
17318 while (!this.eof && this.bufferLength < end) {
17322 var bufEnd = this.bufferLength;
17332 end = this.bufferLength;
17353 while (this.bufferLength <= end && !this.eof) {
17412 var bufferLength = this.bufferLength;
17413 var newLength = bufferLength + chunk.length;
17415 buffer.set(chunk, bufferLength);
17416 this.bufferLength = newLength;
17606 var bufferLength = this.bufferLength;
17607 buffer = this.ensureBuffer(bufferLength + blockLen);
17608 var end = bufferLength + blockLen;
17609 this.bufferLength = end;
17616 for (var n = bufferLength; n < end; ++n) {
17688 var pos = this.bufferLength;
17704 this.bufferLength = pos;
17780 var bufferLength = this.bufferLength;
17781 var buffer = this.ensureBuffer(bufferLength + rowBytes);
17795 var pos = bufferLength;
17832 k = bufferLength;
17859 this.bufferLength += rowBytes;
17873 var bufferLength = this.bufferLength;
17874 var buffer = this.ensureBuffer(bufferLength + rowBytes);
17875 var prevRow = buffer.subarray(bufferLength - rowBytes, bufferLength);
17882 j = bufferLength,
17972 this.bufferLength += rowBytes;
18012 var bufferLength = this.bufferLength;
18015 var buffer = this.ensureBuffer(bufferLength + n);
18018 buffer[bufferLength++] = chunk[i];
18021 this.bufferLength = bufferLength;
18060 var bufferLength = this.bufferLength,
18065 buffer = this.ensureBuffer(bufferLength + 4);
18068 buffer[bufferLength + i] = 0;
18071 this.bufferLength += 4;
18090 buffer = this.ensureBuffer(bufferLength + i - 1);
18091 this.bufferLength += i - 1;
18108 buffer[bufferLength + i] = t & 0xFF;
18144 var buffer = this.ensureBuffer(this.bufferLength + maxDecodeLength);
18145 var bufferLength = this.bufferLength;
18166 buffer[bufferLength++] = firstDigit << 4 | digit;
18172 buffer[bufferLength++] = firstDigit << 4;
18177 this.bufferLength = bufferLength;
18203 var bufferLength = this.bufferLength;
18207 buffer = this.ensureBuffer(bufferLength + n + 1);
18208 buffer[bufferLength++] = repeatHeader[1];
18212 buffer.set(source, bufferLength);
18213 bufferLength += n;
18218 buffer = this.ensureBuffer(bufferLength + n + 1);
18221 buffer[bufferLength++] = b;
18225 this.bufferLength = bufferLength;
18305 var currentBufferLength = this.bufferLength;
18306 var buffer = this.ensureBuffer(this.bufferLength + estimatedDecodedSize);
18353 buffer = this.ensureBuffer(this.bufferLength + estimatedDecodedSize);
18365 this.bufferLength = currentBufferLength;
18440 this.ensureBuffer(this.bufferLength + 1);
18441 this.buffer[this.bufferLength++] = c;
19222 this.bufferLength = dataLength;
21898 this.bufferLength = data.length;
23180 this.bufferLength = this.buffer.length;
26335 bufferLength = this.bufferPosition;
26340 buffer[bufferLength] = data[i];
26341 ++bufferLength;
26343 if (bufferLength < 16) {
26356 bufferLength = 0;
26360 this.bufferLength = bufferLength;
26400 bufferLength = this.bufferPosition;
26405 for (var i = 0; bufferLength < 16 && i < sourceLength; ++i, ++bufferLength) {
26406 buffer[bufferLength] = data[i];
26409 if (bufferLength < 16) {
26410 this.bufferLength = bufferLength;
26419 this.bufferLength = 0;
26428 bufferLength = this.bufferPosition;
26436 buffer[bufferLength] = data[i];
26437 ++bufferLength;
26439 if (bufferLength < 16) {
26452 bufferLength = 0;
26456 this.bufferLength = bufferLength;
32800 …uint8array = stream.buffer ? new Uint8Array(stream.buffer.buffer, 0, stream.bufferLength) : new Ui…
48914 this.bufferLength = 0;
48927 if (this.bufferLength > 0) {
48938 this.bufferLength = 8;
48944 var bufferLength = this.bufferLength;
48947 if (bufferLength === 0) {
48953 this.buffer = nextByte & (1 << bufferLength) - 1;
48954 return (buffer << 8 - bufferLength | (nextByte & 0xFF) >> bufferLength) >>> 0;
48957 if (n === 8 && bufferLength === 0) {
48961 while (bufferLength < n) {
48963 bufferLength += 8;
48966 bufferLength -= n;
48967 this.bufferLength = bufferLength;
48968 this.buffer = buffer & (1 << bufferLength) - 1;
48969 return buffer >> bufferLength;
48973 this.bufferLength = 0;