Home | History | Annotate | Download | only in lzma

Lines Matching refs:state

2  * State
13 final class State {
31 private int state;
33 State() {}
35 State(State other) {
36 state = other.state;
40 state = LIT_LIT;
44 return state;
47 void set(State other) {
48 state = other.state;
52 if (state <= SHORTREP_LIT_LIT)
53 state = LIT_LIT;
54 else if (state <= LIT_SHORTREP)
55 state -= 3;
57 state -= 6;
61 state = state < LIT_STATES ? LIT_MATCH : NONLIT_MATCH;
65 state = state < LIT_STATES ? LIT_LONGREP : NONLIT_REP;
69 state = state < LIT_STATES ? LIT_SHORTREP : NONLIT_REP;
73 return state < LIT_STATES;