Searched refs:cur_node (Results 1 – 3 of 3) sorted by relevance
| /openbsd-src/usr.bin/ctags/ |
| H A D | tree.c | 92 add_node(NODE *node, NODE *cur_node) in add_node() argument 96 dif = strcmp(node->entry, cur_node->entry); in add_node() 98 if (node->file == cur_node->file) { in add_node() 105 if (!cur_node->been_warned) in add_node() 109 node->file, cur_node->file, node->entry); in add_node() 110 cur_node->been_warned = YES; in add_node() 113 if (cur_node->left) in add_node() 114 add_node(node, cur_node->left); in add_node() 116 cur_node->left = node; in add_node() 117 else if (cur_node->right) in add_node() [all …]
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_deadlock_detector.h | 202 bool onLockBefore(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) { in onLockBefore() argument 204 uptr cur_idx = nodeToIndex(cur_node); in onLockBefore() 213 void onLockAfter(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) { 215 uptr cur_idx = nodeToIndex(cur_node); 221 bool hasAllEdges(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) { in hasAllEdges() argument 224 if (cur_node && local_epoch == current_epoch_ && in hasAllEdges() 225 local_epoch == nodeToEpoch(cur_node)) { in hasAllEdges() 226 uptr cur_idx = nodeToIndexUnchecked(cur_node); in hasAllEdges() 240 uptr addEdges(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk, in addEdges() argument 243 uptr cur_idx = nodeToIndex(cur_node); in addEdges() [all …]
|
| /openbsd-src/sys/dev/microcode/aic7xxx/ |
| H A D | aicasm.c | 353 symbol_node_t *cur_node; in output_code() local 396 for (cur_node = SLIST_FIRST(&patch_functions); in output_code() 397 cur_node != NULL; in output_code() 398 cur_node = SLIST_NEXT(cur_node,links)) { in output_code() 409 cur_node->symbol->info.condinfo->func_num, in output_code() 411 cur_node->symbol->info.condinfo->func_num, in output_code() 413 cur_node->symbol->name); in output_code()
|