Home
last modified time | relevance | path

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

/freebsd/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 in symlist_add()
439 aic_print_reg_dump_entry(FILE * dfile,symbol_node_t * curnode) aic_print_reg_dump_entry() argument
473 symbol_node_t *curnode; symtable_dump() local
[all...]
/freebsd/usr.sbin/makefs/
H A Dwalk.c340 NODE *curnode; in apply_specdir() local
368 for (curnode = specnode->child; curnode != NULL; in apply_specdir()
369 curnode = curnode->next) { in apply_specdir()
370 if (strcmp(curnode->name, curfsnode->name) == 0) in apply_specdir()
373 if (curnode == NULL) { in apply_specdir()
383 for (curnode = specnode->child; curnode != NULL; in apply_specdir()
384 curnode = curnode->next) { in apply_specdir()
387 curnode->name); in apply_specdir()
395 if (strcmp(curnode->name, curfsnode->name) == 0) in apply_specdir()
399 curnode->name) >= sizeof(path)) in apply_specdir()
[all …]
/freebsd/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()