Home
last modified time | relevance | path

Searched refs:head_sentinel (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/compiler/glsl/
Dlist.h285 struct exec_node head_sentinel; member
347 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 …]
Dlower_int64.cpp151 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()
Dlower_jumps.cpp779 list.head_sentinel.next = next; in visit()
/external/mesa3d/src/intel/compiler/
Dbrw_cfg.h335 for (__type *__inst = (__type *)__block->instructions.head_sentinel.next, \
/external/mesa3d/src/compiler/nir/
Dnir.h1706 return (nir_block *) impl->body.head_sentinel.next; in nir_start_block()