HomeSort by relevance Sort by last modified time
    Searched refs:cur_node (Results 1 - 20 of 20) sorted by null

  /external/libxml2/doc/examples/
tree1.c 33 xmlNode *cur_node = NULL; local
35 for (cur_node = a_node; cur_node; cur_node = cur_node->next) {
36 if (cur_node->type == XML_ELEMENT_NODE) {
37 printf("node type: Element, name: %s\n", cur_node->name);
40 print_element_names(cur_node->children);
  /external/v8/src/
locked-queue-inl.h 34 Node* cur_node = head_; local
35 while (cur_node != nullptr) {
36 old_node = cur_node;
37 cur_node = cur_node->next.Value();
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_deadlock_detector.h 206 bool onLockBefore(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) {
208 uptr cur_idx = nodeToIndex(cur_node);
216 // Add cur_node to the set of locks held currently by dtls.
217 void onLockAfter(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) {
219 uptr cur_idx = nodeToIndex(cur_node);
224 // Returns true if all edges from the currently held locks to cur_node exist.
225 bool hasAllEdges(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) {
228 if (cur_node && local_epoch == current_epoch_ &&
229 local_epoch == nodeToEpoch(cur_node)) {
230 uptr cur_idx = nodeToIndexUnchecked(cur_node);
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
mcparse.y 39 static mc_node *cur_node = NULL;
77 cur_node = mc_add_node ();
78 cur_node->user_text = $1;
178 cur_node = mc_add_node ();
179 cur_node->symbol = mc_last_symbol;
180 cur_node->facility = mc_cur_facility;
181 cur_node->severity = mc_cur_severity;
182 cur_node->id = ($1 & 0xffffUL);
183 cur_node->vid = ($1 & 0xffffUL) | mc_sefa_val;
269 h = mc_add_node_lang (cur_node, $1, cur_node->vid)
    [all...]
  /external/tensorflow/tensorflow/contrib/framework/python/framework/
graph_util.py 89 cur_node = next_to_visit[0]
91 if cur_node in reachable_by_input and cur_node not in input_nodes_set:
93 (n, cur_node))
94 if cur_node not in input_nodes_set:
95 next_to_visit += name_to_input_name[cur_node]
  /external/ltp/utils/ffsb-6.0-rc2/
rbt.c 284 rb_node *cur_node; local
304 cur_node = tree->root;
309 while (cur_node) {
313 comp_result = COMP_NODES(object, cur_node->object);
321 if (!(cur_node->left)) {
325 cur_node->left = new_node;
326 new_node->parent = cur_node;
327 cur_node = NULL; /* Terminate the while loop */
330 cur_node = cur_node->left
627 rb_node *cur_node = tree->root; local
    [all...]
  /system/libufdt/
ufdt_node.c 210 struct ufdt_node *cur_node = it; local
212 cur_node->sibling = NULL;
214 if (ufdt_node_tag(cur_node) == FDT_BEGIN_NODE) {
216 ufdt_node_get_subnode_by_name(node_a, ufdt_node_name(cur_node));
219 ufdt_node_get_property_by_name(node_a, ufdt_node_name(cur_node));
222 err = ufdt_node_add_child(node_a, cur_node);
224 err = ufdt_node_merge_into(target_node, cur_node, pool);
225 ufdt_node_pool_free(pool, cur_node);
  /external/syslinux/core/lwip/src/core/snmp/
mib_structs.c 741 struct nse cur_node; local
753 cur_node.r_ptr = an->nptr[j];
754 cur_node.r_id = an->objid[j];
755 cur_node.r_nl = 0;
759 cur_node.r_ptr = NULL;
761 push_node(&cur_node);
859 struct nse cur_node; local
869 cur_node.r_ptr = jn->nptr;
870 cur_node.r_id = jn->objid;
871 cur_node.r_nl = 0
984 struct nse cur_node; local
    [all...]
  /system/libufdt/tests/libufdt_verify/
ufdt_test_overlay.cpp 44 struct ufdt_node *cur_node = it; local
47 if (ufdt_node_tag(cur_node) == FDT_BEGIN_NODE) {
49 ufdt_node_get_subnode_by_name(node_a, ufdt_node_name(cur_node));
52 ufdt_node_get_property_by_name(node_a, ufdt_node_name(cur_node));
58 result = ufdt_node_compare(target_node, cur_node, tree_a, tree_b);
  /external/python/cpython3/Lib/xml/dom/
pulldom.py 238 token, cur_node = event
239 if cur_node is node:
242 parents[-1].appendChild(cur_node)
244 parents.append(cur_node)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
pulldom.py 244 token, cur_node = event
245 if cur_node is node:
248 parents[-1].appendChild(cur_node)
250 parents.append(cur_node)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
pulldom.py 244 token, cur_node = event
245 if cur_node is node:
248 parents[-1].appendChild(cur_node)
250 parents.append(cur_node)
  /external/python/cpython2/Lib/xml/dom/
pulldom.py 244 token, cur_node = event
245 if cur_node is node:
248 parents[-1].appendChild(cur_node)
250 parents.append(cur_node)
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
pulldom.py 244 token, cur_node = event
245 if cur_node is node:
248 parents[-1].appendChild(cur_node)
250 parents.append(cur_node)
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
pulldom.py 244 token, cur_node = event
245 if cur_node is node:
248 parents[-1].appendChild(cur_node)
250 parents.append(cur_node)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
pulldom.py 244 token, cur_node = event
245 if cur_node is node:
248 parents[-1].appendChild(cur_node)
250 parents.append(cur_node)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
pulldom.py 244 token, cur_node = event
245 if cur_node is node:
248 parents[-1].appendChild(cur_node)
250 parents.append(cur_node)
  /external/selinux/libsepol/src/
expand.c 2868 cond_node_t *cur_node; local
    [all...]
  /external/v8/src/heap/
spaces.cc     [all...]
  /external/libxml2/
xmlreader.c 1707 xmlNodePtr node, cur_node; local
    [all...]

Completed in 328 milliseconds