Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dthreads.cpp839 void CreateThreadPool(SWR_CONTEXT* pContext, THREAD_POOL* pPool) in CreateThreadPool() argument
956 pPool->numThreads = 0; in CreateThreadPool()
961 pPool->numThreads = numThreads; in CreateThreadPool()
962 pContext->NumWorkerThreads = pPool->numThreads; in CreateThreadPool()
964 pPool->pThreadData = (THREAD_DATA *)malloc(pPool->numThreads * sizeof(THREAD_DATA)); in CreateThreadPool()
965 pPool->numaMask = 0; in CreateThreadPool()
967 pPool->pThreads = new THREAD_PTR[pPool->numThreads]; in CreateThreadPool()
977 pPool->pThreadData[workerId].workerId = workerId; in CreateThreadPool()
978 pPool->pThreadData[workerId].procGroupId = workerId % numProcGroups; in CreateThreadPool()
979 pPool->pThreadData[workerId].threadId = 0; in CreateThreadPool()
[all …]
Dthreads.h62 void CreateThreadPool(SWR_CONTEXT *pContext, THREAD_POOL *pPool);
63 void StartThreadPool(SWR_CONTEXT* pContext, THREAD_POOL* pPool);
64 void DestroyThreadPool(SWR_CONTEXT *pContext, THREAD_POOL *pPool);
/external/pdfium/core/fpdfapi/parser/
Dcpdf_string.cpp16 CPDF_String::CPDF_String(CFX_WeakPtr<CFX_ByteStringPool> pPool, in CPDF_String() argument
20 if (pPool) in CPDF_String()
21 m_String = pPool->Intern(m_String); in CPDF_String()
24 CPDF_String::CPDF_String(CFX_WeakPtr<CFX_ByteStringPool> pPool, in CPDF_String() argument
27 if (pPool) in CPDF_String()
28 m_String = pPool->Intern(m_String); in CPDF_String()
Dcpdf_name.cpp12 CPDF_Name::CPDF_Name(CFX_WeakPtr<CFX_ByteStringPool> pPool, in CPDF_Name() argument
15 if (pPool) in CPDF_Name()
16 m_Name = pPool->Intern(m_Name); in CPDF_Name()
Dcpdf_string.h21 CPDF_String(CFX_WeakPtr<CFX_ByteStringPool> pPool,
24 CPDF_String(CFX_WeakPtr<CFX_ByteStringPool> pPool, const CFX_WideString& str);
Dcpdf_array.cpp22 CPDF_Array::CPDF_Array(const CFX_WeakPtr<CFX_ByteStringPool>& pPool) in CPDF_Array() argument
23 : m_pPool(pPool) {} in CPDF_Array()
Dcpdf_name.h18 CPDF_Name(CFX_WeakPtr<CFX_ByteStringPool> pPool, const CFX_ByteString& str);
Dcpdf_dictionary.cpp25 CPDF_Dictionary::CPDF_Dictionary(const CFX_WeakPtr<CFX_ByteStringPool>& pPool) in CPDF_Dictionary() argument
26 : m_pPool(pPool) {} in CPDF_Dictionary()
Dcpdf_syntax_parser.h26 explicit CPDF_SyntaxParser(const CFX_WeakPtr<CFX_ByteStringPool>& pPool);
Dcpdf_dictionary.h30 explicit CPDF_Dictionary(const CFX_WeakPtr<CFX_ByteStringPool>& pPool);
Dcpdf_array.h28 explicit CPDF_Array(const CFX_WeakPtr<CFX_ByteStringPool>& pPool);
Dcpdf_syntax_parser.cpp43 const CFX_WeakPtr<CFX_ByteStringPool>& pPool) in CPDF_SyntaxParser() argument
48 m_pPool(pPool) {} in CPDF_SyntaxParser()
/external/pdfium/core/fpdfapi/font/
Dcpdf_fontencoding.cpp1676 CFX_WeakPtr<CFX_ByteStringPool> pPool) { in Realize() argument
1695 return pdfium::MakeUnique<CPDF_Name>(pPool, "WinAnsiEncoding"); in Realize()
1697 return pdfium::MakeUnique<CPDF_Name>(pPool, "MacRomanEncoding"); in Realize()
1699 return pdfium::MakeUnique<CPDF_Name>(pPool, "MacExpertEncoding"); in Realize()
1714 auto pDict = pdfium::MakeUnique<CPDF_Dictionary>(pPool); in Realize()
Dcpdf_fontencoding.h57 std::unique_ptr<CPDF_Object> Realize(CFX_WeakPtr<CFX_ByteStringPool> pPool);
/external/pdfium/core/fpdfdoc/
Dcpdf_filespec.cpp115 CPDF_FileSpec::CPDF_FileSpec(const CFX_WeakPtr<CFX_ByteStringPool>& pPool) { in CPDF_FileSpec() argument
116 m_pObj = new CPDF_Dictionary(pPool); in CPDF_FileSpec()
Dcpdf_filespec.h18 explicit CPDF_FileSpec(const CFX_WeakPtr<CFX_ByteStringPool>& pPool);
/external/pdfium/core/fpdfapi/page/
Dcpdf_streamparser.h27 const CFX_WeakPtr<CFX_ByteStringPool>& pPool);
Dcpdf_streamparser.cpp111 const CFX_WeakPtr<CFX_ByteStringPool>& pPool) in CPDF_StreamParser() argument
115 m_pPool(pPool) {} in CPDF_StreamParser()
/external/vulkan-validation-layers/layers/
Dcore_validation.cpp3802 DESCRIPTOR_POOL_STATE *pPool = getDescriptorPoolState(my_data, pool); in clearDescriptorPool() local
3805 for (auto ds : pPool->sets) { in clearDescriptorPool()
3808 pPool->sets.clear(); in clearDescriptorPool()
3810 for (uint32_t i = 0; i < pPool->availableDescriptorTypeCount.size(); ++i) { in clearDescriptorPool()
3811 pPool->availableDescriptorTypeCount[i] = pPool->maxDescriptorTypeCount[i]; in clearDescriptorPool()
3813 pPool->availableSets = pPool->maxSets; in clearDescriptorPool()
3890 auto pPool = getCommandPoolNode(my_data, pCB->createInfo.commandPool); in addCmd() local
3891 if (pPool) { in addCmd()
3892 …VkQueueFlags flags = my_data->phys_dev_properties.queue_family_properties[pPool->queueFamilyIndex]… in addCmd()
4877 auto pPool = getCommandPoolNode(dev_data, pCB->createInfo.commandPool); in validateQueueFamilyIndices() local
[all …]