Lines Matching refs:n
45 int n; member
353 struct string_list *n, *n2; in concat_list() local
357 for (va_start(ap, start); (n = va_arg(ap, struct string_list *));) { in concat_list()
358 for (n2 = n; n2->next; n2 = n2->next) in concat_list()
361 start = n; in concat_list()
381 struct string_list *res, *n; in copy_list_range() local
385 n = res = copy_node(start); in copy_list_range()
387 n->next = copy_node(start); in copy_list_range()
388 n = n->next; in copy_list_range()
390 n->next = NULL; in copy_list_range()
441 size_t n; in read_node() local
443 for (n = 0; n < ARRAY_SIZE(symbol_types); n++) { in read_node()
444 if (node.string[0] == symbol_types[n].n) { in read_node()
445 node.tag = n; in read_node()
494 if (symbol_types[list->tag].n) { in print_node()
495 putc(symbol_types[list->tag].n, f); in print_node()
586 struct string_list *n; in expand_and_crc_sym() local
591 n = concat_list(mk_node in expand_and_crc_sym()
598 add_symbol(cur->string, cur->tag, n, 0); in expand_and_crc_sym()
656 struct symbol *n = sym->expansion_trail; in export_symbol() local
675 sym = n; in export_symbol()
847 if (symbol_types[sym->type].n) { in main()
848 putc(symbol_types[sym->type].n, dumpfile); in main()