Home
last modified time | relevance | path

Searched refs:PoolAllocator (Results 1 – 18 of 18) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/common/
DPoolAlloc.cpp158 PoolAllocator::PoolAllocator(int growthIncrement, int allocationAlignment) in PoolAllocator() function in angle::PoolAllocator
172 void PoolAllocator::initialize(int pageSize, int alignment) in initialize()
214 PoolAllocator::~PoolAllocator() in ~PoolAllocator()
268 void PoolAllocator::push() in push()
288 void PoolAllocator::pop() in pop()
331 void PoolAllocator::popAll() in popAll()
337 void *PoolAllocator::allocate(size_t numBytes) in allocate()
417 uint8_t *PoolAllocator::allocateNewPage(size_t numBytes) in allocateNewPage()
453 void *PoolAllocator::initializeAllocation(uint8_t *memory, size_t numBytes) in initializeAllocation()
464 void PoolAllocator::lock() in lock()
[all …]
DPoolAlloc.h56 class PoolAllocator : angle::NonCopyable
64 PoolAllocator(int growthIncrement = 8 * 1024, int allocationAlignment = kDefaultAlignment);
69 ~PoolAllocator();
DPoolAlloc_unittest.cpp22 PoolAllocator poolAllocator; in TEST()
62 PoolAllocator poolAllocator(4096, alignment); in TEST_P()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DPoolAlloc.cpp30 angle::PoolAllocator *GetGlobalPoolAllocator() in GetGlobalPoolAllocator()
33 return static_cast<angle::PoolAllocator *>(GetTLSValue(PoolIndex)); in GetGlobalPoolAllocator()
36 void SetGlobalPoolAllocator(angle::PoolAllocator *poolAllocator) in SetGlobalPoolAllocator()
DPoolAlloc.h29 extern angle::PoolAllocator *GetGlobalPoolAllocator();
30 extern void SetGlobalPoolAllocator(angle::PoolAllocator *poolAllocator);
99 angle::PoolAllocator &getAllocator() const { return *GetGlobalPoolAllocator(); } in getAllocator()
DCompiler.h78 angle::PoolAllocator allocator;
DCompiler.cpp212 TScopedPoolAllocator(angle::PoolAllocator *allocator) : mAllocator(allocator) in TScopedPoolAllocator()
224 angle::PoolAllocator *mAllocator;
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
DCompilerPerf.cpp199 angle::PoolAllocator allocator; in IsPlatformAvailable()
263 angle::PoolAllocator mAllocator;
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/
DShaderCompileTreeTest.h56 angle::PoolAllocator mAllocator;
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/
DImmutableString_test.cpp33 angle::PoolAllocator allocator;
DType_test.cpp22 angle::PoolAllocator allocator; in TEST()
DIntermNode_test.cpp134 angle::PoolAllocator allocator;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DVulkanSecondaryCommandBuffer.cpp57 angle::PoolAllocator *allocator) in initialize()
DVulkanSecondaryCommandBuffer.h19 class PoolAllocator; variable
49 angle::PoolAllocator *allocator);
DSecondaryCommandBuffer.h716 angle::PoolAllocator *allocator) in initialize()
850 angle::PoolAllocator *mAllocator;
Dvk_helpers.h1254 angle::PoolAllocator mAllocator;
/third_party/skia/third_party/externals/d3d12allocator/src/
DD3D12MemAlloc.cpp1385 class PoolAllocator class
1387 D3D12MA_CLASS_NO_COPY(PoolAllocator)
1390 PoolAllocator(const ALLOCATION_CALLBACKS& allocationCallbacks, UINT firstBlockCapacity);
1391 ~PoolAllocator() { Clear(); } in ~PoolAllocator()
1418 PoolAllocator<T>::PoolAllocator(const ALLOCATION_CALLBACKS& allocationCallbacks, UINT firstBlockCap… in PoolAllocator() function in D3D12MA::PoolAllocator
1427 void PoolAllocator<T>::Clear() in Clear()
1437 template<typename... Types> T* PoolAllocator<T>::Alloc(Types... args) in Alloc()
1463 void PoolAllocator<T>::Free(T* ptr) in Free()
1487 typename PoolAllocator<T>::ItemBlock& PoolAllocator<T>::CreateNewBlock() in CreateNewBlock()
1734 PoolAllocator<Item> m_ItemAllocator;
[all …]
DD3D12MemAlloc.h878 template<typename T> friend class PoolAllocator; variable