Lines Matching refs:decode

19793 …var deltaHeight = huffman ? huffmanTables.tableDeltaHeight.decode(huffmanInput) : decodeInteger(co…
19800 …var deltaWidth = huffman ? huffmanTables.tableDeltaWidth.decode(huffmanInput) : decodeInteger(cont…
19833 var bitmapSize = huffmanTables.tableBitmapSize.decode(huffmanInput);
19882 …var runLength = huffman ? tableB1.decode(huffmanInput) : decodeInteger(contextCache, 'IAEX', decod…
19928 …var stripT = huffman ? -huffmanTables.tableDeltaT.decode(huffmanInput) : -decodeInteger(contextCac…
19933 …var deltaT = huffman ? huffmanTables.tableDeltaT.decode(huffmanInput) : decodeInteger(contextCache…
19935 …var deltaFirstS = huffman ? huffmanTables.tableFirstS.decode(huffmanInput) : decodeInteger(context…
19947 …var symbolId = huffman ? huffmanTables.symbolIDTable.decode(huffmanInput) : decodeIAID(contextCach…
20033 …var deltaS = huffman ? huffmanTables.tableDeltaS.decode(huffmanInput) : decodeInteger(contextCache…
20924 decode: function decode(reader) {
21171 codeLength = runCodesTable.decode(reader);
22276 function decodeMcu(component, decode, mcu, row, col) {
22282 decode(component, offset);
22285 function decodeBlock(component, decode, mcu) {
22289 decode(component, offset);
27550 value: function isDefaultDecode(decode, numComps) {
27551 if (!Array.isArray(decode)) {
27555 if (numComps * 2 !== decode.length) {
27560 for (var i = 0, ii = decode.length; i < ii; i += 2) {
27561 if (decode[i] !== 0 || decode[i + 1] !== 1) {
28237 function decode(value, high1, low2, high2) {
28247 Ls = decode(Ls, maxVal, 0, 100);
28248 as = decode(as, maxVal, cs.amin, cs.amax);
28249 bs = decode(bs, maxVal, cs.bmin, cs.bmax);
30682 …ize, imageMask, imgData, args, width, height, bitStrideLength, imgArray, decode, softMask, mask, S…
30724 decode = dict.getArray('Decode', 'D');
30730 inverseDecode: !!decode && decode[0] > 0
48982 var decode = this.context.decode;
48984 …return [xi * scale * (decode[1] - decode[0]) + decode[0], yi * scale * (decode[3] - decode[2]) + d…
48990 var decode = this.context.decode;
48995 components[i] = ci * scale * (decode[j + 1] - decode[j]) + decode[j];
49534 decode: dict.getArray('Decode'),
53166 var decode = toNumberArray(dict.getArray('Decode'));
53168 if (!decode) {
53169 decode = range;
53171 decode = toMultiArray(decode);
53175 …return [CONSTRUCT_SAMPLED, inputSize, domain, encode, decode, samples, size, outputSize, Math.pow(…
53190 var decode = IR[4];
53241 rj = interpolate(rj, 0, 1, decode[j][0], decode[j][1]);
54712 value: function decode(image) {
54792 return nativeDecoder.decode(image)["catch"](function (reason) {
54934 this.decode = dict.getArray('Decode', 'D');
54937decode && (this.colorSpace && !this.colorSpace.isDefaultDecode(this.decode, bitsPerComponent) || i…
54944 for (var i = 0, j = 0; i < this.decode.length; i += 2, ++j) {
54945 var dmin = this.decode[i];
54946 var dmax = this.decode[i + 1];