Lines Matching refs:lp
333 register struct _obstack_chunk *lp; /* below addr of any objects in this chunk */ in _obstack_allocated_p() local
336 lp = (h)->chunk; in _obstack_allocated_p()
340 while (lp != 0 && ((void *) lp >= obj || (void *) (lp)->limit < obj)) in _obstack_allocated_p()
342 plp = lp->prev; in _obstack_allocated_p()
343 lp = plp; in _obstack_allocated_p()
345 return lp != 0; in _obstack_allocated_p()
356 register struct _obstack_chunk *lp; /* below addr of any objects in this chunk */ in obstack_free() local
359 lp = h->chunk; in obstack_free()
363 while (lp != 0 && ((void *) lp >= obj || (void *) (lp)->limit < obj)) in obstack_free()
365 plp = lp->prev; in obstack_free()
366 CALL_FREEFUN (h, lp); in obstack_free()
367 lp = plp; in obstack_free()
372 if (lp) in obstack_free()
375 h->chunk_limit = lp->limit; in obstack_free()
376 h->chunk = lp; in obstack_free()
392 register struct _obstack_chunk* lp; in strong_alias() local
395 for (lp = h->chunk; lp != 0; lp = lp->prev) in strong_alias()
397 nbytes += lp->limit - (char *) lp; in strong_alias()