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

  /external/swiftshader/third_party/LLVM/lib/Support/
Allocator.cpp 162 MallocSlabAllocator BumpPtrAllocator::DefaultSlabAllocator =
163 MallocSlabAllocator();
167 MallocSlabAllocator::~MallocSlabAllocator() { }
169 MemSlab *MallocSlabAllocator::Allocate(size_t Size) {
176 void MallocSlabAllocator::Deallocate(MemSlab *Slab) {
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Allocator.h 71 /// MallocSlabAllocator - The default slab allocator for the bump allocator
74 class MallocSlabAllocator : public SlabAllocator {
80 MallocSlabAllocator() : Allocator() { }
81 virtual ~MallocSlabAllocator();
103 /// defaults to MallocSlabAllocator, which wraps malloc, but it could be
136 static MallocSlabAllocator DefaultSlabAllocator;

Completed in 1068 milliseconds