Lines Matching refs:n
57 int n; member
365 struct string_list *n, *n2; in concat_list() local
369 for (va_start(ap, start); (n = va_arg(ap, struct string_list *));) { in concat_list()
370 for (n2 = n; n2->next; n2 = n2->next) in concat_list()
373 start = n; in concat_list()
393 struct string_list *res, *n; in copy_list_range() local
397 n = res = copy_node(start); in copy_list_range()
399 n->next = copy_node(start); in copy_list_range()
400 n = n->next; in copy_list_range()
402 n->next = NULL; in copy_list_range()
451 int n; in read_node() local
453 for (n = 0; n < ARRAY_SIZE(symbol_types); n++) { in read_node()
454 if (node.string[0] == symbol_types[n].n) { in read_node()
455 node.tag = n; in read_node()
504 if (symbol_types[list->tag].n) { in print_node()
505 putc(symbol_types[list->tag].n, f); in print_node()
596 struct string_list *n; in expand_and_crc_sym() local
601 n = concat_list(mk_node in expand_and_crc_sym()
608 add_symbol(cur->string, cur->tag, n, 0); in expand_and_crc_sym()
666 struct symbol *n = sym->expansion_trail; in export_symbol() local
685 sym = n; in export_symbol()
854 if (symbol_types[sym->type].n) { in main()
855 putc(symbol_types[sym->type].n, dumpfile); in main()