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

  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
arena.h 50 class DefaultAllocator
74 struct CachingAllocatorT : DefaultAllocator
139 return this->DefaultAllocator::AllocateAligned(size, align);
168 this->DefaultAllocator::Free(pBlock);
232 this->DefaultAllocator::Free(pBlock);
239 this->DefaultAllocator::Free(pBlock);
367 template<typename T = DefaultAllocator, size_t BlockSizeT = 128 * sizeof(KILOBYTE)>
487 DefaultAllocator m_defAllocator;
491 using StdArena = TArena<DefaultAllocator>;
  /external/libcxxabi/src/
cxa_demangle.cpp 306 class DefaultAllocator {
327 using Demangler = itanium_demangle::ManglingParser<DefaultAllocator>;
  /external/v8/tools/clang/blink_gc_plugin/tests/heap/
stubs.h 35 class DefaultAllocator {
42 typename Allocator = DefaultAllocator>
58 typename Allocator = DefaultAllocator>
72 typename Allocator = DefaultAllocator>
86 typename Allocator = DefaultAllocator>
100 typename Allocator = DefaultAllocator>
114 typename Allocator = DefaultAllocator>
125 typename Allocator = DefaultAllocator>
  /external/flatbuffers/include/flatbuffers/
flatbuffers.h 475 // DefaultAllocator uses new/delete to allocate memory regions
476 class DefaultAllocator : public Allocator {
497 : DefaultAllocator().allocate(size);
502 else DefaultAllocator().deallocate(p, size);
511 : DefaultAllocator().reallocate_downward(old_p, old_size, new_size,
773 // Returns nullptr if using the DefaultAllocator.
916 /// `DefaultAllocator`.
    [all...]

Completed in 3322 milliseconds