Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dhamt.c744 PyHamtNode *sub_node = hamt_node_assoc( in hamt_node_bitmap_assoc() local
747 if (sub_node == NULL) { in hamt_node_bitmap_assoc()
751 if (val_or_node == (PyObject *)sub_node) { in hamt_node_bitmap_assoc()
752 Py_DECREF(sub_node); in hamt_node_bitmap_assoc()
761 Py_SETREF(ret->b_array[val_idx], (PyObject*)sub_node); in hamt_node_bitmap_assoc()
799 PyHamtNode *sub_node = hamt_node_new_bitmap_or_collision( in hamt_node_bitmap_assoc() local
805 if (sub_node == NULL) { in hamt_node_bitmap_assoc()
811 Py_DECREF(sub_node); in hamt_node_bitmap_assoc()
815 Py_SETREF(ret->b_array[val_idx], (PyObject *)sub_node); in hamt_node_bitmap_assoc()
986 PyHamtNode *sub_node = NULL; in hamt_node_bitmap_without() local
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dcollective_ops.cc37 NodeDef* sub_node) { in BuildOpKernel() argument
40 sub_node->set_name(name); in BuildOpKernel()
41 sub_node->set_op(name); in BuildOpKernel()
45 *sub_node, c->graph_def_version(), &status); in BuildOpKernel()
260 NodeDef sub_node; in CollectiveReduceOpKernel() local
262 sub_node.add_input(real_node.input(0)); in CollectiveReduceOpKernel()
263 sub_node.add_input(real_node.input(0)); in CollectiveReduceOpKernel()
264 sub_node.set_device(real_node.device()); in CollectiveReduceOpKernel()
266 &(*sub_node.mutable_attr())["T"]); in CollectiveReduceOpKernel()
267 merge_op_ = BuildOpKernel(c, merge_op_name, &sub_node); in CollectiveReduceOpKernel()
[all …]
/external/rust/crates/bindgen/src/ir/analysis/
Dmod.rs334 for sub_node in self.graph.0[&node].iter() { in constrain()
335 self.reachable.get_mut(&node).unwrap().insert(*sub_node); in constrain()
339 .entry(*sub_node) in constrain()
/external/tensorflow/tensorflow/compiler/xla/service/
Dflatten_call_graph_test.cc253 const CallGraphNode& sub_node = call_graph->GetNode(sub_computation); in TEST_F() local
254 EXPECT_EQ(1, sub_node.caller_callsites().size()); in TEST_F()
Dcall_graph_test.cc242 const CallGraphNode& sub_node = call_graph->GetNode(subcomputation); in TEST_F() local
243 EXPECT_EQ(sub_node.depth(), 1); in TEST_F()
244 EXPECT_EQ(CallContext::kBoth, sub_node.context()); in TEST_F()
/external/autotest/client/common_lib/
Dcontrol_data.py444 for sub_node in n.body:
445 _try_extract_assignment(sub_node, vars_in_step)