Home | History | Annotate | Download | only in src

Lines Matching defs:Allocator

37 // We use a user-defined allocator/de-allocator so that we can use
105 typedef void* (*Allocator)(size_t size);
109 // Create an AddressMap that uses the specified allocator/deallocator.
110 // The allocator/deallocator should behave like malloc/free.
111 // For instance, the allocator does not need to return initialized memory.
112 AddressMap(Allocator alloc, DeAllocator dealloc);
243 // pass in custom memory allocator/deallocator routines.
250 Allocator alloc_; // The allocator
270 AddressMap<Value>::AddressMap(Allocator alloc, DeAllocator dealloc)