Home
last modified time | relevance | path

Searched refs:numAPIThreadsPerCore (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dthreads.cpp1027 uint32_t& numAPIThreadsPerCore = pContext->apiThreadInfo.numAPIThreadsPerCore; in CreateThreadPool() local
1055 numAPIThreadsPerCore = std::min(numAPIThreadsPerCore, numHWHyperThreads); in CreateThreadPool()
1057 if (0 == numAPIThreadsPerCore) in CreateThreadPool()
1059 numAPIThreadsPerCore = numHWHyperThreads; in CreateThreadPool()
1063 if (numAPIThreadsPerCore == 2 && numHyperThreads == 1) in CreateThreadPool()
1066 … numRemovedThreads = std::max(1U, (numRemovedThreads + numAPIThreadsPerCore - 1) / 2); in CreateThreadPool()
1181 if (numAPIThreadsPerCore > numHyperThreads && numReservedThreads) in CreateThreadPool()
Dapi.h207 … uint32_t numAPIThreadsPerCore; // 0 - means use all threads per core, else clamp to this number. member
Dapi.cpp122 pContext->apiThreadInfo.numAPIThreadsPerCore = 1; in SwrCreateContext()