Searched refs:freefun (Results 1 - 2 of 2) sorted by relevance

/haiku/src/system/libroot/posix/glibc/extensions/
H A Dobstack.c128 (*(h)->freefun) ((h)->extra_arg, (old_chunk)); \
130 (*(void (*) (void *)) (h)->freefun) ((old_chunk)); \
141 (*(h)->freefun) ((h)->extra_arg, (old_chunk)); \
143 (*(void (*) ()) (h)->freefun) ((old_chunk)); \
157 _obstack_begin (h, size, alignment, chunkfun, freefun)
163 void (*freefun) (void *);
166 void (*freefun) ();
192 h->freefun = (void (*) (void *, struct _obstack_chunk *)) freefun;
195 h->freefun
[all...]
H A Dobstack.h179 void (*freefun) (void *, struct _obstack_chunk *);
183 void (*freefun) (); /* User's function to free a chunk. */
307 # define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \
310 (void (*) (void *)) (freefun))
312 # define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, arg) \
315 (void (*) (void *, void *)) (freefun), (arg))
321 ((h) -> freefun = (void (*)(void *, struct _obstack_chunk *)) (newfreefun))
335 # define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \
338 (void (*) ()) (freefun))
340 # define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, ar
178 void (*freefun) (void *, struct _obstack_chunk *); member in struct:obstack
182 void (*freefun) (); /* User's function to free a chunk. */ member in struct:obstack
[all...]

Completed in 65 milliseconds