/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | threads.cpp | 1013 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 …]
|
D | threads.h | 67 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);
|
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_string.cpp | 20 CPDF_String::CPDF_String(WeakPtr<ByteStringPool> pPool, in CPDF_String() argument 24 if (pPool) in CPDF_String() 25 m_String = pPool->Intern(m_String); in CPDF_String() 28 CPDF_String::CPDF_String(WeakPtr<ByteStringPool> pPool, WideStringView str) in CPDF_String() argument 30 if (pPool) in CPDF_String() 31 m_String = pPool->Intern(m_String); in CPDF_String()
|
D | cpdf_name.cpp | 13 CPDF_Name::CPDF_Name(WeakPtr<ByteStringPool> pPool, const ByteString& str) in CPDF_Name() argument 15 if (pPool) in CPDF_Name() 16 m_Name = pPool->Intern(m_Name); in CPDF_Name()
|
D | cpdf_string.h | 35 CPDF_String(WeakPtr<ByteStringPool> pPool, const ByteString& str, bool bHex); 36 CPDF_String(WeakPtr<ByteStringPool> pPool, WideStringView str);
|
D | cpdf_name.h | 30 CPDF_Name(WeakPtr<ByteStringPool> pPool, const ByteString& str);
|
D | cpdf_array.cpp | 26 CPDF_Array::CPDF_Array(const WeakPtr<ByteStringPool>& pPool) : m_pPool(pPool) {} in CPDF_Array() argument
|
D | cpdf_dictionary.cpp | 28 CPDF_Dictionary::CPDF_Dictionary(const WeakPtr<ByteStringPool>& pPool) in CPDF_Dictionary() argument 29 : m_pPool(pPool) {} in CPDF_Dictionary()
|
D | cpdf_dictionary.h | 126 explicit CPDF_Dictionary(const WeakPtr<ByteStringPool>& pPool);
|
D | cpdf_array.h | 144 explicit CPDF_Array(const WeakPtr<ByteStringPool>& pPool);
|
/external/pdfium/core/fpdfapi/font/ |
D | cpdf_fontencoding.cpp | 1680 WeakPtr<ByteStringPool> pPool) const { in Realize() 1713 return pdfium::MakeRetain<CPDF_Name>(pPool, pName); in Realize() 1726 auto pDict = pdfium::MakeRetain<CPDF_Dictionary>(pPool); in Realize()
|
D | cpdf_fontencoding.h | 53 RetainPtr<CPDF_Object> Realize(WeakPtr<ByteStringPool> pPool) const;
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_streamparser.h | 26 const WeakPtr<ByteStringPool>& pPool);
|
D | cpdf_streamparser.cpp | 127 const WeakPtr<ByteStringPool>& pPool) in CPDF_StreamParser() argument 128 : m_pPool(pPool), m_pBuf(span) {} in CPDF_StreamParser()
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | vk_mem_alloc_wrapper.cpp | 90 VmaPool *pPool) in CreatePool() argument 103 return vmaCreatePool(allocator, &poolCreateInfo, pPool); in CreatePool()
|
D | vk_mem_alloc_wrapper.h | 62 VmaPool *pPool); in VK_DEFINE_HANDLE()
|
/external/vulkan-validation-layers/layers/ |
D | core_validation.cpp | 3006 auto pPool = GetCommandPoolState(pCB->createInfo.commandPool); in ValidateQueueFamilyIndices() local 3009 if (pPool && queue_state) { in ValidateQueueFamilyIndices() 3010 if (pPool->queueFamilyIndex != queue_state->queueFamilyIndex) { in ValidateQueueFamilyIndices() 3015 … report_data->FormatHandle(pCB->commandBuffer).c_str(), pPool->queueFamilyIndex, in ValidateQueueFamilyIndices() 4746 bool CoreChecks::CheckCommandBuffersInFlight(const COMMAND_POOL_STATE *pPool, const char *action, c… in CheckCommandBuffersInFlight() argument 4748 for (auto cmd_buffer : pPool->commandBuffers) { in CheckCommandBuffersInFlight() 4789 auto pPool = GetCommandPoolState(commandPool); in PreCallRecordFreeCommandBuffers() local 4790 FreeCommandBufferStates(pPool, commandBufferCount, pCommandBuffers); in PreCallRecordFreeCommandBuffers() 6145 DESCRIPTOR_POOL_STATE *pPool = GetDescriptorPoolState(descriptorPool); in PreCallValidateResetDescriptorPool() local 6146 if (pPool != nullptr) { in PreCallValidateResetDescriptorPool() [all …]
|
D | vk_mem_alloc.h | 2376 VmaPool* pPool); 6678 VkResult CreatePool(const VmaPoolCreateInfo* pCreateInfo, VmaPool* pPool); 15004 VkResult VmaAllocator_T::CreatePool(const VmaPoolCreateInfo* pCreateInfo, VmaPool* pPool) in CreatePool() argument 15021 *pPool = vma_new(this, VmaPool_T)(this, newCreateInfo, preferredBlockSize); in CreatePool() 15023 VkResult res = (*pPool)->m_BlockVector.CreateMinBlocks(); in CreatePool() 15026 vma_delete(this, *pPool); in CreatePool() 15027 *pPool = VMA_NULL; in CreatePool() 15034 (*pPool)->SetId(m_NextPoolId++); in CreatePool() 15035 VmaVectorInsertSorted<VmaPointerLess>(m_Pools, *pPool); in CreatePool() 15851 VmaPool* pPool) in vmaCreatePool() argument [all …]
|
D | buffer_validation.cpp | 1978 auto pPool = GetCommandPoolState(cb_node->createInfo.commandPool); in GetScaledItg() local 1979 if (pPool) { in GetScaledItg() 1980 …granularity = GetPhysicalDeviceState()->queue_family_properties[pPool->queueFamilyIndex].minImageT… in GetScaledItg() 4977 const auto pPool = GetCommandPoolState(cb_node->createInfo.commandPool); in PreCallValidateCmdCopyImageToBuffer() local 4979 …VkQueueFlags queue_flags = GetPhysicalDeviceState()->queue_family_properties[pPool->queueFamilyInd… in PreCallValidateCmdCopyImageToBuffer() 5069 const auto pPool = GetCommandPoolState(cb_node->createInfo.commandPool); in PreCallValidateCmdCopyBufferToImage() local 5070 …VkQueueFlags queue_flags = GetPhysicalDeviceState()->queue_family_properties[pPool->queueFamilyInd… in PreCallValidateCmdCopyBufferToImage()
|
D | core_validation.h | 914 …bool CheckCommandBuffersInFlight(const COMMAND_POOL_STATE* pPool, const char* action, const char* …
|
/external/angle/third_party/vulkan_memory_allocator/include/ |
D | vk_mem_alloc.h | 1269 VmaPool VMA_NULLABLE * VMA_NOT_NULL pPool); 6716 VkResult CreatePool(const VmaPoolCreateInfo* pCreateInfo, VmaPool* pPool); 15927 VkResult VmaAllocator_T::CreatePool(const VmaPoolCreateInfo* pCreateInfo, VmaPool* pPool) in CreatePool() argument 15960 *pPool = vma_new(this, VmaPool_T)(this, newCreateInfo, preferredBlockSize); in CreatePool() 15962 VkResult res = (*pPool)->m_BlockVector.CreateMinBlocks(); in CreatePool() 15965 vma_delete(this, *pPool); in CreatePool() 15966 *pPool = VMA_NULL; in CreatePool() 15973 (*pPool)->SetId(m_NextPoolId++); in CreatePool() 15974 m_Pools.PushBack(*pPool); in CreatePool() 17205 VmaPool* pPool) in vmaCreatePool() argument [all …]
|
/external/skia/vma_android/include/ |
D | vk_mem_alloc.h | 1714 VmaPool VMA_NULLABLE* VMA_NOT_NULL pPool); 11516 VkResult CreatePool(const VmaPoolCreateInfo* pCreateInfo, VmaPool* pPool); 15272 VkResult VmaAllocator_T::CreatePool(const VmaPoolCreateInfo* pCreateInfo, VmaPool* pPool) in CreatePool() argument 15305 *pPool = vma_new(this, VmaPool_T)(this, newCreateInfo, preferredBlockSize); in CreatePool() 15307 VkResult res = (*pPool)->m_BlockVector.CreateMinBlocks(); in CreatePool() 15310 vma_delete(this, *pPool); in CreatePool() 15311 *pPool = VMA_NULL; in CreatePool() 15318 (*pPool)->SetId(m_NextPoolId++); in CreatePool() 15319 m_Pools.PushBack(*pPool); in CreatePool() 16445 VmaPool* pPool) in vmaCreatePool() argument [all …]
|