Home | History | Annotate | Download | only in LZMA

Lines Matching refs:Index

17 			public uint Index;

18 public void Init() { Index = 0; }
21 if (Index < 4) Index = 0;
22 else if (Index < 10) Index -= 3;
23 else Index -= 6;
25 public void UpdateMatch() { Index = (uint)(Index < 7 ? 7 : 10); }
26 public void UpdateRep() { Index = (uint)(Index < 7 ? 8 : 11); }
27 public void UpdateShortRep() { Index = (uint)(Index < 7 ? 9 : 11); }
28 public bool IsCharState() { return Index < 7; }