Lines Matching refs:N
278 const int N = 100; in __test_completion() local
279 struct completion *one_to_one = kzalloc(sizeof(struct completion) * N, 0); in __test_completion()
281 struct completion *waiter_many_to_one = kzalloc(sizeof(struct completion) * N, 0); in __test_completion()
282 struct completion *worker_many_to_one = kzalloc(sizeof(struct completion) * N, 0); in __test_completion()
283 struct __test_data *waiter_data = kzalloc(sizeof(struct __test_data) * N, 0); in __test_completion()
284 struct __test_data *worker_data = kzalloc(sizeof(struct __test_data) * N, 0); in __test_completion()
287 for (int i = 0; i < N; i++) in __test_completion()
294 for (int i = 0; i < N; i++) in __test_completion()
303 for (int i = 0; i < N; i++) in __test_completion()
317 wait_for_multicompletion(waiter_many_to_one, N); in __test_completion()
318 wait_for_multicompletion(worker_many_to_one, N); in __test_completion()