Home
last modified time | relevance | path

Searched refs:fixed_arg1 (Results 1 – 1 of 1) sorted by relevance

/Zephyr-latest/include/zephyr/sys/
Dutil_loops.h25 #define Z_FOR_LOOP_0(z_call, sep, fixed_arg0, fixed_arg1, ...) argument
27 #define Z_FOR_LOOP_1(z_call, sep, fixed_arg0, fixed_arg1, x) \ argument
28 z_call(0, x, fixed_arg0, fixed_arg1)
30 #define Z_FOR_LOOP_2(z_call, sep, fixed_arg0, fixed_arg1, x, ...) \ argument
31 Z_FOR_LOOP_1(z_call, sep, fixed_arg0, fixed_arg1, ##__VA_ARGS__) \
33 z_call(1, x, fixed_arg0, fixed_arg1)
35 #define Z_FOR_LOOP_3(z_call, sep, fixed_arg0, fixed_arg1, x, ...) \ argument
36 Z_FOR_LOOP_2(z_call, sep, fixed_arg0, fixed_arg1, ##__VA_ARGS__) \
38 z_call(2, x, fixed_arg0, fixed_arg1)
40 #define Z_FOR_LOOP_4(z_call, sep, fixed_arg0, fixed_arg1, x, ...) \ argument
[all …]