/external/libxml2/doc/examples/ |
D | tree1.c | 33 xmlNode *cur_node = NULL; in print_element_names() local 35 for (cur_node = a_node; cur_node; cur_node = cur_node->next) { in print_element_names() 36 if (cur_node->type == XML_ELEMENT_NODE) { in print_element_names() 37 printf("node type: Element, name: %s\n", cur_node->name); in print_element_names() 40 print_element_names(cur_node->children); in print_element_names()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_deadlock_detector.h | 206 bool onLockBefore(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) { in onLockBefore() argument 208 uptr cur_idx = nodeToIndex(cur_node); in onLockBefore() 217 void onLockAfter(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) { 219 uptr cur_idx = nodeToIndex(cur_node); 225 bool hasAllEdges(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) { in hasAllEdges() argument 228 if (cur_node && local_epoch == current_epoch_ && in hasAllEdges() 229 local_epoch == nodeToEpoch(cur_node)) { in hasAllEdges() 230 uptr cur_idx = nodeToIndexUnchecked(cur_node); in hasAllEdges() 244 uptr addEdges(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk, in addEdges() argument 247 uptr cur_idx = nodeToIndex(cur_node); in addEdges() [all …]
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
D | 2008-01-16-InvalidDAGCombineXform.ll | 5 define void @localize_local_bb19_bb(%struct.node_t** %cur_node) { 7 %tmp1 = load %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 10 %tmp4 = load %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 13 %tmp6 = load %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 16 %tmp9 = load %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 19 %tmp11 = load %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 22 %tmp14 = load %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 25 %tmp16 = load %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 28 store %struct.node_t* %tmp18, %struct.node_t** %cur_node, align 4
|
/external/llvm/test/CodeGen/X86/ |
D | 2008-01-16-InvalidDAGCombineXform.ll | 5 define void @localize_local_bb19_bb(%struct.node_t** %cur_node) { 7 %tmp1 = load %struct.node_t*, %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 10 %tmp4 = load %struct.node_t*, %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 13 %tmp6 = load %struct.node_t*, %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 16 %tmp9 = load %struct.node_t*, %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 19 %tmp11 = load %struct.node_t*, %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 22 %tmp14 = load %struct.node_t*, %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 25 %tmp16 = load %struct.node_t*, %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 28 store %struct.node_t* %tmp18, %struct.node_t** %cur_node, align 4
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | 2008-01-16-InvalidDAGCombineXform.ll | 5 define void @localize_local_bb19_bb(%struct.node_t** %cur_node) { 7 %tmp1 = load %struct.node_t*, %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 10 %tmp4 = load %struct.node_t*, %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 13 %tmp6 = load %struct.node_t*, %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 16 %tmp9 = load %struct.node_t*, %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 19 %tmp11 = load %struct.node_t*, %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 22 %tmp14 = load %struct.node_t*, %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 25 %tmp16 = load %struct.node_t*, %struct.node_t** %cur_node, align 4 ; <%struct.node_t*> [#uses=1] 28 store %struct.node_t* %tmp18, %struct.node_t** %cur_node, align 4
|
/external/ltp/utils/ffsb-6.0-rc2/ |
D | rbt.c | 284 rb_node *cur_node; in rbtree_insert() local 304 cur_node = tree->root; in rbtree_insert() 309 while (cur_node) { in rbtree_insert() 313 comp_result = COMP_NODES(object, cur_node->object); in rbtree_insert() 321 if (!(cur_node->left)) { in rbtree_insert() 325 cur_node->left = new_node; in rbtree_insert() 326 new_node->parent = cur_node; in rbtree_insert() 327 cur_node = NULL; /* Terminate the while loop */ in rbtree_insert() 330 cur_node = cur_node->left; in rbtree_insert() 333 if (!(cur_node->right)) { in rbtree_insert() [all …]
|
/external/tensorflow/tensorflow/contrib/framework/python/framework/ |
D | graph_util.py | 90 cur_node = next_to_visit[0] 91 visited.add(cur_node) 93 if cur_node in reachable_by_input and cur_node not in input_nodes_set: 95 (n, cur_node)) 96 if cur_node not in input_nodes_set: 98 input_node for input_node in name_to_input_name[cur_node]
|
/external/v8/src/ |
D | locked-queue-inl.h | 34 Node* cur_node = head_; 35 while (cur_node != nullptr) { 36 old_node = cur_node; 37 cur_node = cur_node->next.Value();
|
/external/python/cpython3/Lib/xml/dom/ |
D | pulldom.py | 238 token, cur_node = event 239 if cur_node is node: 242 parents[-1].appendChild(cur_node) 244 parents.append(cur_node)
|
/external/python/cpython2/Lib/xml/dom/ |
D | 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/ |
D | expand.c | 2874 cond_node_t *cur_node; in discard_tunables() local 2903 for (cur_node = decl->cond_list; cur_node != NULL; in discard_tunables() 2904 cur_node = cur_node->next) { in discard_tunables() 2912 for (cur_expr = cur_node->expr; cur_expr != NULL; in discard_tunables() 2931 cur_node->flags &= ~COND_NODE_FLAGS_TUNABLE; in discard_tunables() 2937 cur_node->flags |= COND_NODE_FLAGS_TUNABLE; in discard_tunables() 2938 cur_state = cond_evaluate_expr(pol, cur_node->expr); in discard_tunables() 2947 cur_node->avtrue_list : cur_node->avfalse_list; in discard_tunables() 2957 cur_node->avtrue_list = NULL; in discard_tunables() 2959 cur_node->avfalse_list = NULL; in discard_tunables()
|
/external/llvm/test/CodeGen/Generic/ |
D | 2006-01-12-BadSetCCFold.ll | 27 …%cur_node.0.i8.1.i.i = phi %struct.node_t* [ undef, %dealwithargs.exit ], [ null, %no_exit.i12.i.i…
|
/external/swiftshader/third_party/LLVM/test/CodeGen/Generic/ |
D | 2006-01-12-BadSetCCFold.ll | 27 …%cur_node.0.i8.1.i.i = phi %struct.node_t* [ undef, %dealwithargs.exit ], [ null, %no_exit.i12.i.i…
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Generic/ |
D | 2006-01-12-BadSetCCFold.ll | 27 …%cur_node.0.i8.1.i.i = phi %struct.node_t* [ undef, %dealwithargs.exit ], [ null, %no_exit.i12.i.i…
|
/external/v8/src/heap/ |
D | spaces.cc | 2880 for (FreeSpace* cur_node = top(); cur_node != nullptr; in AllocateChunk() local 2881 cur_node = cur_node->next()) { in AllocateChunk() 2882 size_t size = cur_node->size(); in AllocateChunk() 2886 if (cur_node == top()) { in AllocateChunk() 2887 set_top(cur_node->next()); in AllocateChunk() 2895 prev_non_evac_node->set_next(cur_node->next()); in AllocateChunk() 2898 return cur_node; in AllocateChunk() 2901 prev_non_evac_node = cur_node; in AllocateChunk()
|
/external/libxml2/ |
D | xmlreader.c | 1707 xmlNodePtr node, cur_node; in xmlTextReaderReadInnerXml() local 1716 for (cur_node = reader->node->children; cur_node != NULL; in xmlTextReaderReadInnerXml() 1717 cur_node = cur_node->next) { in xmlTextReaderReadInnerXml() 1719 node = xmlDocCopyNode(cur_node, doc, 1); in xmlTextReaderReadInnerXml()
|