Home
last modified time | relevance | path

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

/external/mesa3d/src/intel/compiler/
Dbrw_cfg.h308 #define foreach_block_and_inst(__block, __type, __inst, __cfg) \ argument
310 foreach_inst_in_block (__type, __inst, __block)
315 #define foreach_block_and_inst_safe(__block, __type, __inst, __cfg) \ argument
317 foreach_inst_in_block_safe (__type, __inst, __block)
331 #define foreach_inst_in_block(__type, __inst, __block) \ argument
332 foreach_in_list(__type, __inst, &(__block)->instructions)
334 #define foreach_inst_in_block_safe(__type, __inst, __block) \ argument
335 for (__type *__inst = (__type *)__block->instructions.head_sentinel.next, \
336 *__next = (__type *)__inst->next; \
338 __inst = __next, \
[all …]
/external/mesa3d/src/compiler/glsl/
Dlist.h649 #define foreach_in_list(__type, __inst, __list) \ argument
650 for (__type *(__inst) = (__type *)(__list)->head_sentinel.next; \
651 !(__inst)->is_tail_sentinel(); \
652 (__inst) = (__type *)(__inst)->next)
654 #define foreach_in_list_reverse(__type, __inst, __list) \ argument
655 for (__type *(__inst) = (__type *)(__list)->tail_sentinel.prev; \
656 !(__inst)->is_head_sentinel(); \
657 (__inst) = (__type *)(__inst)->prev)
674 #define foreach_in_list_use_after(__type, __inst, __list) \ argument
675 __type *(__inst); \
[all …]