Home
last modified time | relevance | path

Searched refs:node_weight (Results 1 – 16 of 16) sorted by relevance

/external/rust/android-crates-io/crates/petgraph/src/
Ddata.rs17 fn node_weight(self: &Self, id: Self::NodeId) -> Option<&Self::NodeWeight>;
86 fn node_weight(&self, id: Self::NodeId) -> Option<&Self::NodeWeight> { in node_weight() function
87 self.node_weight(id) in node_weight()
113 fn node_weight(&self, id: Self::NodeId) -> Option<&Self::NodeWeight> { in node_weight() function
114 self.node_weight(id) in node_weight()
Dquickcheck.rs136 if gr.node_weight(ni).is_some() { in arbitrary()
Dgraphmap.rs627 *graph.node_weight(a).unwrap(), in from_graph()
628 *graph.node_weight(b).unwrap(), in from_graph()
Dadj.rs595 fn node_weight(&self, n: Self::NodeId) -> Option<&()> { in node_weight() method
Dmatrix_graph.rs405 pub fn node_weight(&self, a: NodeIndex<Ix>) -> &N { in node_weight() method
1053 self.node_weight(ax) in index()
/external/freetype/src/cache/
Dftccache.c292 manager->cur_weight -= cache->clazz.node_weight( node, cache ); in ftc_node_destroy()
371 manager->cur_weight -= cache->clazz.node_weight( node, cache ); in ftc_cache_done()
410 manager->cur_weight += cache->clazz.node_weight( node, cache ); in ftc_cache_add()
587 manager->cur_weight -= cache->clazz.node_weight( node, cache ); in FTC_Cache_RemoveFaceID()
Dftccache.h131 FTC_Node_WeightFunc node_weight; member
Dftcmanag.c496 weight += cache->clazz.node_weight( node, cache ); in FTC_Manager_Check()
/external/executorch/backends/xnnpack/operators/
Dnode_visitor.py61 node_weight: int
63 def __init__(self, node_input: int, node_weight: int, node_bias=None):
65 self.node_weight = node_weight
613 weight_node = get_input_node(node, input_type_map.node_weight)
Dop_addmm.py41 input_type_map = InputTypeToIndex(node_input=1, node_weight=2, node_bias=0)
/external/rust/android-crates-io/crates/petgraph/src/graph_impl/stable_graph/
Dmod.rs298 let node_weight = self.g.nodes.get_mut(a.index())?.weight.take()?; in remove_node() localVariable
324 Some(node_weight) in remove_node()
480 pub fn node_weight(&self, a: NodeIndex<Ix>) -> Option<&N> { in node_weight() function
927 if let Some(node_weight) = node.weight.as_ref() { in filter_map()
928 if let Some(new_weight) = node_map(NodeIndex::new(i), node_weight) { in filter_map()
1020 if let Some(Some(_)) = self.g.node_weight(node_ix) { in ensure_node_exists()
1168 self.node_weight(index).unwrap() in index()
/external/rust/android-crates-io/crates/petgraph/src/visit/
Dfilter.rs330 fn node_weight(&self, id: Self::NodeId) -> Option<&Self::NodeWeight> { in node_weight() function
332 self.0.node_weight(id) in node_weight()
/external/rust/android-crates-io/crates/petgraph/src/algo/
Disomorphism.rs184 if let (Some(x), Some(y)) = (g0.node_weight(n0), g1.node_weight(n1)) { in eq()
/external/rust/android-crates-io/crates/petgraph/tests/
Dquickcheck.rs1088 assert!(gr2.node_weight(node_index(i)).is_none());
Dgraph.rs415 println!("Visit {:?} = {:?}", no, g.node_weight(no)); in dijk()
/external/rust/android-crates-io/crates/petgraph/src/graph_impl/
Dmod.rs541 pub fn node_weight(&self, a: NodeIndex<Ix>) -> Option<&N> { in node_weight() function