Lines Matching refs:sp
61 struct strcache *sp;
73 for (sp = strcache; sp != NULL; sp = sp->next)
74 if (sp->bytesfree > len && (!best || best->bytesfree > sp->bytesfree))
75 best = sp;
137 struct strcache *sp;
139 for (sp = strcache; sp != 0; sp = sp->next)
140 if (str >= sp->buffer && str < sp->end)
188 const struct strcache *sp;
190 for (sp = strcache; sp != NULL; sp = sp->next)
192 int bf = sp->bytesfree;
193 int sz = (sp->end - sp->buffer) + bf;
196 numstrs += sp->count;