alloc              42 gc/include/gc_alloc.h #   define __ALLOC alloc
alloc              50 gc/include/gc_alloc.h template<class T, class alloc>
alloc              55 gc/include/gc_alloc.h                 { return 0 == n? 0 : (T*) alloc::allocate(n * sizeof (T)); }
alloc              57 gc/include/gc_alloc.h                 { return (T*) alloc::allocate(sizeof (T)); }
alloc              59 gc/include/gc_alloc.h                 { if (0 != n) alloc::deallocate(p, n * sizeof (T)); }
alloc              61 gc/include/gc_alloc.h                 { alloc::deallocate(p, sizeof (T)); }
alloc             338 gc/include/gc_alloc.h class simple_alloc<T, alloc> { \
alloc             342 gc/include/gc_alloc.h 			 (T*) alloc::ptr_free_allocate(n * sizeof (T)); } \
alloc             344 gc/include/gc_alloc.h 	{ return (T*) alloc::ptr_free_allocate(sizeof (T)); } \
alloc             346 gc/include/gc_alloc.h 	{ if (0 != n) alloc::ptr_free_deallocate(p, n * sizeof (T)); } \
alloc             348 gc/include/gc_alloc.h 	{ alloc::ptr_free_deallocate(p, sizeof (T)); } \
alloc             351 gc/include/new_gc_alloc.h class simple_alloc<T, alloc> { \
alloc             355 gc/include/new_gc_alloc.h 			 reinterpret_cast<T*>(alloc::ptr_free_allocate(n * sizeof (T))); } \
alloc             357 gc/include/new_gc_alloc.h 	{ return reinterpret_cast<T*>(alloc::ptr_free_allocate(sizeof (T))); } \
alloc             359 gc/include/new_gc_alloc.h 	{ if (0 != n) alloc::ptr_free_deallocate(p, n * sizeof (T)); } \
alloc             361 gc/include/new_gc_alloc.h 	{ alloc::ptr_free_deallocate(p, sizeof (T)); } \
alloc             210 gc/tests/test_cpp.cc           int *x = (int *)alloc::allocate(sizeof(int));
alloc             165 src/list.c                 if (!alloc)