Home | History | Annotate | Download | only in LZMA

Lines Matching refs:index

15 	public static final int StateUpdateChar(int index)

17 if (index < 4)
19 if (index < 10)
20 return index - 3;
21 return index - 6;
24 public static final int StateUpdateMatch(int index)
26 return (index < 7 ? 7 : 10);
29 public static final int StateUpdateRep(int index)
31 return (index < 7 ? 8 : 11);
34 public static final int StateUpdateShortRep(int index)
36 return (index < 7 ? 9 : 11);
39 public static final boolean StateIsCharState(int index)
41 return index < 7;