Searched refs:node_b (Results 1 – 7 of 7) sorted by relevance
/external/mesa3d/src/compiler/glsl/ |
D | ir_function.cpp | 47 const exec_node *node_b = list_b->get_head_raw(); in parameter_lists_match() local 55 ; node_a = node_a->next, node_b = node_b->next) { in parameter_lists_match() 60 if (node_b->is_tail_sentinel()) in parameter_lists_match() 65 const ir_rvalue *const actual = (ir_rvalue *) node_b; in parameter_lists_match() 112 if (!node_b->is_tail_sentinel()) in parameter_lists_match() 226 const exec_node *node_b = (*other)->parameters.get_head_raw(); in is_best_inexact_overload() local 234 node_b = node_b->next, in is_best_inexact_overload() 240 (const ir_variable *)node_b, in is_best_inexact_overload() 372 const exec_node *node_b = list_b->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/ |
D | graph_util_test.py | 44 node_b = GetNewNode('B', 'Op1', ['A']) 49 graph_def.node.extend([node_a, node_b, node_c, node_d, node_e]) 67 node_b = GetNewNode('B', 'Op1', ['A']) 71 graph_def.node.extend([node_a, node_a1, node_b, node_c, node_d, node_e])
|
/external/jemalloc/test/unit/ |
D | rtree.c | 35 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()
|
/external/mesa3d/src/compiler/glsl/glcpp/ |
D | glcpp-parse.y | 860 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 1079 node_b = b->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/python/cpython3/Objects/ |
D | odictobject.c | 798 _ODictNode *node_a, *node_b; in _odict_keys_equal() local 801 node_b = _odict_FIRST(b); 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() 812 (PyObject *)_odictnode_KEY(node_b), in _odict_keys_equal() 821 node_b = _odictnode_NEXT(node_b); in _odict_keys_equal()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | remote_fused_graph_execute_op_test.cc | 185 const NodeDef& node_b = *node_def_map_.at(NAME_B); in ExecuteGraph() local 187 TF_CHECK_OK(GetNodeAttr(node_b, "value", &proto)); in ExecuteGraph()
|
/external/tensorflow/tensorflow/core/kernels/hexagon/ |
D | graph_transferer_test.cc | 147 Output node_b = ops::Const(root.WithOpName(NAME_B), NODE_B_VAL); in CreateAddGraphDef() local 148 Output node_add = BuildAddOps(root.WithOpName(NAME_A_PLUS_B), node_a, node_b); in CreateAddGraphDef()
|