Lines Matching refs:list
70 static void print_list(FILE * f, struct string_list *list);
503 static void print_node(FILE * f, struct string_list *list) in print_node() argument
505 if (symbol_types[list->tag].n) { in print_node()
506 putc(symbol_types[list->tag].n, f); in print_node()
509 fputs(list->string, f); in print_node()
512 static void print_list(FILE * f, struct string_list *list) in print_list() argument
518 if (list == NULL) { in print_list()
523 tmp = list; in print_list()
531 (*tmp2--) = list; in print_list()
532 while ((list = list->next) != NULL) in print_list()
533 *(tmp2--) = list; in print_list()
543 struct string_list *list = sym->defn; in expand_and_crc_sym() local
548 if (!list) in expand_and_crc_sym()
551 tmp = list; in expand_and_crc_sym()
559 *(tmp2--) = list; in expand_and_crc_sym()
560 while ((list = list->next) != NULL) in expand_and_crc_sym()
561 *(tmp2--) = list; in expand_and_crc_sym()