Lines Matching refs:out

2582   var key, own, out, exp;
2587 out = (own ? target : source)[key];
2588 …exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call…
2589 if (target) redefine(target, key, out, type & $export.U);
2590 if (exports[key] != out) hide(exports, key, exp);
2591 if (IS_PROTO && expProto[key] != out) expProto[key] = out;
24697 var out = new Uint8ClampedArray(tile0.items.length * componentsCount);
24703 items: out
24730 out[pos++] = y0 + 1.402 * y2 >> shift;
24731 out[pos++] = y0 - 0.34413 * y1 - 0.71414 * y2 >> shift;
24732 out[pos++] = y0 + 1.772 * y1 >> shift;
24740 out[pos++] = g + y2 >> shift;
24741 out[pos++] = g >> shift;
24742 out[pos++] = g + y1 >> shift;
24748 out[pos] = y3items[j] + offset >> shift;
24758 out[pos] = items[j] + offset >> shift;
33889 value: function readCharCode(str, offset, out) {
33902 out.charcode = c;
33903 out.length = n + 1;
33909 out.charcode = 0;
33910 out.length = 1;
39303 var out = [30];
39306 out.push(parseInt(nibbles.substring(i, i + 2), 16));
39309 return out;
39419 var out = [];
39451 out = out.concat(this.encodeNumber(value));
39458 offsetTracker.track(name, out.length);
39461 out = out.concat([0x1d, 0, 0, 0, 0]);
39466 out = out.concat(this.encodeNumber(value));
39469 out = out.concat(this.encodeNumber(values[k]));
39479 out = out.concat(dict.opcodes[key]);
39482 return out;
39495 this.out.writeByteArray(this.compileIndex(globalSubrIndex));
39514 var out;
39518out = new Uint8Array([2, 0, 0, numGlyphsLessNotDef >> 8 & 0xFF, numGlyphsLessNotDef & 0xFF]);
39521 out = new Uint8Array(length);
39522 out[0] = 0;
39527 for (var i = 1; i < out.length; i += 2) {
39544 out[i] = sid >> 8 & 0xFF;
39545 out[i + 1] = sid & 0xFF;
39549 return this.compileTypedArray(out);
39556 var out, i;
39560 out = new Uint8Array(1 + fdSelect.fdSelect.length);
39561 out[0] = format;
39564 out[i + 1] = fdSelect.fdSelect[i];
39587 out = new Uint8Array(ranges);
39591 return this.compileTypedArray(out);
39594 var out = [];
39597 out[i] = data[i];
39600 return out;
53124 var out = [];
53128 out[index] = [arr[i], arr[i + 1]];
53132 return out;
54203 var out = [statementBuilder.toString()];
54206 out.unshift('Math.max(', min, ', ');
54207 out.push(')');
54211 out.unshift('Math.min(', max, ', ');
54212 out.push(')');
54215 out.unshift('dest[destOffset + ', i, '] = ');
54216 out.push(';');
54217 result.push(out.join(''));