Searched refs:__inst (Results 1 – 2 of 2) sorted by relevance
/external/mesa3d/src/intel/compiler/ |
D | brw_cfg.h | 385 #define foreach_block_and_inst(__block, __type, __inst, __cfg) \ argument 387 foreach_inst_in_block (__type, __inst, __block) 392 #define foreach_block_and_inst_safe(__block, __type, __inst, __cfg) \ argument 394 foreach_inst_in_block_safe (__type, __inst, __block) 408 #define foreach_inst_in_block(__type, __inst, __block) \ argument 409 foreach_in_list(__type, __inst, &(__block)->instructions) 411 #define foreach_inst_in_block_safe(__type, __inst, __block) \ argument 412 for (__type *__inst = (__type *)__block->instructions.head_sentinel.next, \ 413 *__next = (__type *)__inst->next; \ 415 __inst = __next, \ [all …]
|
/external/mesa3d/src/compiler/glsl/ |
D | list.h | 688 #define foreach_in_list(__type, __inst, __list) \ argument 689 for (__type *__inst = exec_node_typed_forward((__list)->head_sentinel.next, __type *); \ 690 (__inst) != NULL; \ 691 (__inst) = exec_node_typed_forward((__inst)->next, __type *)) 693 #define foreach_in_list_reverse(__type, __inst, __list) \ argument 694 for (__type *__inst = exec_node_typed_backward((__list)->tail_sentinel.prev, __type *); \ 695 (__inst) != NULL; \ 696 (__inst) = exec_node_typed_backward((__inst)->prev, __type *)) 714 #define foreach_in_list_use_after(__type, __inst, __list) \ argument 715 __type *__inst; \ [all …]
|