Searched refs:threadInfo (Results 1 – 10 of 10) sorted by relevance
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | threads.cpp | 260 …if (pContext->threadInfo.SINGLE_THREADED || (pContext->threadInfo.MAX_WORKER_THREADS && bindProcGr… in bindThread() 287 if (!bindProcGroup && !pContext->threadInfo.MAX_WORKER_THREADS) in bindThread() 786 uint32_t numaNode = pThreadData->numaId - pContext->threadInfo.BASE_NUMA_NODE; in workerThreadMain() 923 if (!pContext->threadInfo.MAX_WORKER_THREADS) in CreateThreadPool() 949 if (numHyperThreads > pContext->threadInfo.BASE_THREAD) in CreateThreadPool() 951 numHyperThreads -= pContext->threadInfo.BASE_THREAD; in CreateThreadPool() 958 pContext->threadInfo.BASE_THREAD, in CreateThreadPool() 960 pContext->threadInfo.BASE_THREAD = 0; in CreateThreadPool() 963 if (pContext->threadInfo.MAX_THREADS_PER_CORE) in CreateThreadPool() 965 numHyperThreads = std::min(numHyperThreads, pContext->threadInfo.MAX_THREADS_PER_CORE); in CreateThreadPool() [all …]
|
D | api.cpp | 100 pContext->threadInfo = *pCreateInfo->pThreadInfo; in SwrCreateContext() 104 pContext->threadInfo.MAX_WORKER_THREADS = KNOB_MAX_WORKER_THREADS; in SwrCreateContext() 105 pContext->threadInfo.BASE_NUMA_NODE = KNOB_BASE_NUMA_NODE; in SwrCreateContext() 106 pContext->threadInfo.BASE_CORE = KNOB_BASE_CORE; in SwrCreateContext() 107 pContext->threadInfo.BASE_THREAD = KNOB_BASE_THREAD; in SwrCreateContext() 108 pContext->threadInfo.MAX_NUMA_NODES = KNOB_MAX_NUMA_NODES; in SwrCreateContext() 109 pContext->threadInfo.MAX_CORES_PER_NUMA_NODE = KNOB_MAX_CORES_PER_NUMA_NODE; in SwrCreateContext() 110 pContext->threadInfo.MAX_THREADS_PER_CORE = KNOB_MAX_THREADS_PER_CORE; in SwrCreateContext() 111 pContext->threadInfo.SINGLE_THREADED = KNOB_SINGLE_THREADED; in SwrCreateContext() 233 if (pContext->threadInfo.SINGLE_THREADED) in QueueWork()
|
D | tilemgr.cpp | 103 …hotTile.pBuffer = (uint8_t*)AllocHotTileMem(size, 64, numaNode + pContext->threadInfo.BASE_NUMA_NO… in GetHotTile() 127 …hotTile.pBuffer = (uint8_t*)AllocHotTileMem(size, 64, numaNode + pContext->threadInfo.BASE_NUMA_NO… in GetHotTile()
|
D | context.h | 482 SWR_THREADING_INFO threadInfo; member
|
/external/perfetto/ui/src/frontend/ |
D | slice_panel.ts | 30 const threadInfo = globals.threads.get(attrs.utid); constant 32 if (threadInfo && sliceInfo.ts && sliceInfo.dur) { 37 m('tr', m('th', `PID`), m('td', `${threadInfo.pid}`)), 40 m('td', `${threadInfo.procName}`)), 41 m('tr', m('th', `TID`), m('td', `${threadInfo.tid}`)), 44 m('td', `${threadInfo.threadName}`)), 66 const threadInfo = globals.threads.get(details.wakerUtid); constant 87 if (threadInfo) { 93 const processText = `P: ${threadInfo.procName} [${threadInfo.pid}]`; 94 const threadText = `T: ${threadInfo.threadName} [${threadInfo.tid}]`;
|
D | thread_state_panel.ts | 32 const threadInfo = globals.threads.get(attrs.utid); constant 33 if (threadInfo) { 50 m('td', `${threadInfo.procName} [${threadInfo.pid}]`)),
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
D | ResumeTest.java | 312 for (ThreadInfo threadInfo : threadInfos) { in createThreadInfos() 313 if (threadInfo.threadName.equals(threadName) ) { in createThreadInfos() 314 threadInfo.threadId = threadID; in createThreadInfos() 322 for (ThreadInfo threadInfo : threadInfos) { in createThreadInfos() 323 if (threadInfo.threadId == 0) { in createThreadInfos() 327 + threadInfo.threadName); in createThreadInfos() 354 for (ThreadInfo threadInfo : threadInfos) { in checkThreadStatus() 356 + threadInfo.threadId in checkThreadStatus() 357 + " (" + threadInfo.threadName + ")"); in checkThreadStatus() 363 packet.setNextValueAsThreadID(threadInfo.threadId); in checkThreadStatus() [all …]
|
/external/perfetto/ui/src/tracks/cpu_slices/ |
D | frontend.ts | 133 const threadInfo = globals.threads.get(utid); constant 140 if (threadInfo) { 141 if (threadInfo.pid) { 142 pid = threadInfo.pid; 143 const procName = threadInfo.procName || ''; 144 title = `${procName} [${threadInfo.pid}]`; 145 subTitle = `${threadInfo.threadName} [${threadInfo.tid}]`; 147 title = `${threadInfo.threadName} [${threadInfo.tid}]`; 154 const color = colorForThread(threadInfo); 294 const threadInfo = globals.threads.get(hoveredUtid); constant [all …]
|
/external/gemmlowp/profiling/ |
D | instrumentation.h | 182 ThreadInfo* threadInfo = static_cast<ThreadInfo*>(threadInfoPtr); in ThreadLocalThreadInfo() local 183 if (threadInfo) { in ThreadLocalThreadInfo() 184 delete threadInfo; in ThreadLocalThreadInfo() local 190 ThreadInfo* threadInfo = static_cast<ThreadInfo*>(pthread_getspecific(key)); in ThreadLocalThreadInfo() local 191 if (!threadInfo) { in ThreadLocalThreadInfo() 192 threadInfo = new ThreadInfo(); in ThreadLocalThreadInfo() 193 pthread_setspecific(key, threadInfo); in ThreadLocalThreadInfo() 195 return *threadInfo; in ThreadLocalThreadInfo()
|
/external/perfetto/ui/src/tracks/process_scheduling/ |
D | frontend.ts | 127 const threadInfo = globals.threads.get(utid); constant 128 const pid = (threadInfo ? threadInfo.pid : -1) || -1; 133 const color = colorForThread(threadInfo); 200 const threadInfo = globals.threads.get(utid); constant 201 const pid = threadInfo ? (threadInfo.pid ? threadInfo.pid : -1) : -1;
|