INNER CODE UNIT · JavaScript
i
gideros/gideros · emscripten/lzma.js:323
var i = 1 << (this._numPrevBits + this._numPosBits);
while(i --){
this._coders[i].init();
}
};
LZMA.LiteralDecoder.prototype.getDecoder = function(pos, prevByte){
return this._coders[( (pos & this._posMask) << this._numPrevBits)
+ ( (prevByte & 0xff) >>> (8 - this._numPrevBits) )];
};
LZMA.Decoder = function(){
this._outWindow = new LZMA.OutWindow();
this._rangeDecoder = new LZMA.RangeDecoder();
this._isMatchDecoders = [];
this._isRepDecoders = [];
this._isRepG0Decoders = [];
this._isRepG1Decoders = [];