Lines Matching refs:list
57 static void print_list(FILE * f, struct string_list *list);
492 static void print_node(FILE * f, struct string_list *list) in print_node() argument
494 if (symbol_types[list->tag].n) { in print_node()
495 putc(symbol_types[list->tag].n, f); in print_node()
498 fputs(list->string, f); in print_node()
501 static void print_list(FILE * f, struct string_list *list) in print_list() argument
507 if (list == NULL) { in print_list()
512 tmp = list; in print_list()
520 (*tmp2--) = list; in print_list()
521 while ((list = list->next) != NULL) in print_list()
522 *(tmp2--) = list; in print_list()
532 struct string_list *list = sym->defn; in expand_and_crc_sym() local
537 if (!list) in expand_and_crc_sym()
540 tmp = list; in expand_and_crc_sym()
548 *(tmp2--) = list; in expand_and_crc_sym()
549 while ((list = list->next) != NULL) in expand_and_crc_sym()
550 *(tmp2--) = list; in expand_and_crc_sym()