Home
last modified time | relevance | path

Searched refs:node_b (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/glsl/
Dir_function.cpp44 const exec_node *node_b = list_b->head; in parameter_lists_match() local
52 ; node_a = node_a->next, node_b = node_b->next) { in parameter_lists_match()
57 if (node_b->is_tail_sentinel()) in parameter_lists_match()
62 const ir_rvalue *const actual = (ir_rvalue *) node_b; in parameter_lists_match()
108 if (!node_b->is_tail_sentinel()) in parameter_lists_match()
184 const exec_node *node_b = list_b->head; in parameter_lists_match_exact() local
187 ; !node_a->is_tail_sentinel() && !node_b->is_tail_sentinel() in parameter_lists_match_exact()
188 ; node_a = node_a->next, node_b = node_b->next) { in parameter_lists_match_exact()
190 ir_variable *b = (ir_variable *) node_b; in parameter_lists_match_exact()
202 return (node_a->is_tail_sentinel() == node_b->is_tail_sentinel()); in parameter_lists_match_exact()
/external/mesa3d/src/glsl/glcpp/
Dglcpp-parse.y661 string_node_t *node_a, *node_b; in _string_list_equal() local
669 for (node_a = a->head, node_b = b->head; in _string_list_equal()
670 node_a && node_b; in _string_list_equal()
671 node_a = node_a->next, node_b = node_b->next) in _string_list_equal()
673 if (strcmp (node_a->str, node_b->str)) in _string_list_equal()
680 return node_a == node_b; in _string_list_equal()
882 token_node_t *node_a, *node_b; in _token_list_equal_ignoring_space() local
891 node_b = b->head; in _token_list_equal_ignoring_space()
895 if (node_a == NULL && node_b == NULL) in _token_list_equal_ignoring_space()
898 if (node_a == NULL || node_b == NULL) in _token_list_equal_ignoring_space()
[all …]
/external/jemalloc/test/unit/
Drtree.c35 extent_node_t node_a, node_b; in TEST_BEGIN() local
47 assert_false(rtree_set(&rtree, ~((uintptr_t)0), &node_b), in TEST_BEGIN()
49 assert_ptr_eq(rtree_get(&rtree, ~((uintptr_t)0), true), &node_b, in TEST_BEGIN()