| D | nrfx_utils_internal.h | 1430 #define _NRFX_FOR_LOOP_0(call, sep, fixed_arg0, fixed_arg1, ...) argument 1432 #define _NRFX_FOR_LOOP_1(call, sep, fixed_arg0, fixed_arg1, x) \ argument 1433 call(0, x, fixed_arg0, fixed_arg1) 1435 #define _NRFX_FOR_LOOP_2(call, sep, fixed_arg0, fixed_arg1, x, ...) \ argument 1436 _NRFX_FOR_LOOP_1(call, sep, fixed_arg0, fixed_arg1, ##__VA_ARGS__) \ 1438 call(1, x, fixed_arg0, fixed_arg1) 1440 #define _NRFX_FOR_LOOP_3(call, sep, fixed_arg0, fixed_arg1, x, ...) \ argument 1441 _NRFX_FOR_LOOP_2(call, sep, fixed_arg0, fixed_arg1, ##__VA_ARGS__) \ 1443 call(2, x, fixed_arg0, fixed_arg1) 1445 #define _NRFX_FOR_LOOP_4(call, sep, fixed_arg0, fixed_arg1, x, ...) \ argument [all …]
|