Lines Matching refs:strcache
31 struct strcache {
32 struct strcache *next; /* The next block of strings. */
40 static struct strcache *strcache = NULL;
42 static struct strcache *
45 struct strcache *new;
46 new = (struct strcache *) xmalloc (sizeof (*new) + bufsize);
51 new->next = strcache;
52 strcache = new;
60 struct strcache *best = NULL;
61 struct strcache *sp;
73 for (sp = strcache; sp != NULL; sp = sp->next)
137 struct strcache *sp;
139 for (sp = strcache; sp != 0; sp = sp->next)
188 const struct strcache *sp;
190 for (sp = strcache; sp != NULL; sp = sp->next)
210 printf (_("\n%s # of strings in strcache: %d\n"), prefix, numstrs);
211 printf (_("%s # of strcache buffers: %d\n"), prefix, numbuffs);
212 printf (_("%s strcache size: total = %d / max = %d / min = %d / avg = %d\n"),
214 printf (_("%s strcache free: total = %d / max = %d / min = %d / avg = %d\n"),