Lines Matching refs:list
69 static void print_list(FILE * f, struct string_list *list);
502 static void print_node(FILE * f, struct string_list *list) in print_node() argument
504 if (symbol_types[list->tag].n) { in print_node()
505 putc(symbol_types[list->tag].n, f); in print_node()
508 fputs(list->string, f); in print_node()
511 static void print_list(FILE * f, struct string_list *list) in print_list() argument
517 if (list == NULL) { in print_list()
522 tmp = list; in print_list()
530 (*tmp2--) = list; in print_list()
531 while ((list = list->next) != NULL) in print_list()
532 *(tmp2--) = list; in print_list()
542 struct string_list *list = sym->defn; in expand_and_crc_sym() local
547 if (!list) in expand_and_crc_sym()
550 tmp = list; in expand_and_crc_sym()
558 *(tmp2--) = list; in expand_and_crc_sym()
559 while ((list = list->next) != NULL) in expand_and_crc_sym()
560 *(tmp2--) = list; in expand_and_crc_sym()