Lines Matching refs:output

32457   K256.prototype.split = function split(input, output) {
32463 output.words[i] = input.words[i];
32466 output.length = outLen;
32476 output.words[output.length++] = prev & mask;
32989 var output = [];
32993 output.push(tripletToBase64(tmp));
32996 return output.join('');
36159 K256.prototype.split = function split(input, output) {
36165 output.words[i] = input.words[i];
36168 output.length = outLen;
36178 output.words[output.length++] = prev & mask;
50742 var output = [];
50766output.push(_keyStr.charAt(enc1) + _keyStr.charAt(enc2) + _keyStr.charAt(enc3) + _keyStr.charAt(en…
50769 return output.join("");
50811 var output;
50814 output = new Uint8Array(totalLength | 0);
50816 output = new Array(totalLength | 0);
50827 output[resultIndex++] = chr1;
50830 output[resultIndex++] = chr2;
50834 output[resultIndex++] = chr3;
50838 return output;
62002 strm.output = new utils.Buf8(chunkSize);
62018 this.onData(strings.buf2binstring(utils.shrinkBuf(strm.output, strm.next_out)));
62020 this.onData(utils.shrinkBuf(strm.output, strm.next_out));
62393 strm.output = new utils.Buf8(chunkSize);
62419 next_out_utf8 = strings.utf8border(strm.output, strm.next_out);
62421 utf8str = strings.buf2string(strm.output, next_out_utf8); // move tail
62427 utils.arraySet(strm.output, strm.output, next_out_utf8, tail, 0);
62432 this.onData(utils.shrinkBuf(strm.output, strm.next_out));
63272 utils.arraySet(strm.output, s.pending_buf, s.pending_out, len, strm.next_out);
64743 …if (!strm.output || !strm.input && strm.avail_in !== 0 || s.status === FINISH_STATE && flush !== Z…
65458 var input, output; // JS specific, because we have no pointers
65468 output = strm.output;
65513 output[_out++] = here & 0xffff
65636 output[_out++] = s_window[from++];
65642 from_source = output;
65654 output[_out++] = s_window[from++];
65665 output[_out++] = s_window[from++];
65671 from_source = output;
65683 output[_out++] = s_window[from++];
65689 from_source = output;
65694 output[_out++] = from_source[from++];
65695 output[_out++] = from_source[from++];
65696 output[_out++] = from_source[from++];
65701 output[_out++] = from_source[from++];
65704 output[_out++] = from_source[from++];
65713 output[_out++] = output[from++];
65714 output[_out++] = output[from++];
65715 output[_out++] = output[from++];
65720 output[_out++] = output[from++];
65723 output[_out++] = output[from++];
66333 var input, output; // input/output buffers
66385 if (!strm || !strm.state || !strm.output || !strm.input && strm.avail_in !== 0) {
66399 output = strm.output;
66994 utils.arraySet(output, input, next, copy, put); //---//
67309 output = strm.output;
67609 from_source = output;
67622 output[put++] = from_source[from++];
67636 output[put++] = state.length;
67663 …state.flags ? crc32(state.check, output, _out, put - _out) : adler32(state.check, output, _out, pu…
67750 if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) {
67765 …state.flags ? crc32(state.check, output, _out, strm.next_out - _out) : adler32(state.check, output
69905 this.output = null; // JS specific, because we have no pointers
82167 var output;
82170 output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);
82172 output = keys.map(function (key) {
82178 return reduceToSingleString(output, base, braces);
82200 var output = [];
82204 output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, String(i), true));
82206 output.push('');
82212 output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, key, true));
82215 return output;
82283 function reduceToSingleString(output, base, braces) {
82285 var length = output.reduce(function (prev, cur) {
82292 …return braces[0] + (base === '' ? '' : base + '\n ') + ' ' + output.join(',\n ') + ' ' + braces[1…
82295 return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];
82574 var output = [];
82581 output.push(hex);
82584 return output;
82697 var output = new Uint32Array(getOutputLength(length8));
82700 output[i >> 5] |= (input[i / 8] & 0xff) << i % 32;
82703 return output;