Home | History | Annotate | Download | only in libiberty

Lines Matching defs:small

49    We handle large and small allocation requests differently.  If we
64 contains small objects, this is NULL. */
75 hold small objects. */
200 struct objalloc_chunk *p, *small;
204 and set Q to the last small object chunk we see before P. */
205 small = NULL;
212 small = p;
230 /* The block is in a chunk containing small objects. We can
231 free every chunk through SMALL, because they have certainly
232 been allocated more recently. After SMALL, we will not see
233 any chunks containing small objects; we can free any big
244 if (small != NULL)
246 if (small == q)
247 small = NULL;
262 /* Now start allocating from this small block again. */
273 then start allocating from the next chunk containing small