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.cpp1130 uint32_t& numAPIThreadsPerCore = pContext->apiThreadInfo.numAPIThreadsPerCore; in CreateThreadPool() local
1158 numAPIThreadsPerCore = std::min(numAPIThreadsPerCore, numHWHyperThreads); in CreateThreadPool()
1160 if (0 == numAPIThreadsPerCore) in CreateThreadPool()
1162 numAPIThreadsPerCore = numHWHyperThreads; in CreateThreadPool()
1166 if (numAPIThreadsPerCore == 2 && numHyperThreads == 1) in CreateThreadPool()
1170 std::max(1U, (numRemovedThreads + numAPIThreadsPerCore - 1) / 2); in CreateThreadPool()
1327 if (numAPIThreadsPerCore > numHyperThreads && numReservedThreads) in CreateThreadPool()
Dapi.h230 uint32_t numAPIThreadsPerCore; // 0 - means use all threads per core, else clamp to this number. member
Dapi.cpp137 pContext->apiThreadInfo.numAPIThreadsPerCore = 1; in SwrCreateContext()