Lines Matching refs:lp
324 struct _obstack_chunk *lp; /* below addr of any objects in this chunk */ in _obstack_allocated_p() local
327 lp = (h)->chunk; in _obstack_allocated_p()
331 while (lp != 0 && ((void *) lp >= obj || (void *) (lp)->limit < obj)) in _obstack_allocated_p()
333 plp = lp->prev; in _obstack_allocated_p()
334 lp = plp; in _obstack_allocated_p()
336 return lp != 0; in _obstack_allocated_p()
347 struct _obstack_chunk *lp; /* below addr of any objects in this chunk */ in __obstack_free() local
350 lp = h->chunk; in __obstack_free()
354 while (lp != 0 && ((void *) lp >= obj || (void *) (lp)->limit < obj)) in __obstack_free()
356 plp = lp->prev; in __obstack_free()
357 CALL_FREEFUN (h, lp); in __obstack_free()
358 lp = plp; in __obstack_free()
363 if (lp) in __obstack_free()
366 h->chunk_limit = lp->limit; in __obstack_free()
367 h->chunk = lp; in __obstack_free()
383 struct _obstack_chunk *lp; in strong_alias() local
386 for (lp = h->chunk; lp != 0; lp = lp->prev) in strong_alias()
388 nbytes += lp->limit - (char *) lp; in strong_alias()