HomeSort by relevance Sort by last modified time
    Searched defs:MallocAllocator (Results 1 - 3 of 3) sorted by null

  /art/runtime/base/
allocator.cc 28 class MallocAllocator FINAL : public Allocator {
30 explicit MallocAllocator() {}
31 ~MallocAllocator() {}
42 DISALLOW_COPY_AND_ASSIGN(MallocAllocator);
45 MallocAllocator g_malloc_allocator;
  /frameworks/compile/mclinker/include/mcld/Support/
Allocators.h 305 class MallocAllocator {
317 typedef MallocAllocator<OtherDataType> other;
321 MallocAllocator() throw() {}
323 MallocAllocator(const MallocAllocator&) throw() {}
325 ~MallocAllocator() throw() {}
350 class MallocAllocator<void> {
362 typedef MallocAllocator<OtherDataType> other;
366 MallocAllocator() throw() {}
368 MallocAllocator(const MallocAllocator&) throw() {
    [all...]
  /external/llvm/include/llvm/Support/
Allocator.h 11 /// This file defines the MallocAllocator and BumpPtrAllocator interfaces. Both
89 class MallocAllocator : public AllocatorBase<MallocAllocator> {
99 using AllocatorBase<MallocAllocator>::Allocate;
106 using AllocatorBase<MallocAllocator>::Deallocate;
130 /// The BumpPtrAllocatorImpl template defaults to using a MallocAllocator
133 template <typename AllocatorT = MallocAllocator, size_t SlabSize = 4096,

Completed in 283 milliseconds