Lines Matching refs:state
143 #define dfa_user_allow(dfa, state) (((ACCEPT_TABLE(dfa)[state]) & 0x7f) | \ argument
144 ((ACCEPT_TABLE(dfa)[state]) & 0x80000000))
145 #define dfa_user_audit(dfa, state) ((ACCEPT_TABLE2(dfa)[state]) & 0x7f) argument
146 #define dfa_user_quiet(dfa, state) (((ACCEPT_TABLE2(dfa)[state]) >> 7) & 0x7f) argument
147 #define dfa_user_xindex(dfa, state) \ argument
148 (dfa_map_xindex(ACCEPT_TABLE(dfa)[state] & 0x3fff))
150 #define dfa_other_allow(dfa, state) ((((ACCEPT_TABLE(dfa)[state]) >> 14) & \ argument
152 ((ACCEPT_TABLE(dfa)[state]) & 0x80000000))
153 #define dfa_other_audit(dfa, state) (((ACCEPT_TABLE2(dfa)[state]) >> 14) & 0x7f) argument
154 #define dfa_other_quiet(dfa, state) \ argument
155 ((((ACCEPT_TABLE2(dfa)[state]) >> 7) >> 14) & 0x7f)
156 #define dfa_other_xindex(dfa, state) \ argument
157 dfa_map_xindex((ACCEPT_TABLE(dfa)[state] >> 14) & 0x3fff)
183 struct aa_perms aa_compute_fperms(struct aa_dfa *dfa, unsigned int state,