Searched refs:LIT_STATES (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.0-release/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_lzma2.h61 #define LIT_STATES 7 macro
77 *state = *state < LIT_STATES ? STATE_LIT_MATCH : STATE_NONLIT_MATCH;
83 *state = *state < LIT_STATES ? STATE_LIT_LONGREP : STATE_NONLIT_REP;
89 *state = *state < LIT_STATES ? STATE_LIT_SHORTREP : STATE_NONLIT_REP;
95 return state < LIT_STATES;
/freebsd-10.0-release/contrib/xz/src/liblzma/lzma/
H A Dlzma_common.h76 #define LIT_STATES 7 macro
89 state = ((state) < LIT_STATES ? STATE_LIT_MATCH : STATE_NONLIT_MATCH)
93 state = ((state) < LIT_STATES ? STATE_LIT_LONGREP : STATE_NONLIT_REP)
97 state = ((state) < LIT_STATES ? STATE_LIT_SHORTREP : STATE_NONLIT_REP)
101 ((state) < LIT_STATES)

Completed in 113 milliseconds