Lines Matching refs:lp
321 register struct _obstack_chunk *lp; /* below addr of any objects in this chunk */ in _obstack_allocated_p() local
324 lp = (h)->chunk; in _obstack_allocated_p()
328 while (lp != 0 && ((void *) lp >= obj || (void *) (lp)->limit < obj)) in _obstack_allocated_p()
330 plp = lp->prev; in _obstack_allocated_p()
331 lp = plp; in _obstack_allocated_p()
333 return lp != 0; in _obstack_allocated_p()
344 register struct _obstack_chunk *lp; /* below addr of any objects in this chunk */ in __obstack_free() local
347 lp = h->chunk; in __obstack_free()
351 while (lp != 0 && ((void *) lp >= obj || (void *) (lp)->limit < obj)) in __obstack_free()
353 plp = lp->prev; in __obstack_free()
354 CALL_FREEFUN (h, lp); in __obstack_free()
355 lp = plp; in __obstack_free()
360 if (lp) in __obstack_free()
363 h->chunk_limit = lp->limit; in __obstack_free()
364 h->chunk = lp; in __obstack_free()
380 register struct _obstack_chunk* lp; in strong_alias() local
383 for (lp = h->chunk; lp != 0; lp = lp->prev) in strong_alias()
385 nbytes += lp->limit - (char *) lp; in strong_alias()