Searched refs:struct_type (Results 1 – 2 of 2) sorted by relevance
/Zephyr-latest/include/zephyr/linker/ |
D | iterable_sections.h | 15 #define Z_LINK_ITERABLE(struct_type) \ argument 16 _CONCAT(_##struct_type, _list_start) = .; \ 17 KEEP(*(SORT_BY_NAME(._##struct_type.static.*))); \ 18 _CONCAT(_##struct_type, _list_end) = . 20 #define Z_LINK_ITERABLE_NUMERIC(struct_type) \ argument 21 _CONCAT(_##struct_type, _list_start) = .; \ 22 KEEP(*(SORT(._##struct_type.static.*_?_*))); \ 23 KEEP(*(SORT(._##struct_type.static.*_??_*))); \ 24 KEEP(*(SORT(._##struct_type.static.*_???_*))); \ 25 KEEP(*(SORT(._##struct_type.static.*_????_*))); \ [all …]
|
/Zephyr-latest/include/zephyr/sys/ |
D | iterable_sections.h | 149 #define STRUCT_SECTION_START(struct_type) \ argument 150 TYPE_SECTION_START(struct_type) 159 #define STRUCT_SECTION_START_EXTERN(struct_type) \ argument 160 TYPE_SECTION_START_EXTERN(struct struct_type, struct_type) 167 #define STRUCT_SECTION_END(struct_type) \ argument 168 TYPE_SECTION_END(struct_type) 177 #define STRUCT_SECTION_END_EXTERN(struct_type) \ argument 178 TYPE_SECTION_END_EXTERN(struct struct_type, struct_type) 188 #define STRUCT_SECTION_ITERABLE_ALTERNATE(secname, struct_type, varname) \ argument 189 TYPE_SECTION_ITERABLE(struct struct_type, varname, secname, varname) [all …]
|