Home | History | Annotate | Download | only in libiberty

Lines Matching refs:small

49    We handle large and small allocation requests differently.  If we
64 contains small objects, this is NULL. */
75 hold small objects. */
204 struct objalloc_chunk *p, *small;
208 and set Q to the last small object chunk we see before P. */
209 small = NULL;
216 small = p;
234 /* The block is in a chunk containing small objects. We can
235 free every chunk through SMALL, because they have certainly
236 been allocated more recently. After SMALL, we will not see
237 any chunks containing small objects; we can free any big
248 if (small != NULL)
250 if (small == q)
251 small = NULL;
266 /* Now start allocating from this small block again. */
277 then start allocating from the next chunk containing small