Home
last modified time | relevance | path

Searched refs:node_mapping (Results 1 – 25 of 63) sorted by relevance

123

/dports/graphics/blender/blender-2.91.0/release/scripts/modules/bpy_extras/
H A Dnode_shader_utils.py654 tree.nodes.remove(self.node_mapping)
660 elif self.node_mapping is not None:
763 self._node_mapping = node_mapping
776 node_mapping.vector_type = 'TEXTURE'
784 self._node_mapping = node_mapping
787 node_mapping = property(node_mapping_get) variable in ShaderImageTextureWrapper
790 if self.node_mapping is None:
801 if self.node_mapping is None:
812 if self.node_mapping is None:
814 return self.node_mapping.inputs['Scale'].default_value
[all …]
/dports/games/supertux2/SuperTux-v0.6.3-Source/src/object/
H A Dpath.cpp95 ReaderMapping node_mapping = iter.as_mapping(); in read() local
102 if (!node_mapping.get("x", node.position.x) || in read()
103 !node_mapping.get("y", node.position.y)) in read()
105 if (!node_mapping.get("bezier_before_x", node.bezier_before.x) || in read()
106 !node_mapping.get("bezier_before_y", node.bezier_before.y)) in read()
108 if (!node_mapping.get("bezier_after_x", node.bezier_after.x) || in read()
109 !node_mapping.get("bezier_after_y", node.bezier_after.y)) in read()
111 node_mapping.get("time", node.time); in read()
112 node_mapping.get("speed", node.speed); in read()
113 node_mapping.get_custom("easing", node.easing, EasingMode_from_string); in read()
/dports/graphics/blender/blender-2.91.0/source/blender/nodes/intern/
H A Dnode_tree_ref.cc25 Map<bNode *, NodeRef *> node_mapping; in NodeTreeRef() local
58 node_mapping.add_new(bnode, &node); in NodeTreeRef()
63 node_mapping, blink->fromnode, blink->fromsock); in NodeTreeRef()
65 node_mapping, blink->tonode, blink->tosock); in NodeTreeRef()
99 InputSocketRef &NodeTreeRef::find_input_socket(Map<bNode *, NodeRef *> &node_mapping, in find_input_socket() argument
103 NodeRef *node = node_mapping.lookup(bnode); in find_input_socket()
113 OutputSocketRef &NodeTreeRef::find_output_socket(Map<bNode *, NodeRef *> &node_mapping, in find_output_socket() argument
117 NodeRef *node = node_mapping.lookup(bnode); in find_output_socket()
/dports/graphics/py-pygraph/pygraph-0.2.1-4-g037bb2f/pygraph/helpers/
H A Dfunctions.py113 node_mapping = {}
119 node_mapping[node_id] = new_id
124 new_vertex_a_id = node_mapping[old_vertex_a_id]
125 new_vertex_b_id = node_mapping[old_vertex_b_id]
129 return node_mapping, edge_mapping
/dports/biology/scrm/scrm-1.7.4/src/
H A Dnode_container.cc55 std::map<Node const*, Node*> node_mapping; in NodeContainer() local
56 node_mapping[NULL] = NULL; in NodeContainer()
61 node_mapping[*it] = node; in NodeContainer()
67 if (!(*it)->is_root()) (*it)->set_parent(node_mapping[(*it)->parent()]); in NodeContainer()
68 (*it)->set_first_child(node_mapping[(*it)->first_child()]); in NodeContainer()
69 (*it)->set_second_child(node_mapping[(*it)->second_child()]); in NodeContainer()
71 unsorted_node_ = node_mapping[nc.unsorted_node_]; in NodeContainer()
/dports/net-im/prosody-modules/Community-Modules-bb8459c220c9/mod_pubsub_github/
H A Dmod_pubsub_github.lua19 local node_mapping = module:get_option_string("github_node_mapping");
57 if node_mapping then
58 node = node_prefix .. data.repository[node_mapping];
104 if not node_mapping then
/dports/www/ilias/ILIAS-5.4.25/Services/Taxonomy/classes/
H A Dclass.ilObjTaxonomy.php18 protected $node_mapping = array(); variable in ilObjTaxonomy
110 return $this->node_mapping;
153 $this->node_mapping = array();
188 $this->node_mapping[$node["child"]] = $new_node->getId();
/dports/www/ilias6/ILIAS-6.14/Services/Taxonomy/classes/
H A Dclass.ilObjTaxonomy.php18 protected $node_mapping = array(); variable in ilObjTaxonomy
110 return $this->node_mapping;
153 $this->node_mapping = array();
188 $this->node_mapping[$node["child"]] = $new_node->getId();
/dports/dns/dnsviz/dnsviz-0.9.2/dnsviz/viz/
H A Ddnssec.py170 self.node_mapping = {}
428 if node_str not in self.node_mapping:
429 self.node_mapping[node_str] = set()
530 if node_str not in self.node_mapping:
689 self.node_mapping[edge_id] = set()
764 if node_str not in self.node_mapping:
837 if node_str not in self.node_mapping:
876 self.node_mapping[node_str] = set()
919 if edge_id not in self.node_mapping:
1040 if node_str not in self.node_mapping:
[all …]
/dports/editors/encryptpad/EncryptPad-0.5.0.1/deps/stlplus/persistence/
H A Dpersistent_ntree.tpp25 std::pair<bool,unsigned> node_mapping = context.pointer_map(node.node());
26 if (node_mapping.first) throw persistent_dump_failed("ntree: already dumped this node");
27 dump_unsigned(context,node_mapping.second);
66 std::pair<bool,void*> node_mapping = context.pointer_map(node_magic);
67 … if (node_mapping.first) throw persistent_restore_failed("ntree: restored this tree node already");
H A Dpersistent_digraph.tpp31 std::pair<bool,unsigned> node_mapping = context.pointer_map(node.node());
32 if (node_mapping.first) throw persistent_dump_failed("digraph: already dumped this node");
33 dump_unsigned(context,node_mapping.second);
/dports/science/py-pymatgen/pymatgen-2022.0.15/pymatgen/command_line/
H A Dcritic2_caller.py672 node_mapping = {} # critic2_index:structure_index
677 node_mapping = {}
680 node_mapping[idx] = kd.query(node["frac_coords"])[1]
682 if len(node_mapping) != len(self.structure):
685 "been detected by critic2 ({}).".format(len(self.structure), len(node_mapping))
688 self.nodes = {node_mapping.get(idx, idx): node for idx, node in self.nodes.items()}
691 edge["from_idx"] = node_mapping.get(edge["from_idx"], edge["from_idx"])
692 edge["to_idx"] = node_mapping.get(edge["to_idx"], edge["to_idx"])
/dports/math/rocs/rocs-21.12.3/libgraphtheory/modifiers/
H A Dtopology.cpp91 QMap<NodePtr, int> node_mapping; in applyMinCutTreeAlignment() local
95 node_mapping[node] = counter++; in applyMinCutTreeAlignment()
103 edges[counter++] = BoostEdge(node_mapping[edge->from()], node_mapping[edge->to()]); in applyMinCutTreeAlignment()
131 Vertex v = boost::vertex(node_mapping[node], graph); in applyMinCutTreeAlignment()
160 QMap<NodePtr, int> node_mapping; in applyCircleAlignment() local
164 node_mapping[node] = counter++; in applyCircleAlignment()
172 edges[counter++] = BoostEdge(node_mapping[edge->from()], node_mapping[edge->to()]); in applyCircleAlignment()
197 Vertex v = boost::vertex(node_mapping[node], graph); in applyCircleAlignment()
/dports/multimedia/opentoonz/opentoonz-1.5.0/thirdparty/openblas/xianyi-OpenBLAS-e6e87a2/driver/others/
H A Dinit.c117 static int node_mapping[MAX_CPUS * 4]; variable
576 node_mapping[WhereAmI()] = mynode; in gotoblas_set_affinity()
585 if (!disable_mapping) return node_mapping[WhereAmI()]; in get_node()
691 node_mapping[WhereAmI()] = READ_NODE(common -> cpu_info[cpu_sub_mapping[0]]); in gotoblas_affinity_init()
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/plugins_unsupported/external/GotoBLAS2/driver/others/
H A Dinit.c67 static int node_mapping[MAX_CPUS * 4]; variable
501 node_mapping[WhereAmI()] = mynode; in gotoblas_set_affinity()
510 if (!disable_mapping) return node_mapping[WhereAmI()]; in get_node()
615 node_mapping[WhereAmI()] = READ_NODE(common -> cpu_info[cpu_sub_mapping[0]]); in gotoblas_affinity_init()
/dports/math/gotoblas/GotoBLAS2/driver/others/
H A Dinit.c84 static int node_mapping[MAX_CPUS * 4]; variable
518 node_mapping[WhereAmI()] = mynode; in gotoblas_set_affinity()
527 if (!disable_mapping) return node_mapping[WhereAmI()]; in get_node()
632 node_mapping[WhereAmI()] = READ_NODE(common -> cpu_info[cpu_sub_mapping[0]]); in gotoblas_affinity_init()
/dports/graphics/blender/blender-2.91.0/source/blender/nodes/
H A DNOD_node_tree_ref.hh185 InputSocketRef &find_input_socket(Map<bNode *, NodeRef *> &node_mapping,
188 OutputSocketRef &find_output_socket(Map<bNode *, NodeRef *> &node_mapping,
/dports/math/openblas/OpenBLAS-0.3.18/driver/others/
H A Dinit.c137 static int node_mapping[MAX_CPUS * 4]; variable
787 node_mapping[WhereAmI()] = mynode; in gotoblas_set_affinity()
796 if (!disable_mapping) return node_mapping[WhereAmI()]; in get_node()
967 node_mapping[WhereAmI()] = READ_NODE(common -> cpu_info[cpu_sub_mapping[0]]);
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/
H A Dtree-ssa-structalias.c1383 unsigned int *node_mapping; member
1840 si->node_mapping[i] = i; in init_scc_info()
1853 free (si->node_mapping); in free_scc_info()
2034 unsigned int w = si->node_mapping[i]; in condense_visit()
2072 si->node_mapping[w] = n; in condense_visit()
2233 if (si->node_mapping[i] != i) in dump_pred_graph()
2258 if (si->node_mapping[i] != i) in dump_pred_graph()
2262 unsigned from = si->node_mapping[j]; in dump_pred_graph()
2358 unsigned j = si->node_mapping[i]; in perform_var_substitution()
2561 lhsnode = si->node_mapping[lhsvar]; in rewrite_constraints()
[all …]
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/
H A Dtree-ssa-structalias.c1377 unsigned int *node_mapping; member
1834 si->node_mapping[i] = i; in init_scc_info()
1847 free (si->node_mapping); in free_scc_info()
2027 unsigned int w = si->node_mapping[i]; in condense_visit()
2065 si->node_mapping[w] = n; in condense_visit()
2226 if (si->node_mapping[i] != i) in dump_pred_graph()
2251 if (si->node_mapping[i] != i) in dump_pred_graph()
2255 unsigned from = si->node_mapping[j]; in dump_pred_graph()
2350 unsigned j = si->node_mapping[i]; in perform_var_substitution()
2550 lhsnode = si->node_mapping[lhsvar]; in rewrite_constraints()
[all …]
/dports/lang/gnat_util/gcc-6-20180516/gcc/
H A Dtree-ssa-structalias.c1383 unsigned int *node_mapping; member
1840 si->node_mapping[i] = i; in init_scc_info()
1853 free (si->node_mapping); in free_scc_info()
2034 unsigned int w = si->node_mapping[i]; in condense_visit()
2072 si->node_mapping[w] = n; in condense_visit()
2233 if (si->node_mapping[i] != i) in dump_pred_graph()
2258 if (si->node_mapping[i] != i) in dump_pred_graph()
2262 unsigned from = si->node_mapping[j]; in dump_pred_graph()
2358 unsigned j = si->node_mapping[i]; in perform_var_substitution()
2561 lhsnode = si->node_mapping[lhsvar]; in rewrite_constraints()
[all …]
/dports/lang/gcc48/gcc-4.8.5/gcc/
H A Dtree-ssa-structalias.c1360 unsigned int *node_mapping; member
1823 si->node_mapping[i] = i; in init_scc_info()
1836 free (si->node_mapping); in free_scc_info()
2002 gcc_assert (si->node_mapping[n] == n); in condense_visit()
2018 unsigned int t = si->node_mapping[w]; in condense_visit()
2019 unsigned int nnode = si->node_mapping[n]; in condense_visit()
2038 unsigned int t = si->node_mapping[w]; in condense_visit()
2054 si->node_mapping[w] = n; in condense_visit()
2245 unsigned j = si->node_mapping[i]; in perform_var_substitution()
2444 lhsnode = si->node_mapping[lhsvar]; in rewrite_constraints()
[all …]
/dports/devel/mingw32-gcc/gcc-4.8.1/gcc/
H A Dtree-ssa-structalias.c1357 unsigned int *node_mapping; member
1816 si->node_mapping[i] = i; in init_scc_info()
1829 free (si->node_mapping); in free_scc_info()
1995 gcc_assert (si->node_mapping[n] == n); in condense_visit()
2011 unsigned int t = si->node_mapping[w]; in condense_visit()
2012 unsigned int nnode = si->node_mapping[n]; in condense_visit()
2031 unsigned int t = si->node_mapping[w]; in condense_visit()
2047 si->node_mapping[w] = n; in condense_visit()
2238 unsigned j = si->node_mapping[i]; in perform_var_substitution()
2418 lhsnode = si->node_mapping[lhsvar]; in rewrite_constraints()
[all …]
/dports/lang/gcc8/gcc-8.5.0/gcc/
H A Dtree-ssa-structalias.c1396 unsigned int *node_mapping; member
1847 node_mapping[i] = i; in scc_info()
1854 free (node_mapping); in ~scc_info()
2031 unsigned int w = si->node_mapping[i]; in condense_visit()
2069 si->node_mapping[w] = n; in condense_visit()
2230 if (si->node_mapping[i] != i) in dump_pred_graph()
2259 if (si->node_mapping[i] != i) in dump_pred_graph()
2263 unsigned from = si->node_mapping[j]; in dump_pred_graph()
2359 unsigned j = si->node_mapping[i]; in perform_var_substitution()
2562 lhsnode = si->node_mapping[lhsvar]; in rewrite_constraints()
[all …]
/dports/lang/gcc10/gcc-10.3.0/gcc/
H A Dtree-ssa-structalias.c1404 unsigned int *node_mapping; variable
1855 node_mapping[i] = i; in scc_info()
1862 free (node_mapping); in ~scc_info()
2041 unsigned int w = si->node_mapping[i]; in condense_visit()
2085 si->node_mapping[w] = n; in condense_visit()
2277 if (si->node_mapping[i] != i) in dump_pred_graph()
2306 if (si->node_mapping[i] != i) in dump_pred_graph()
2310 unsigned from = si->node_mapping[j]; in dump_pred_graph()
2407 unsigned j = si->node_mapping[i]; in perform_var_substitution()
2611 lhsnode = si->node_mapping[lhsvar]; in rewrite_constraints()
[all …]

123