allocate           54 gc/include/gc_alloc.h     static T *allocate(size_t n)
allocate           55 gc/include/gc_alloc.h                 { return 0 == n? 0 : (T*) alloc::allocate(n * sizeof (T)); }
allocate           56 gc/include/gc_alloc.h     static T *allocate(void)
allocate           57 gc/include/gc_alloc.h                 { return (T*) alloc::allocate(sizeof (T)); }
allocate          176 gc/include/gc_alloc.h      	static void * allocate(size_t n)
allocate          244 gc/include/gc_alloc.h      	static void * allocate(size_t n)
allocate          309 gc/include/gc_alloc.h      	static void * allocate(size_t n) { return GC_malloc(n); }
allocate          321 gc/include/gc_alloc.h      	static void * allocate(size_t n) { return GC_malloc_uncollectable(n); }
allocate          340 gc/include/gc_alloc.h     static T *allocate(size_t n) \
allocate          343 gc/include/gc_alloc.h     static T *allocate(void) \
allocate          123 gc/include/gc_allocator.h   GC_Tp* allocate(size_type GC_n, const void* = 0) {
allocate          202 gc/include/gc_allocator.h   GC_Tp* allocate(size_type GC_n, const void* = 0) {
allocate          191 gc/include/new_gc_alloc.h      	static void * allocate(size_t n)
allocate          259 gc/include/new_gc_alloc.h      	static void * allocate(size_t n)
allocate          324 gc/include/new_gc_alloc.h      	static void * allocate(size_t n) { return GC_malloc(n); }
allocate          336 gc/include/new_gc_alloc.h      	static void * allocate(size_t n) { return GC_malloc_uncollectable(n); }
allocate          353 gc/include/new_gc_alloc.h     static T *allocate(size_t n) \
allocate          356 gc/include/new_gc_alloc.h     static T *allocate(void) \
allocate          204 gc/tests/test_cpp.cc       int *x = gc_allocator<int>().allocate(1);
allocate          205 gc/tests/test_cpp.cc       int **xptr = traceable_allocator<int *>().allocate(1);
allocate          208 gc/tests/test_cpp.cc           int *x = (int *)gc_alloc::allocate(sizeof(int));
allocate          210 gc/tests/test_cpp.cc           int *x = (int *)alloc::allocate(sizeof(int));
allocate          369 src/class.c        instance->allocate = NULL;  /* will be set when CPL is set */
allocate          411 src/class.c        if (c->allocate == NULL) {
allocate          415 src/class.c        return c->allocate(c, args[1]);
allocate          556 src/class.c        klass->allocate = NULL;
allocate          558 src/class.c            if ((*p)->allocate) {
allocate          559 src/class.c                if ((*p)->allocate != Scm_ObjectAllocate) {
allocate          560 src/class.c                    if (klass->allocate && klass->allocate != (*p)->allocate) {
allocate          563 src/class.c                    klass->allocate = (*p)->allocate;
allocate          576 src/class.c        if (!klass->allocate) {
allocate          577 src/class.c            klass->allocate = Scm_ObjectAllocate; /* default */
allocate          795 src/class.c        meta->allocate = class_allocate;
allocate         2572 src/class.c        fp->allocate = NULL;
allocate          462 src/gauche.h       ScmClassAllocateProc  allocate;
allocate          626 src/gauche.h           allocate,                                \
allocate          648 src/gauche.h                                printer, compare, serialize, allocate, cpa)
allocate          664 src/gauche.h                                printer, compare, serialize, allocate, cpa)