Lines Matching refs:input

2276     globalScope.atob = function (input) {
2277 return Buffer.from(input, 'base64').toString('binary');
10328 function parse(input, stateOverride, base) {
10340 loop: while ((input[cursor - 1] !== EOF || cursor === 0) && !this._isInvalid) {
10341 var c = input[cursor];
10424 if (c === '/' && input[cursor + 1] === '/') {
10473 var nextC = input[cursor + 1];
10474 var nextNextC = input[cursor + 2];
10773 var input = url.replace(/^[ \t\r\n\f]+|[ \t\r\n\f]+$/g, '');
10774 parse.call(this, input, null, base);
18033 this.input = new Uint8Array(5);
18073 var input = this.input;
18074 input[0] = c;
18083 input[i] = c;
18095 input[i] = 0x21 + 84;
18104 t = t * 85 + (input[i] - 0x21);
19560 var input = new Reader(decodingContext.data, decodingContext.start, decodingContext.end);
19561 return decodeMMRBitmap(input, width, height, false);
21356 function decodeMMRBitmap(input, width, height, endOfBlock) {
21364 var decoder = new _ccitt.CCITTFaxDecoder(input, params);
26172 value: function _decrypt(input, key) {
26175 state.set(input);
26250 value: function _encrypt(input, key) {
26254 state.set(input);
26670 function calculatePDF20Hash(password, input, userBytes) {
26671 var k = calculateSHA256(input, 0, input.length).subarray(0, 32);
53405 var input = tmpBuf;
53409 input[i] = value;
53421 var stack = evaluator.execute(input);
54556 value: function update(input) {
54559 if ((0, _util.isString)(input)) {
54560 data = new Uint8Array(input.length * 2);
54563 for (var i = 0, ii = input.length; i < ii; i++) {
54564 var code = input.charCodeAt(i);
54573 } else if ((0, _util.isArrayBuffer)(input)) {
54574 data = input;