Lines Matching defs:dfa
53 #define dfa_user_allow(dfa, state) (((ACCEPT_TABLE(dfa)[state]) & 0x7f) | \ argument
55 #define dfa_user_xbits(dfa, state) (((ACCEPT_TABLE(dfa)[state]) >> 7) & 0x7f) argument
56 #define dfa_user_audit(dfa, state) ((ACCEPT_TABLE2(dfa)[state]) & 0x7f) argument
57 #define dfa_user_quiet(dfa, state) (((ACCEPT_TABLE2(dfa)[state]) >> 7) & 0x7f) argument
58 #define dfa_user_xindex(dfa, state) \ argument
61 #define dfa_other_allow(dfa, state) ((((ACCEPT_TABLE(dfa)[state]) >> 14) & \ argument
64 #define dfa_other_xbits(dfa, state) \ argument
66 #define dfa_other_audit(dfa, state) (((ACCEPT_TABLE2(dfa)[state]) >> 14) & 0x7f) argument
67 #define dfa_other_quiet(dfa, state) \ argument
69 #define dfa_other_xindex(dfa, state) \ argument
100 static void compute_fperms_allow(struct aa_perms *perms, struct aa_dfa *dfa, in compute_fperms_allow()
112 static struct aa_perms compute_fperms_user(struct aa_dfa *dfa, in compute_fperms_user()
127 static struct aa_perms compute_fperms_other(struct aa_dfa *dfa, in compute_fperms_other()
149 static struct aa_perms *compute_fperms(struct aa_dfa *dfa, in compute_fperms()
209 static struct aa_perms compute_perms_entry(struct aa_dfa *dfa, in compute_perms_entry()
248 static struct aa_perms *compute_perms(struct aa_dfa *dfa, u32 version, in compute_perms()
281 static void remap_dfa_accept(struct aa_dfa *dfa, unsigned int factor) in remap_dfa_accept()
289 ACCEPT_TABLE(dfa)[state] = state * factor; in remap_dfa_accept() local