Lines Matching refs:input

5845 	        result.input = array.input;
21070 Zlib.prototype.write = function(flush, input, in_off, in_len, out, out_off, out_len) {
21077 var res = self._write(flush, input, in_off, in_len, out, out_off, out_len);
21094 Zlib.prototype.writeSync = function(flush, input, in_off, in_len, out, out_off, out_len) {
21096 return this._write(flush, input, in_off, in_len, out, out_off, out_len);
21099 Zlib.prototype._write = function(flush, input, in_off, in_len, out, out_off, out_len) {
21111 if (input == null) {
21112 input = new Buffer(0);
21124 strm.input = input;
21228 this.input = null; // JS specific, because we have no pointers
21443 utils.arraySet(buf, strm.input, strm.next_in, len, start);
22652 (!strm.input && strm.avail_in !== 0) ||
24791 var input, output; // input/output buffers
24817 (!strm.input && strm.avail_in !== 0)) {
24830 input = strm.input;
24852 hold += input[next++] << bits;
24913 hold += input[next++] << bits;
24949 hold += input[next++] << bits;
24976 hold += input[next++] << bits;
25003 hold += input[next++] << bits;
25041 input,
25054 state.check = crc32(state.check, input, copy, next);
25071 len = input[next + copy++];
25080 state.check = crc32(state.check, input, copy, next);
25097 len = input[next + copy++];
25105 state.check = crc32(state.check, input, copy, next);
25122 hold += input[next++] << bits;
25148 hold += input[next++] << bits;
25190 hold += input[next++] << bits;
25242 hold += input[next++] << bits;
25271 utils.arraySet(output, input, next, copy, put);
25288 hold += input[next++] << bits;
25324 hold += input[next++] << bits;
25369 hold += input[next++] << bits;
25387 hold += input[next++] << bits;
25413 hold += input[next++] << bits;
25434 hold += input[next++] << bits;
25527 input = strm.input;
25549 hold += input[next++] << bits;
25568 hold += input[next++] << bits;
25612 hold += input[next++] << bits;
25638 hold += input[next++] << bits;
25657 hold += input[next++] << bits;
25688 hold += input[next++] << bits;
25772 hold |= input[next++] << bits;
25806 hold += input[next++] << bits;
26006 var input, output; // JS specific, because we have no pointers
26012 input = strm.input;
26039 hold += input[_in++] << bits;
26041 hold += input[_in++] << bits;
26064 hold += input[_in++] << bits;
26073 hold += input[_in++] << bits;
26075 hold += input[_in++] << bits;
26091 hold += input[_in++] << bits;
26094 hold += input[_in++] << bits;
30134 exports.successorOf = function(input) {
30138 result = input;
30139 i = input.length;
30141 last = input.charAt(--i);
65838 var alpha, colors, data, i, input, j, k, length, palette, v, _ref;
65849 input = palette || pixels;
65854 v = input[k++];
65858 data[i++] = alpha ? input[k++] : 255;
65864 data[i++] = input[k++];
65865 data[i++] = input[k++];
65866 data[i++] = input[k++];
65867 data[i++] = alpha ? input[k++] : 255;