Home
last modified time | relevance | path

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

/freebsd-13-stable/sys/dev/aic7xxx/aicasm/
HDaicasm_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 …]
/freebsd-13-stable/usr.sbin/makefs/
HDwalk.c342 NODE *curnode; in apply_specdir() local
370 for (curnode = specnode->child; curnode != NULL; in apply_specdir()
371 curnode = curnode->next) { in apply_specdir()
372 if (strcmp(curnode->name, curfsnode->name) == 0) in apply_specdir()
375 if (curnode == NULL) { in apply_specdir()
385 for (curnode = specnode->child; curnode != NULL; in apply_specdir()
386 curnode = curnode->next) { in apply_specdir()
389 curnode->name); in apply_specdir()
397 if (strcmp(curnode->name, curfsnode->name) == 0) in apply_specdir()
401 curnode->name) >= sizeof(path)) in apply_specdir()
[all …]
/freebsd-13-stable/contrib/one-true-awk/
HDlib.c665 extern Node *curnode; in error()
675 if (curnode) in error()
676 fprintf(stderr, " source line number %d", curnode->lineno); in error()
HDrun.c99 Node *curnode = NULL; /* the node being executed, for debugging */ variable
153 curnode = a; in execute()