• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/scsi/aic7xxx/aicasm/

Lines Matching refs:curnode

207 	symbol_node_t *curnode;
209 curnode = SLIST_FIRST(symlist);
210 while(curnode != NULL) {
211 if (strcmp(symname, curnode->symbol->name) == 0)
213 curnode = SLIST_NEXT(curnode, links);
215 return (curnode);
230 symbol_node_t *curnode;
251 curnode = SLIST_FIRST(symlist);
252 if (curnode == NULL
254 && (curnode->symbol->type > newnode->symbol->type
255 || (curnode->symbol->type == newnode->symbol->type
256 && (curnode->symbol->info.finfo->value >
258 || (!field && (curnode->symbol->info.rinfo->address >
265 if (SLIST_NEXT(curnode, links) == NULL) {
266 SLIST_INSERT_AFTER(curnode, newnode,
272 cursymbol = SLIST_NEXT(curnode, links)->symbol;
281 SLIST_INSERT_AFTER(curnode, newnode,
286 curnode = SLIST_NEXT(curnode, links);
436 aic_print_reg_dump_entry(FILE *dfile, symbol_node_t *curnode)
445 curnode->symbol->name);
447 num_tabs = 3 - (strlen(curnode->symbol->name) + 5) / 8;
452 curnode->symbol->info.finfo->value,
453 curnode->symbol->info.finfo->mask);
470 symbol_node_t *curnode;
532 SLIST_FOREACH(curnode, &registers, links) {
534 switch(curnode->symbol->type) {
544 fields = &curnode->symbol->info.rinfo->fields;
548 curnode);
555 curnode, num_entries);
566 curnode = SLIST_FIRST(&masks);
569 regnode = SLIST_FIRST(&curnode->symbol->info.finfo->symrefs);
572 SLIST_INSERT_AFTER(regnode, curnode, links);
579 curnode = SLIST_FIRST(&aliases);
582 regname = curnode->symbol->info.ainfo->parent->name;
584 SLIST_INSERT_AFTER(regnode, curnode, links);
589 symbol_node_t *curnode;
594 curnode = SLIST_FIRST(&registers);
596 switch(curnode->symbol->type) {
601 value = curnode->symbol->info.rinfo->address;
609 parent = curnode->symbol->info.ainfo->parent;
619 value = curnode->symbol->info.finfo->value;
632 tab_str, curnode->symbol->name, tab_str2,
634 free(curnode);
639 symbol_node_t *curnode;
641 curnode = SLIST_FIRST(&constants);
644 curnode->symbol->name,
645 curnode->symbol->info.cinfo->value);
646 free(curnode);
653 symbol_node_t *curnode;
655 curnode = SLIST_FIRST(&download_constants);
658 curnode->symbol->name,
659 curnode->symbol->info.cinfo->value);
660 free(curnode);
667 symbol_node_t *curnode;
669 curnode = SLIST_FIRST(&exported_labels);
672 curnode->symbol->name,
673 curnode->symbol->info.linfo->address);
674 free(curnode);