/third_party/skia/src/core/ |
D | SkSharedMutex.cpp | 82 bool find(SkThreadID threadID) const { in find() 84 if (t == threadID) return true; in find() 90 bool tryAdd(SkThreadID threadID) { in tryAdd() argument 92 if (t == threadID) return false; in tryAdd() 94 fThreadIDs.append(1, &threadID); in tryAdd() 98 bool tryRemove(SkThreadID threadID) { in tryRemove() argument 100 if (fThreadIDs[i] == threadID) { in tryRemove() 130 SkThreadID threadID(SkGetThreadID()); in acquire() local 136 SkASSERTF(!fCurrentShared->find(threadID), in acquire() 137 "Thread %" PRIx64 " already has an shared lock\n", threadID); in acquire() [all …]
|
/third_party/flutter/skia/src/core/ |
D | SkSharedMutex.cpp | 80 bool find(SkThreadID threadID) const { in find() 82 if (t == threadID) return true; in find() 88 bool tryAdd(SkThreadID threadID) { in tryAdd() argument 90 if (t == threadID) return false; in tryAdd() 92 fThreadIDs.append(1, &threadID); in tryAdd() 96 bool tryRemove(SkThreadID threadID) { in tryRemove() argument 98 if (fThreadIDs[i] == threadID) { in tryRemove() 128 SkThreadID threadID(SkGetThreadID()); in acquire() local 134 SkASSERTF(!fCurrentShared->find(threadID), in acquire() 135 "Thread %lx already has an shared lock\n", threadID); in acquire() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
D | trace.cpp | 38 uint64_t threadFiberID(uint32_t threadID, uint32_t fiberID) { in threadFiberID() argument 39 return static_cast<uint64_t>(threadID) * 31 + static_cast<uint64_t>(fiberID); in threadFiberID() 191 : threadID(std::hash<std::thread::id>()(std::this_thread::get_id())) { in Event() 217 if (threadID != 0) { in write() 218 out << INDENT << QUOTE("tid") << ": " << threadFiberID(threadID, fiberID) in write() 232 << INDENT << QUOTE("tid") << ": " << threadFiberID(threadID, fiberID) in write()
|
D | scheduler_test.cpp | 116 auto threadID = std::this_thread::get_id(); in TEST_P() local 118 ASSERT_EQ(threadID, std::this_thread::get_id()); in TEST_P() 143 auto threadID = std::this_thread::get_id(); in TEST_P() local 145 ASSERT_EQ(threadID, std::this_thread::get_id()); in TEST_P()
|
D | scheduler.cpp | 42 printf("%.3x " msg "\n", (int)threadID() & 0xfff, __VA_ARGS__) 57 inline uint64_t threadID() { in threadID() function
|
/third_party/flutter/skia/third_party/externals/sdl/src/thread/windows/ |
D | SDL_systhread.c | 45 unsigned, unsigned *threadID); 62 *threadID); 71 unsigned *threadID);
|
/third_party/python/Python/ |
D | thread_nt.h | 191 unsigned threadID; in PyThread_start_new_thread() local 209 0, &threadID); in PyThread_start_new_thread() 217 threadID = (unsigned)-1; in PyThread_start_new_thread() 225 return threadID; in PyThread_start_new_thread()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
D | RendererGL.cpp | 376 std::thread::id threadID = std::this_thread::get_id(); in bindWorkerContext() local 400 mCurrentWorkerContexts[threadID] = std::move(workerContext); in bindWorkerContext() 406 std::thread::id threadID = std::this_thread::get_id(); in unbindWorkerContext() local 409 auto it = mCurrentWorkerContexts.find(threadID); in unbindWorkerContext()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
D | RendererGL.cpp | 622 std::thread::id threadID = std::this_thread::get_id(); in bindWorkerContext() local 646 mCurrentWorkerContexts[threadID] = std::move(workerContext); in bindWorkerContext() 652 std::thread::id threadID = std::this_thread::get_id(); in unbindWorkerContext() local 655 auto it = mCurrentWorkerContexts.find(threadID); in unbindWorkerContext()
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_pthread.cpp | 315 unsigned threadID; in dng_pthread_create() local 333 result = _beginthreadex(NULL, (unsigned)stacksize, trampoline, args.get(), 0, &threadID); in dng_pthread_create() 338 std::pair<DWORD, std::pair<HANDLE, void **> > newMapEntry(threadID, in dng_pthread_create() 349 *thread = (dng_pthread_t)threadID; in dng_pthread_create()
|
/third_party/flutter/skia/third_party/externals/sdl/include/ |
D | SDL_thread.h | 100 unsigned *threadID);
|
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/static_analysis/ |
D | async_eval_result.cc | 160 void AnalysisSchedule::SetThreadID(const std::string &threadID) { localThreadID = threadID; } in SetThreadID() argument
|
D | static_analysis.cc | 763 const std::string &threadID, AsyncAbstractPtr async_result_branch, in ExecEvaluator() argument 767 AnalysisSchedule::SetThreadID(threadID); in ExecEvaluator()
|
/third_party/boost/libs/thread/src/win32/ |
D | thread.cpp | 162 DWORD threadID; in _beginthreadex() local 165 data,initflag,&threadID); in _beginthreadex() 170 *thrdaddr=threadID; in _beginthreadex()
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/ |
D | trace.h | 120 uint32_t threadID; member
|
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
D | daemon.c | 1196 unsigned threadID; in create_thread() 1198 arg, 0, &threadID); in create_thread() 1202 W32_SetThreadName(threadID, "libmicrohttpd"); in create_thread()
|