Searched refs:head_sentinel (Results 1 – 5 of 5) sorted by relevance
285 struct exec_node head_sentinel; member347 list->head_sentinel.next = &list->tail_sentinel; in exec_list_make_empty()348 list->head_sentinel.prev = NULL; in exec_list_make_empty()350 list->tail_sentinel.prev = &list->head_sentinel; in exec_list_make_empty()366 return list->head_sentinel.next == &list->tail_sentinel; in exec_list_is_empty()372 return !exec_list_is_empty(list) ? list->head_sentinel.next : NULL; in exec_list_get_head_const()378 return !exec_list_is_empty(list) ? list->head_sentinel.next : NULL; in exec_list_get_head()384 return list->head_sentinel.next; in exec_list_get_head_raw_const()390 return list->head_sentinel.next; in exec_list_get_head_raw()423 for (node = list->head_sentinel.next; node->next != NULL; node = node->next) { in exec_list_length()[all …]
151 exec_node *const after = &instructions->head_sentinel; in lower_64bit_integer_instructions()152 exec_node *const before = instructions->head_sentinel.next; in lower_64bit_integer_instructions()153 exec_node *const head = v.function_list.head_sentinel.next; in lower_64bit_integer_instructions()303 exec_node *const head = instructions.head_sentinel.next; in lower_op_to_function_call()
779 list.head_sentinel.next = next; in visit()
335 for (__type *__inst = (__type *)__block->instructions.head_sentinel.next, \
1706 return (nir_block *) impl->body.head_sentinel.next; in nir_start_block()