Home | History | Annotate | Download | only in LzmaSpec

Lines Matching full:rep0

372   void DecodeLiteral(unsigned state, UInt32 rep0)

384 unsigned matchByte = OutWindow.GetByte(rep0 + 1);
472 UInt32 rep0 = 0, rep1 = 0, rep2 = 0, rep3 = 0;
487 DecodeLiteral(state, rep0);
506 OutWindow.PutByte(OutWindow.GetByte(rep0 + 1));
527 rep1 = rep0;
528 rep0 = dist;
537 rep1 = rep0;
540 rep0 = DecodeDistance(len);
541 if (rep0 == 0xFFFFFFFF)
548 if (rep0 >= dictSize || !OutWindow.CheckDistance(rep0))
558 OutWindow.CopyMatch(rep0 + 1, len);