Home
last modified time | relevance | path

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

/external/mesa3d/src/compiler/glsl/
Dir_function.cpp46 const exec_node *node_a = list_a->get_head_raw(); in parameter_lists_match() local
54 ; !node_a->is_tail_sentinel() in parameter_lists_match()
55 ; node_a = node_a->next, node_b = node_b->next) { in parameter_lists_match()
64 const ir_variable *const param = (ir_variable *) node_a; in parameter_lists_match()
225 const exec_node *node_a = sig->parameters.get_head_raw(); in is_best_inexact_overload() local
232 ; !node_a->is_tail_sentinel() in is_best_inexact_overload()
233 ; node_a = node_a->next, in is_best_inexact_overload()
237 (const ir_variable *)node_a, in is_best_inexact_overload()
371 const exec_node *node_a = list_a->get_head_raw(); in parameter_lists_match_exact() local
375 ; !node_a->is_tail_sentinel() && !node_b->is_tail_sentinel() in parameter_lists_match_exact()
[all …]
/external/tensorflow/tensorflow/contrib/framework/python/framework/
Dgraph_util_test.py43 node_a = GetNewNode('A', 'Placeholder', [])
49 graph_def.node.extend([node_a, node_b, node_c, node_d, node_e])
65 node_a = GetNewNode('A', 'Placeholder', [])
71 graph_def.node.extend([node_a, node_a1, node_b, node_c, node_d, node_e])
/external/mesa3d/src/compiler/glsl/glcpp/
Dglcpp-parse.y860 string_node_t *node_a, *node_b; in _string_list_equal() local
868 for (node_a = a->head, node_b = b->head; in _string_list_equal()
869 node_a && node_b; in _string_list_equal()
870 node_a = node_a->next, node_b = node_b->next) in _string_list_equal()
872 if (strcmp (node_a->str, node_b->str)) in _string_list_equal()
879 return node_a == node_b; in _string_list_equal()
1070 token_node_t *node_a, *node_b; in _token_list_equal_ignoring_space() local
1078 node_a = a->head; in _token_list_equal_ignoring_space()
1083 if (node_a == NULL && node_b == NULL) in _token_list_equal_ignoring_space()
1086 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()
/external/python/cpython3/Objects/
Dodictobject.c798 _ODictNode *node_a, *node_b; in _odict_keys_equal() local
800 node_a = _odict_FIRST(a); in _odict_keys_equal()
803 if (node_a == NULL && node_b == NULL) in _odict_keys_equal()
806 else if (node_a == NULL || node_b == NULL) in _odict_keys_equal()
811 (PyObject *)_odictnode_KEY(node_a), in _odict_keys_equal()
820 node_a = _odictnode_NEXT(node_a); in _odict_keys_equal()
/external/tensorflow/tensorflow/core/kernels/hexagon/
Dgraph_transferer_test.cc146 Output node_a = ops::Const(root.WithOpName(NAME_A), NODE_A_VAL); in CreateAddGraphDef() local
148 Output node_add = BuildAddOps(root.WithOpName(NAME_A_PLUS_B), node_a, node_b); in CreateAddGraphDef()