Lines Matching refs:N
28 #define vec_setup(T, V, N, GFP) \ argument
30 if ((N) <= LOCAL_VEC_ENTRIES) { \
31 typeof(N) i; \
33 for (i = 0; i < (N); i++) \
36 (V) = kzalloc(sizeof(struct aa_ ## T *) * (N), (GFP)); \
40 #define vec_cleanup(T, V, N) \ argument
43 for (i = 0; i < (N); i++) { \
61 #define aa_sort_and_merge_vec(N, V) \ argument
62 aa_sort_and_merge_profiles((N), (struct aa_profile **)(V))
77 #define __labelset_for_each(LS, N) \ argument
78 for ((N) = rb_first(&(LS)->root); (N); (N) = rb_next(N))