Searched refs:__inst (Results 1 – 3 of 3) sorted by relevance
/third_party/mesa3d/src/intel/compiler/ |
D | brw_cfg.h | 396 #define foreach_block_and_inst(__block, __type, __inst, __cfg) \ argument 398 foreach_inst_in_block (__type, __inst, __block) 403 #define foreach_block_and_inst_safe(__block, __type, __inst, __cfg) \ argument 405 foreach_inst_in_block_safe (__type, __inst, __block) 419 #define foreach_inst_in_block(__type, __inst, __block) \ argument 420 foreach_in_list(__type, __inst, &(__block)->instructions) 422 #define foreach_inst_in_block_safe(__type, __inst, __block) \ argument 423 for (__type *__inst = (__type *)__block->instructions.head_sentinel.next, \ 424 *__next = (__type *)__inst->next; \ 426 __inst = __next, \ [all …]
|
/third_party/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 …]
|
/third_party/glib/gobject/ |
D | gtype.h | 2314 GTypeInstance *__inst = (GTypeInstance*) ip; GType __t = gt; gboolean __r; \ 2315 if (!__inst) \ 2317 else if (__inst->g_class && __inst->g_class->g_type == __t) \ 2320 __r = g_type_check_instance_is_a (__inst, __t); \
|