Home
last modified time | relevance | path

Searched refs:threadId (Results 1 - 17 of 17) sorted by relevance

/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeThreadSafeRingBuffer.cpp42 Message (deUint16 threadId, deUint16 payload) in Message()
43 : data((threadId << 16) | payload) in Message()
72 deUint16 threadId = msg.getThreadId(); in run() local
74 if (threadId == 0xffff) in run()
77 DE_TEST_ASSERT(de::inBounds<int>(threadId, 0, (int)m_lastPayload.size())); in run()
78 DE_TEST_ASSERT((m_lastPayload[threadId] == 0 && msg.getPayload() == 0) || m_lastPayload[threadId] < msg.getPayload()); in run()
80 m_lastPayload[threadId] = msg.getPayload(); in run()
81 m_payloadSum[threadId] += (deUint32)msg.getPayload(); in run()
85 deUint32 getPayloadSum (deUint16 threadId) cons
99 Producer(ThreadSafeRingBuffer<Message>& buffer, deUint16 threadId, int dataSize) Producer() argument
[all...]
H A DdeBlockBuffer.cpp44 Message (deUint16 threadId, deUint16 payload) in Message()
45 : data((threadId << 16) | payload) in Message()
85 deUint16 threadId = msg.getThreadId(); in run() local
87 if (threadId == 0xffff) in run()
102 DE_TEST_ASSERT(de::inBounds<int>(threadId, 0, (int)m_lastPayload.size())); in run()
103 DE_TEST_ASSERT((m_lastPayload[threadId] == 0 && msg.getPayload() == 0) || m_lastPayload[threadId] < msg.getPayload()); in run()
105 m_lastPayload[threadId] = msg.getPayload(); in run()
106 m_payloadSum[threadId] += (deUint32)msg.getPayload(); in run()
112 deUint32 getPayloadSum (deUint16 threadId) cons
126 Producer(MessageBuffer& buffer, deUint16 threadId, int numMessages) Producer() argument
[all...]
/third_party/node/lib/internal/
H A Dworker.js67 threadId,
131 `[${threadId}] create new worker`,
229 debug(`[${threadId}] created Worker with ID ${this.threadId}`);
290 debug(`[${threadId}] hears end event for Worker ${this.threadId}`);
299 debug(`[${threadId}] failing with custom error ${customErr} \
354 debug(`[${threadId}] explicitly closes stdout for ${this.threadId}`);
358 debug(`[${threadId}] explicitl
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/
H A DServer.cpp219 auto thread = lock.get(Thread::ID(req.threadId)); in Impl()
222 return dap::Error("Thread %d not found", req.threadId); in Impl()
323 if(auto thread = lock.get(Thread::ID(req.threadId))) in Impl()
326 event.threadId = req.threadId; in Impl()
341 event.threadId = threads.front()->id.value(); in Impl()
358 if(auto thread = lock.get(Thread::ID(req.threadId))) in Impl()
380 auto thread = lock.get(Thread::ID(req.threadId)); in Impl()
383 return dap::Error("Unknown thread %d", int(req.threadId)); in Impl()
395 auto thread = lock.get(Thread::ID(req.threadId)); in Impl()
[all...]
/third_party/node/lib/internal/main/
H A Dworker_thread.js27 threadId,
59 debug(`[${threadId}] is setting up worker child environment`);
143 debug(`[${threadId}] starts worker script ${filename} ` +
204 debug(`[${threadId}] gets uncaught exception`);
213 debug(`[${threadId}] uncaught exception handled = ${handled}`);
238 debug(`[${threadId}] uncaught exception serialized = ${!!serialized}`);
/third_party/skia/third_party/externals/dawn/src/tests/perf_tests/
H A DDawnPerfTestPlatform.cpp137 std::string threadId = stream.str(); in AcquireTraceEventBuffer() local
140 std::back_inserter(traceEventBuffer), [&threadId](TraceEvent ev) { in AcquireTraceEventBuffer()
141 ev.threadId = threadId; in AcquireTraceEventBuffer()
H A DDawnPerfTestPlatform.h50 std::string threadId; member
H A DDawnPerfTest.cpp63 << "\"tid\": " << traceEvent.threadId << ", " in DumpTraceEventsToJSONFile()
/third_party/node/lib/
H A Dworker_threads.js9 threadId,
33 threadId,
/third_party/node/test/addons/report-api/
H A Dtest.js37 assert.strictEqual(content.header.threadId, 0);
39 assert.strictEqual(content.header.threadId, null);
/third_party/lzma/C/
H A DThreads.c64 /* Windows Me/98/95: threadId parameter may not be NULL in _beginthreadex/CreateThread functions */ in Thread_Create()
68 DWORD threadId; in Thread_Create() local
69 *p = CreateThread(NULL, 0, func, param, 0, &threadId); in Thread_Create()
73 unsigned threadId; in Thread_Create()
74 *p = (HANDLE)(_beginthreadex(NULL, 0, func, param, 0, &threadId)); in Thread_Create()
92 /* Windows Me/98/95: threadId parameter may not be NULL in _beginthreadex/CreateThread functions */ in Thread_Create_With_Affinity()
95 unsigned threadId; in Thread_Create_With_Affinity()
96 h = (HANDLE)(_beginthreadex(NULL, 0, func, param, CREATE_SUSPENDED, &threadId)); in Thread_Create_With_Affinity()
/third_party/node/deps/npm/node_modules/write-file-atomic/lib/
H A Dindex.js16 const threadId = (function getId () {
21 return workerThreads.threadId
33 .hash(String(threadId))
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/
H A Dthread.cpp189 Affinity get(uint32_t threadId, Allocator* allocator) const override { in anyOf()
195 auto group = affinity[threadId % affinity.count()].windows.group; in anyOf()
220 Affinity get(uint32_t threadId, Allocator* allocator) const override { in oneOf()
225 return Affinity({affinity[threadId % affinity.count()]}, allocator); in oneOf()
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/
H A Dthread.h81 // affinity[threadId % affinity.count()]
87 MARL_EXPORT virtual Affinity get(uint32_t threadId,
/third_party/node/test/parallel/
H A Dtest-inspector-contexts.js38 expects = `Worker[${require('worker_threads').threadId}]`;
/third_party/node/test/common/
H A Dreport.js106 'reportVersion', 'networkInterfaces', 'threadId'];
116 assert(Number.isSafeInteger(header.threadId) || header.threadId === null);
/third_party/skia/third_party/vulkanmemoryallocator/include/
H A Dvk_mem_alloc.h7620 uint32_t threadId; member
15113 fprintf(m_File, "%u,%.3f,%u,vmaCreateAllocator\n", callParams.threadId, callParams.time, frameIndex);
15123 fprintf(m_File, "%u,%.3f,%u,vmaDestroyAllocator\n", callParams.threadId, callParams.time, frameIndex);
15133 fprintf(m_File, "%u,%.3f,%u,vmaCreatePool,%u,%u,%llu,%llu,%llu,%u,%p\n", callParams.threadId, callParams.time, frameIndex,
15150 fprintf(m_File, "%u,%.3f,%u,vmaDestroyPool,%p\n", callParams.threadId, callParams.time, frameIndex,
15165 fprintf(m_File, "%u,%.3f,%u,vmaAllocateMemory,%llu,%llu,%u,%u,%u,%u,%u,%u,%p,%p,%s\n", callParams.threadId, callParams.time, frameIndex,
15191 fprintf(m_File, "%u,%.3f,%u,vmaAllocateMemoryPages,%llu,%llu,%u,%u,%u,%u,%u,%u,%p,", callParams.threadId, callParams.time, frameIndex,
15218 fprintf(m_File, "%u,%.3f,%u,vmaAllocateMemoryForBuffer,%llu,%llu,%u,%u,%u,%u,%u,%u,%u,%u,%p,%p,%s\n", callParams.threadId, callParams.time, frameIndex,
15247 fprintf(m_File, "%u,%.3f,%u,vmaAllocateMemoryForImage,%llu,%llu,%u,%u,%u,%u,%u,%u,%u,%u,%p,%p,%s\n", callParams.threadId, callParams.time, frameIndex,
15271 fprintf(m_File, "%u,%.3f,%u,vmaFreeMemory,%p\n", callParams.threadId, callParam
[all...]

Completed in 34 milliseconds