/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/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/selinux/libsepol/src/ |
D | hierarchy.c | 270 cond_list_t *cur_node; in pullup_unconditional_perms() local 277 for (cur_node = cond_list; cur_node; cur_node = cur_node->next) { in pullup_unconditional_perms() 282 if (expand_cond_av_list(args->p, cur_node->true_list, in pullup_unconditional_perms() 285 if (expand_cond_av_list(args->p, cur_node->false_list, in pullup_unconditional_perms() 334 cond_list_t *cur_node; in check_cond_avtab_hierarchy() local 340 for (cur_node = cond_list; cur_node; cur_node = cur_node->next) { in check_cond_avtab_hierarchy() 346 if (expand_cond_av_list(args->p, cur_node->true_list, in check_cond_avtab_hierarchy() 370 if (expand_cond_av_list(args->p, cur_node->false_list, in check_cond_avtab_hierarchy()
|
D | expand.c | 2802 cond_node_t *cur_node; in discard_tunables() local 2831 for (cur_node = decl->cond_list; cur_node != NULL; in discard_tunables() 2832 cur_node = cur_node->next) { in discard_tunables() 2840 for (cur_expr = cur_node->expr; cur_expr != NULL; in discard_tunables() 2859 cur_node->flags &= ~COND_NODE_FLAGS_TUNABLE; in discard_tunables() 2865 cur_node->flags |= COND_NODE_FLAGS_TUNABLE; in discard_tunables() 2866 cur_state = cond_evaluate_expr(pol, cur_node->expr); in discard_tunables() 2875 cur_node->avtrue_list : cur_node->avfalse_list; in discard_tunables() 2885 cur_node->avtrue_list = NULL; in discard_tunables() 2887 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/v8/src/heap/ |
D | spaces.cc | 2252 FreeListNode* cur_node = *cur; in FindNodeFor() local 2253 while (cur_node != NULL && in FindNodeFor() 2254 Page::FromAddress(cur_node->address())->IsEvacuationCandidate()) { in FindNodeFor() 2255 int size = reinterpret_cast<FreeSpace*>(cur_node)->Size(); in FindNodeFor() 2257 page = Page::FromAddress(cur_node->address()); in FindNodeFor() 2259 cur_node = cur_node->next(); in FindNodeFor() 2262 *cur = cur_node; in FindNodeFor() 2263 if (cur_node == NULL) { in FindNodeFor()
|
/external/libxml2/ |
D | xmlreader.c | 1702 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()
|