Home
last modified time | relevance | path

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

/src/sys/dev/aic7xxx/aicasm/
H A Daicasm_symbol.c210 symbol_node_t *curnode; in symlist_search() local
212 curnode = SLIST_FIRST(symlist); in symlist_search()
213 while(curnode != NULL) { in symlist_search()
214 if (strcmp(symname, curnode->symbol->name) == 0) in symlist_search()
216 curnode = SLIST_NEXT(curnode, links); in symlist_search()
218 return (curnode); in symlist_search()
233 symbol_node_t *curnode; in symlist_add() local
254 curnode = SLIST_FIRST(symlist); in symlist_add()
255 if (curnode == NULL in symlist_add()
257 && (curnode->symbol->type > newnode->symbol->type in symlist_add()
[all …]
/src/usr.sbin/makefs/
H A Dwalk.c349 NODE *curnode; in apply_specdir() local
377 for (curnode = specnode->child; curnode != NULL; in apply_specdir()
378 curnode = curnode->next) { in apply_specdir()
379 if (strcmp(curnode->name, curfsnode->name) == 0) in apply_specdir()
382 if (curnode == NULL) { in apply_specdir()
392 for (curnode = specnode->child; curnode != NULL; in apply_specdir()
393 curnode = curnode->next) { in apply_specdir()
396 curnode->name); in apply_specdir()
404 if (strcmp(curnode->name, curfsnode->name) == 0) in apply_specdir()
408 curnode->name) >= sizeof(path)) in apply_specdir()
[all …]
/src/contrib/one-true-awk/
H A Dlib.c760 extern Node *curnode; in error()
770 if (curnode) in error()
771 fprintf(stderr, " source line number %d", curnode->lineno); in error()
H A Drun.c101 Node *curnode = NULL; /* the node being executed, for debugging */ variable
155 curnode = a; in execute()