Lines Matching defs:N
29 #define vec_setup(T, V, N, GFP) \
31 if ((N) <= LOCAL_VEC_ENTRIES) { \
32 typeof(N) i; \
34 for (i = 0; i < (N); i++) \
37 (V) = kzalloc(sizeof(struct aa_ ## T *) * (N), (GFP)); \
41 #define vec_cleanup(T, V, N) \
44 for (i = 0; i < (N); i++) { \
62 #define aa_sort_and_merge_vec(N, V) \
63 aa_sort_and_merge_profiles((N), (struct aa_profile **)(V))
78 #define __labelset_for_each(LS, N) \
79 for ((N) = rb_first(&(LS)->root); (N); (N) = rb_next(N))