Lines Matching refs:strcache
31 struct strcache { struct
32 struct strcache *next; /* The next block of strings. */ argument
40 static struct strcache *strcache = NULL; argument
42 static struct strcache *
45 struct strcache *new; in new_cache()
46 new = (struct strcache *) xmalloc (sizeof (*new) + bufsize); in new_cache()
51 new->next = strcache; in new_cache()
52 strcache = new; in new_cache()
60 struct strcache *best = NULL; in add_string()
61 struct strcache *sp; in add_string()
73 for (sp = strcache; sp != NULL; sp = sp->next) in add_string()
137 struct strcache *sp; in strcache_iscached()
139 for (sp = strcache; sp != 0; sp = sp->next) in strcache_iscached()
188 const struct strcache *sp; in strcache_print_stats()
190 for (sp = strcache; sp != NULL; sp = sp->next) in strcache_print_stats()