Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dthreads.cpp717 THREAD_DATA *pThreadData = (THREAD_DATA*)pData; in workerThreadMain() local
718 SWR_CONTEXT *pContext = pThreadData->pContext; in workerThreadMain()
719 uint32_t threadId = pThreadData->threadId; in workerThreadMain()
720 uint32_t workerId = pThreadData->workerId; in workerThreadMain()
722 bindThread(pContext, threadId, pThreadData->procGroupId, pThreadData->forceBindProcGroup); in workerThreadMain()
726 uint32_t numaNode = pThreadData->numaId; in workerThreadMain()
964 pPool->pThreadData = (THREAD_DATA *)malloc(pPool->numThreads * sizeof(THREAD_DATA)); 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.h57 THREAD_DATA *pThreadData; member
Dapi.cpp125 uint32_t numaNode = pContext->threadPool.pThreadData ? in SwrCreateContext()
126 pContext->threadPool.pThreadData[i].numaId : 0; in SwrCreateContext()