Home
last modified time | relevance | path

Searched refs:node_temp (Results 1 – 10 of 10) sorted by relevance

/dports/databases/grass7/grass-7.8.6/raster/r.li/r.li.daemon/
H A Davl.c115 avl_node *node_temp = NULL; in avl_add() local
131 node_temp = avl_individua(*root, k, &p, &d); in avl_add()
133 if (node_temp != NULL) { in avl_add()
134 node_temp->counter = node_temp->counter + n; in avl_add()
138 node_temp = avl_make(k, n); in avl_add()
139 if (node_temp == NULL) { in avl_add()
146 node_temp->father = p; in avl_add()
149 p->left_child = node_temp; in avl_add()
153 p->right_child = node_temp; in avl_add()
156 G_free(node_temp); in avl_add()
[all …]
H A DavlID.c121 avlID_node *node_temp = NULL; in avlID_add() local
130 node_temp = avlID_individua(*root, k, &p, &d); in avlID_add()
131 if (node_temp != NULL) { in avlID_add()
132 node_temp->counter = node_temp->counter + n; in avlID_add()
137 node_temp = avlID_make(k, n); in avlID_add()
138 if (node_temp == NULL) in avlID_add()
142 node_temp->father = p; in avlID_add()
144 p->left_child = node_temp; in avlID_add()
147 p->right_child = node_temp; in avlID_add()
149 G_free(node_temp); in avlID_add()
[all …]
/dports/science/code_saturne/code_saturne-7.1.0/bin/model/
H A DLagrangianModel.py287 node_temp = node_model.xmlInitChildNode('thermal', 'status')
288 status = node_temp['status']
366 node_temp = node_coal.xmlInitChildNode('threshold_temperature', coal=icoal)
367 node_temp.xmlSetTextNode(str(value))
542 node_temp = node_2way.xmlInitChildNode('thermal')
543 node_temp['status'] = status
552 node_temp = node_2way.xmlInitChildNode('thermal')
553 status = node_temp['status']
H A DLagrangianOutputModel.py211 node_temp = self.node_output.xmlInitChildNode('temperature', 'status')
212 node_temp['status'] = status
221 node_temp = self.node_output.xmlInitChildNode('temperature', 'status')
222 status = node_temp['status']
/dports/lang/ocaml/ocaml-4.05.0/asmrun/
H A Dspacetime.c915 value* node_temp; in caml_spacetime_c_to_ocaml() local
916 node_temp = (value*) find_trie_node_from_libunwind(0, 0, NULL); in caml_spacetime_c_to_ocaml()
917 if (node_temp != NULL) { in caml_spacetime_c_to_ocaml()
918 caml_spacetime_trie_node_ptr = node_temp; in caml_spacetime_c_to_ocaml()
/dports/lang/ocaml-nox11/ocaml-4.05.0/asmrun/
H A Dspacetime.c915 value* node_temp; in caml_spacetime_c_to_ocaml() local
916 node_temp = (value*) find_trie_node_from_libunwind(0, 0, NULL); in caml_spacetime_c_to_ocaml()
917 if (node_temp != NULL) { in caml_spacetime_c_to_ocaml()
918 caml_spacetime_trie_node_ptr = node_temp; in caml_spacetime_c_to_ocaml()
/dports/biology/hyphy/hyphy-2.5.33/src/core/
H A Dtopology.cpp178 node<long> *node_temp = theRoot->go_down(i); in PostTreeConstructor() local
180 node_temp->detach_parent(); in PostTreeConstructor()
181 node_temp->add_node(*theRoot->go_down(3-i)); in PostTreeConstructor()
183 theRoot = node_temp; in PostTreeConstructor()
192 node<long> *node_temp = theRoot->go_down(1); in PostTreeConstructor() local
193 node_temp->detach_parent(); in PostTreeConstructor()
194 node_temp->add_node(*theRoot->go_down(2)); in PostTreeConstructor()
196 theRoot = node_temp; in PostTreeConstructor()
205 node<long> *node_temp = theRoot->go_down(1); in PostTreeConstructor() local
206 node_temp->detach_parent(); in PostTreeConstructor()
[all …]
H A Dtree.cpp316 node<long> *node_temp = theRoot->go_down(i); in PostTreeConstructor() local
317 if (node_temp->get_num_nodes()) { // an internal node - make it a root in PostTreeConstructor()
319 node_temp->detach_parent(); in PostTreeConstructor()
320 node_temp->add_node(*theRoot->go_down(3-i)); in PostTreeConstructor()
322 theRoot = node_temp; in PostTreeConstructor()
347 node<long> *node_temp = theRoot->go_down(1); in PostTreeConstructor() local
348 node_temp->detach_parent(); in PostTreeConstructor()
351 theRoot = node_temp; in PostTreeConstructor()
/dports/devel/directfb/DirectFB-1.4.17/lib/fusion/
H A Dreactor.c1329 ReactorNode *node, *node_temp; in _fusion_reactor_free_all() local
1338 direct_list_foreach_safe (node, node_temp, world->reactor_nodes) { in _fusion_reactor_free_all()
/dports/games/corsix-th/CorsixTH-0.65.1/CorsixTH/Src/
H A Dth_map.cpp1332 const uint32_t node_temp = node.aiTemperature[temp_idx]; in merge_temperatures() local
1334 static_cast<uint16_t>(((node_temp * (ratio - 1)) + other_temp) / ratio); in merge_temperatures()