Home
last modified time | relevance | path

Searched refs:curnode (Results 1 – 4 of 4) sorted by relevance

/openbsd/src/sys/dev/microcode/aic7xxx/
Daicasm_symbol.c208 symbol_node_t *curnode; in symlist_search() local
210 curnode = SLIST_FIRST(symlist); in symlist_search()
211 while(curnode != NULL) { in symlist_search()
212 if (strcmp(symname, curnode->symbol->name) == 0) in symlist_search()
214 curnode = SLIST_NEXT(curnode, links); in symlist_search()
216 return (curnode); in symlist_search()
231 symbol_node_t *curnode; in symlist_add() local
252 curnode = SLIST_FIRST(symlist); in symlist_add()
253 if (curnode == NULL in symlist_add()
255 && (curnode->symbol->type > newnode->symbol->type in symlist_add()
[all …]
/openbsd/src/usr.bin/awk/
Dmain.c67 extern Node *curnode; in fpecatch()
117 if (compile_time != 2 && curnode) { in fpecatch()
118 dprintf(STDERR_FILENO, " source line number %d", curnode->lineno); in fpecatch()
Dlib.c760 extern Node *curnode; in error()
770 if (curnode) in error()
771 fprintf(stderr, " source line number %d", curnode->lineno); in error()
Drun.c102 Node *curnode = NULL; /* the node being executed, for debugging */ variable
156 curnode = a; in execute()