Lines Matching defs:L
223 * @L: label the transition is being computed for
224 * @P: profile parameter derived from L by this macro, can be passed to FN
234 #define fn_label_build(L, P, GFP, FN) \
239 if ((L)->size > 1) { \
245 if (vec_setup(label, __lvec, (L)->size, (GFP))) { \
250 label_for_each(__i, (L), (P)) { \
257 for (__j = __count = 0; __j < (L)->size; __j++) \
260 for (__j = __k = 0; __j < (L)->size; __j++) { \
277 vec_cleanup(label, __lvec, (L)->size); \
279 (P) = labels_profile(L); \
299 #define fn_label_build_in_ns(L, P, GFP, NS_FN, OTHER_FN) \
301 fn_label_build((L), (P), (GFP), \
302 __fn_build_in_ns(labels_ns(L), (P), (NS_FN), (OTHER_FN))); \