Home
last modified time | relevance | path

Searched refs:pPool (Results 1 – 5 of 5) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dthreads.cpp1013 void CreateThreadPool(SWR_CONTEXT* pContext, THREAD_POOL* pPool) in CreateThreadPool() argument
1140 pPool->numThreads = 0; in CreateThreadPool()
1187 pPool->pApiThreadData = new (std::nothrow) THREAD_DATA[numAPIReservedThreads]; in CreateThreadPool()
1188 SWR_ASSERT(pPool->pApiThreadData); in CreateThreadPool()
1189 if (!pPool->pApiThreadData) in CreateThreadPool()
1195 memset(pPool->pApiThreadData, 0, sizeof(THREAD_DATA) * numAPIReservedThreads); in CreateThreadPool()
1198 pPool->numReservedThreads = numAPIReservedThreads; in CreateThreadPool()
1200 pPool->numThreads = numThreads; in CreateThreadPool()
1201 pContext->NumWorkerThreads = pPool->numThreads; in CreateThreadPool()
1203 pPool->pThreadData = new (std::nothrow) THREAD_DATA[pPool->numThreads]; in CreateThreadPool()
[all …]
Dthreads.h67 void CreateThreadPool(SWR_CONTEXT* pContext, THREAD_POOL* pPool);
68 void StartThreadPool(SWR_CONTEXT* pContext, THREAD_POOL* pPool);
69 void DestroyThreadPool(SWR_CONTEXT* pContext, THREAD_POOL* pPool);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_mem_alloc_wrapper.cpp79 VmaPool *pPool) in CreatePool() argument
90 return vmaCreatePool(allocator, &poolCreateInfo, pPool); in CreatePool()
Dvk_mem_alloc_wrapper.h34 VmaPool *pPool); in VK_DEFINE_HANDLE()
/third_party/skia/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h2981 VmaPool VMA_NULLABLE * VMA_NOT_NULL pPool);
7808 VkResult CreatePool(const VmaPoolCreateInfo* pCreateInfo, VmaPool* pPool);
16766 VkResult VmaAllocator_T::CreatePool(const VmaPoolCreateInfo* pCreateInfo, VmaPool* pPool) in CreatePool() argument
16789 *pPool = vma_new(this, VmaPool_T)(this, newCreateInfo, preferredBlockSize); in CreatePool()
16791 VkResult res = (*pPool)->m_BlockVector.CreateMinBlocks(); in CreatePool()
16794 vma_delete(this, *pPool); in CreatePool()
16795 *pPool = VMA_NULL; in CreatePool()
16802 (*pPool)->SetId(m_NextPoolId++); in CreatePool()
16803 VmaVectorInsertSorted<VmaPointerLess>(m_Pools, *pPool); in CreatePool()
17915 VmaPool* pPool) in vmaCreatePool() argument
[all …]