INNER CODE UNIT · JavaScript
i
gideros/gideros · emscripten/lzma.js:316
i = 1 << (this._numPrevBits + this._numPosBits);
while(i --){
this._coders[i] = new LZMA.Decoder2();
}
};
LZMA.LiteralDecoder.prototype.init = function(){
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) )];
};