Lines Matching refs:obj
301 int _obstack_allocated_p (struct obstack *h, POINTER obj);
304 _obstack_allocated_p (struct obstack *h, POINTER obj) in _obstack_allocated_p() argument
313 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj)) in _obstack_allocated_p()
330 _obstack_free (struct obstack *h, POINTER obj) in _obstack_free() argument
339 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj)) in _obstack_free()
350 h->object_base = h->next_free = (char *) (obj); in _obstack_free()
354 else if (obj != 0) in _obstack_free()
362 obstack_free (struct obstack *h, POINTER obj) in obstack_free() argument
371 while (lp != 0 && ((POINTER) lp >= obj || (POINTER) (lp)->limit < obj)) in obstack_free()
382 h->object_base = h->next_free = (char *) (obj); in obstack_free()
386 else if (obj != 0) in obstack_free()