Home | History | Annotate | Download | only in LzmaSpec

Lines Matching refs:Code

4 // This code implements LZMA file decoding according to LZMA specification.

5 // This code is not optimized for speed.
135 UInt32 Code;
145 bool IsFinishedOK() const { return Code == 0; }
155 Code = 0;
160 Code = (Code << 8) | InStream->ReadByte();
162 if (b != 0 || Code == Range)
174 Code = (Code << 8) | InStream->ReadByte();
184 Code -= Range;
185 UInt32 t = 0 - ((UInt32)Code >> 31);
186 Code += Range & t;
188 if (Code == Range)
204 if (Code < bound)
213 Code -= bound;