Home
last modified time | relevance | path

Searched refs:cur_node (Results 1 – 8 of 8) sorted by relevance

/external/libxml2/doc/examples/
Dtree1.c33 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/
Dsanitizer_deadlock_detector.h206 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/llvm/test/CodeGen/X86/
D2008-01-16-InvalidDAGCombineXform.ll5 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/v8/src/
Dlocked-queue-inl.h34 Node* cur_node = head_;
35 while (cur_node != nullptr) {
36 old_node = cur_node;
37 cur_node = cur_node->next.Value();
/external/v8/src/heap/
Dspaces.cc2295 for (FreeSpace* cur_node = top(); cur_node != nullptr; in AllocateChunk() local
2296 cur_node = cur_node->next()) { in AllocateChunk()
2297 Page* page_for_node = Page::FromAddress(cur_node->address()); in AllocateChunk()
2300 int size = cur_node->size(); in AllocateChunk()
2302 DCHECK((prev_node != nullptr) || (top() == cur_node)); in AllocateChunk()
2303 if (cur_node == top()) { in AllocateChunk()
2304 set_top(cur_node->next()); in AllocateChunk()
2306 if (cur_node == end()) { in AllocateChunk()
2310 prev_node->set_next(cur_node->next()); in AllocateChunk()
2314 prev_node = cur_node; in AllocateChunk()
[all …]
/external/llvm/test/CodeGen/Generic/
D2006-01-12-BadSetCCFold.ll27 …%cur_node.0.i8.1.i.i = phi %struct.node_t* [ undef, %dealwithargs.exit ], [ null, %no_exit.i12.i.i…
/external/selinux/libsepol/src/
Dexpand.c2819 cond_node_t *cur_node; in discard_tunables() local
2848 for (cur_node = decl->cond_list; cur_node != NULL; in discard_tunables()
2849 cur_node = cur_node->next) { in discard_tunables()
2857 for (cur_expr = cur_node->expr; cur_expr != NULL; in discard_tunables()
2876 cur_node->flags &= ~COND_NODE_FLAGS_TUNABLE; in discard_tunables()
2882 cur_node->flags |= COND_NODE_FLAGS_TUNABLE; in discard_tunables()
2883 cur_state = cond_evaluate_expr(pol, cur_node->expr); in discard_tunables()
2892 cur_node->avtrue_list : cur_node->avfalse_list; in discard_tunables()
2902 cur_node->avtrue_list = NULL; in discard_tunables()
2904 cur_node->avfalse_list = NULL; in discard_tunables()
/external/libxml2/
Dxmlreader.c1702 xmlNodePtr node, cur_node; in xmlTextReaderReadInnerXml() local
1711 for (cur_node = reader->node->children; cur_node != NULL; in xmlTextReaderReadInnerXml()
1712 cur_node = cur_node->next) { in xmlTextReaderReadInnerXml()
1713 node = xmlDocCopyNode(cur_node, doc, 1); in xmlTextReaderReadInnerXml()