Home
last modified time | relevance | path

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

/external/mesa3d/src/glsl/
Dir_function.cpp43 const exec_node *node_a = list_a->head; in parameter_lists_match() local
51 ; !node_a->is_tail_sentinel() in parameter_lists_match()
52 ; node_a = node_a->next, node_b = node_b->next) { in parameter_lists_match()
61 const ir_variable *const param = (ir_variable *) node_a; in parameter_lists_match()
183 const exec_node *node_a = list_a->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()
189 ir_variable *a = (ir_variable *) node_a; 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
890 node_a = a->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
42 assert_false(rtree_set(&rtree, 0, &node_a), in TEST_BEGIN()
44 assert_ptr_eq(rtree_get(&rtree, 0, true), &node_a, in TEST_BEGIN()