Home
last modified time | relevance | path

Searched refs:ThreadId (Results 1 – 25 of 2756) sorted by relevance

12345678910>>...111

/dports/math/scilab/scilab-6.1.1/scilab/modules/ast/src/cpp/types/
H A DthreadId.cpp32 ThreadId::~ThreadId() in ~ThreadId()
36 ThreadId::ThreadId(__threadId _id, __threadKey _key) in ThreadId() function in types::ThreadId
47 __threadId ThreadId::getThreadId() in getThreadId()
57 __threadKey ThreadId::getKey() in getKey()
67 ThreadId* ThreadId::clone() in clone()
88 void ThreadId::setStatus(ThreadId::Status _status) in setStatus()
93 ThreadId::Status ThreadId::getStatus(void) in getStatus()
98 void ThreadId::suspend() in suspend()
116 void ThreadId::resume() in resume()
131 void ThreadId::abort() in abort()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Segmentation/LevelSets/include/
H A DitkParallelSparseFieldLevelSetImageFilter.hxx1003 for ( ThreadIdType ThreadId = 0; ThreadId < m_NumOfThreads; ThreadId++ ) in DeallocateData() local
1710 if ( ThreadId != 0 ) in CopyInsertInterNeighborNodeTransferBufferLayers()
1900 ThreadIdType ThreadId) in ThreadedProcessStatusList() argument
2021 ThreadIdType ThreadId) in ThreadedProcessOutsideList() argument
2067 ThreadIdType ThreadId) in ThreadedPropagateLayerValues() argument
2391 if ( ThreadId != 0 ) in GetThreadRegionSplitByBoundary()
2493 if ( ThreadId != 0 ) in SignalNeighborsAndWait()
2495 if ( m_Boundary[ThreadId - 1] == m_Boundary[ThreadId] ) in SignalNeighborsAndWait()
2521 if ( ( ThreadId == 0 ) || ( m_Boundary[ThreadId] == m_ZSize - 1 ) ) in SignalNeighborsAndWait()
2525 this->WaitForNeighbor (m_Data[ThreadId].m_SemaphoreArrayNumber, ThreadId); in SignalNeighborsAndWait()
[all …]
/dports/devel/valgrind-lts/valgrind-dragonfly-dragonfly/coregrind/
H A Dpub_core_tooliface.h162 void* (*tool_malloc) (ThreadId, SizeT);
163 void* (*tool___builtin_new) (ThreadId, SizeT);
164 void* (*tool___builtin_vec_new) (ThreadId, SizeT);
167 void (*tool_free) (ThreadId, void*);
168 void (*tool___builtin_delete) (ThreadId, void*);
169 void (*tool___builtin_vec_delete)(ThreadId, void*);
244 void (*track_start_client_code)(ThreadId, ULong);
245 void (*track_stop_client_code) (ThreadId, ULong);
247 void (*track_pre_thread_ll_create)(ThreadId, ThreadId);
248 void (*track_pre_thread_first_insn)(ThreadId);
[all …]
H A Dpub_core_syswrap.h45 extern void VG_(main_thread_wrapper_NORETURN)(ThreadId tid);
47 extern void VG_(client_syscall) ( ThreadId tid, UInt trc );
49 extern void VG_(post_syscall) ( ThreadId tid );
52 extern void VG_(clear_syscallInfo) ( ThreadId tid );
55 extern Bool VG_(is_in_syscall) ( ThreadId tid );
58 extern Word VG_(is_in_syscall_no) (ThreadId tid );
62 ThreadId tid,
75 extern void VG_(reap_threads)(ThreadId self);
91 (ThreadId,VgSchedReturnCode);
94 extern void VG_(save_context)(ThreadId tid, vki_ucontext_t *uc,
[all …]
H A Dpub_core_replacemalloc.h44 void* (*tl_malloc) (ThreadId tid, SizeT n);
45 void* (*tl___builtin_new) (ThreadId tid, SizeT n);
46 void* (*tl___builtin_vec_new) (ThreadId tid, SizeT n);
47 void* (*tl_memalign) (ThreadId tid, SizeT align, SizeT n);
48 void* (*tl_calloc) (ThreadId tid, SizeT nmemb, SizeT n);
49 void (*tl_free) (ThreadId tid, void* p);
50 void (*tl___builtin_delete) (ThreadId tid, void* p);
51 void (*tl___builtin_vec_delete)(ThreadId tid, void* p);
52 void* (*tl_realloc) (ThreadId tid, void* p, SizeT size);
53 SizeT (*tl_malloc_usable_size) (ThreadId tid, void* payload);
[all …]
/dports/devel/valgrind/valgrind-dragonfly-dragonfly/coregrind/
H A Dpub_core_tooliface.h162 void* (*tool_malloc) (ThreadId, SizeT);
163 void* (*tool___builtin_new) (ThreadId, SizeT);
164 void* (*tool___builtin_vec_new) (ThreadId, SizeT);
167 void (*tool_free) (ThreadId, void*);
168 void (*tool___builtin_delete) (ThreadId, void*);
169 void (*tool___builtin_vec_delete)(ThreadId, void*);
244 void (*track_start_client_code)(ThreadId, ULong);
245 void (*track_stop_client_code) (ThreadId, ULong);
247 void (*track_pre_thread_ll_create)(ThreadId, ThreadId);
248 void (*track_pre_thread_first_insn)(ThreadId);
[all …]
H A Dpub_core_syswrap.h45 extern void VG_(main_thread_wrapper_NORETURN)(ThreadId tid);
47 extern void VG_(client_syscall) ( ThreadId tid, UInt trc );
49 extern void VG_(post_syscall) ( ThreadId tid );
52 extern void VG_(clear_syscallInfo) ( ThreadId tid );
55 extern Bool VG_(is_in_syscall) ( ThreadId tid );
58 extern Word VG_(is_in_syscall_no) (ThreadId tid );
62 ThreadId tid,
75 extern void VG_(reap_threads)(ThreadId self);
91 (ThreadId,VgSchedReturnCode);
94 extern void VG_(save_context)(ThreadId tid, vki_ucontext_t *uc,
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/remutex/
H A Dlib.rs28 pub struct ThreadId(NonZero<usize>); struct
32 impl ThreadId { implementation
34 fn new() -> ThreadId { in new()
36 ThreadId(NonZero::new(number).unwrap()) in new()
38 pub fn current() -> ThreadId { in current()
43 thread_local!{ static THREAD_ID: ThreadId = ThreadId::new() }
60 NonZero::new(number).map(ThreadId) in load()
63 pub fn swap(&self, value: Option<ThreadId>, ordering: Ordering) -> Option<ThreadId> { in swap() argument
66 NonZero::new(number).map(ThreadId) in swap()
137 pub fn owner(&self) -> Option<ThreadId> { in owner() argument
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/threading/
H A DThreadId.h12 class ThreadId {
17 ThreadId();
19 ThreadId(const ThreadId&) = default;
20 ThreadId(ThreadId&&) = default;
21 ThreadId& operator=(const ThreadId&) = default;
22 ThreadId& operator=(ThreadId&&) = default;
24 bool operator==(const ThreadId& aOther) const;
25 bool operator!=(const ThreadId& aOther) const { return !operator==(aOther); }
31 static ThreadId ThisThreadId();
/dports/www/firefox-esr/firefox-91.8.0/js/src/threading/
H A DThreadId.h12 class ThreadId {
17 ThreadId();
19 ThreadId(const ThreadId&) = default;
20 ThreadId(ThreadId&&) = default;
21 ThreadId& operator=(const ThreadId&) = default;
22 ThreadId& operator=(ThreadId&&) = default;
24 bool operator==(const ThreadId& aOther) const;
25 bool operator!=(const ThreadId& aOther) const { return !operator==(aOther); }
33 static ThreadId ThisThreadId();
/dports/www/firefox/firefox-99.0/js/src/threading/
H A DThreadId.h12 class ThreadId {
17 ThreadId();
19 ThreadId(const ThreadId&) = default;
20 ThreadId(ThreadId&&) = default;
21 ThreadId& operator=(const ThreadId&) = default;
22 ThreadId& operator=(ThreadId&&) = default;
24 bool operator==(const ThreadId& aOther) const;
25 bool operator!=(const ThreadId& aOther) const { return !operator==(aOther); }
33 static ThreadId ThisThreadId();
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/threading/
H A DThreadId.h12 class ThreadId {
17 ThreadId();
19 ThreadId(const ThreadId&) = default;
20 ThreadId(ThreadId&&) = default;
21 ThreadId& operator=(const ThreadId&) = default;
22 ThreadId& operator=(ThreadId&&) = default;
24 bool operator==(const ThreadId& aOther) const;
25 bool operator!=(const ThreadId& aOther) const { return !operator==(aOther); }
33 static ThreadId ThisThreadId();
/dports/lang/v8/v8-9.6.180.12/src/execution/
H A Dthread-id.h14 class ThreadId {
17 constexpr ThreadId() noexcept : ThreadId(kInvalidId) {} in ThreadId() function
19 bool operator==(const ThreadId& other) const { return id_ == other.id_; }
20 bool operator!=(const ThreadId& other) const { return id_ != other.id_; }
29 static ThreadId TryGetCurrent();
32 static ThreadId Current() { return ThreadId(GetCurrentThreadId()); } in Current()
35 static constexpr ThreadId Invalid() { return ThreadId(kInvalidId); } in Invalid()
39 static constexpr ThreadId FromInteger(int id) { return ThreadId(id); } in FromInteger()
44 explicit constexpr ThreadId(int id) noexcept : id_(id) {} in ThreadId() function
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/execution/
H A Dthread-id.h14 class ThreadId {
17 constexpr ThreadId() noexcept : ThreadId(kInvalidId) {} in ThreadId() function
19 bool operator==(const ThreadId& other) const { return id_ == other.id_; }
20 bool operator!=(const ThreadId& other) const { return id_ != other.id_; }
29 static ThreadId TryGetCurrent();
32 static ThreadId Current() { return ThreadId(GetCurrentThreadId()); } in Current()
35 static constexpr ThreadId Invalid() { return ThreadId(kInvalidId); } in Invalid()
39 static constexpr ThreadId FromInteger(int id) { return ThreadId(id); } in FromInteger()
44 explicit constexpr ThreadId(int id) noexcept : id_(id) {} in ThreadId() function
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/execution/
H A Dthread-id.h14 class ThreadId {
17 constexpr ThreadId() noexcept : ThreadId(kInvalidId) {} in ThreadId() function
19 bool operator==(const ThreadId& other) const { return id_ == other.id_; }
20 bool operator!=(const ThreadId& other) const { return id_ != other.id_; }
29 static ThreadId TryGetCurrent();
32 static ThreadId Current() { return ThreadId(GetCurrentThreadId()); } in Current()
35 static constexpr ThreadId Invalid() { return ThreadId(kInvalidId); } in Invalid()
39 static constexpr ThreadId FromInteger(int id) { return ThreadId(id); } in FromInteger()
44 explicit constexpr ThreadId(int id) noexcept : id_(id) {} in ThreadId() function
/dports/www/firefox-esr/firefox-91.8.0/js/src/threading/noop/
H A DNoopThread.cpp13 inline ThreadId::PlatformData* ThreadId::platformData() { in platformData()
17 inline const ThreadId::PlatformData* ThreadId::platformData() const { in platformData()
21 ThreadId::ThreadId() {} in ThreadId() function in js::ThreadId
22 ThreadId::operator bool() const { return false; } in operator bool()
23 bool ThreadId::operator==(const ThreadId& aOther) const { return true; } in operator ==()
27 ThreadId ThreadId::ThisThreadId() { return ThreadId(); } in ThisThreadId()
/dports/www/firefox/firefox-99.0/js/src/threading/noop/
H A DNoopThread.cpp13 inline ThreadId::PlatformData* ThreadId::platformData() { in platformData()
17 inline const ThreadId::PlatformData* ThreadId::platformData() const { in platformData()
21 ThreadId::ThreadId() {} in ThreadId() function in js::ThreadId
22 ThreadId::operator bool() const { return false; } in operator bool()
23 bool ThreadId::operator==(const ThreadId& aOther) const { return true; } in operator ==()
27 ThreadId ThreadId::ThisThreadId() { return ThreadId(); } in ThisThreadId()
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/threading/noop/
H A DNoopThread.cpp13 inline ThreadId::PlatformData* ThreadId::platformData() { in platformData()
17 inline const ThreadId::PlatformData* ThreadId::platformData() const { in platformData()
21 ThreadId::ThreadId() {} in ThreadId() function in js::ThreadId
22 ThreadId::operator bool() const { return false; } in operator bool()
23 bool ThreadId::operator==(const ThreadId& aOther) const { return true; } in operator ==()
27 ThreadId ThreadId::ThisThreadId() { return ThreadId(); } in ThisThreadId()
/dports/multimedia/mkclean/mkclean-0.8.7/corec/corec/multithread/
H A Dmultithread_ps2sdk.c44 s32 ThreadId; member
66 p->ThreadId = -1; in LockCreate()
89 if (p->ThreadId == ThreadId) in LockEnter()
94 p->ThreadId =ThreadId; in LockEnter()
108 p->ThreadId = -1; in LockLeave()
114 uintptr_t ThreadId() in ThreadId() function
126 s32 ThreadId; member
163 if ((*i)->ThreadId==-1) in ThreadCreate()
186 if (p->ThreadId < 0) in ThreadCreate()
224 p->ThreadId=-1; in ThreadJoin()
[all …]
/dports/multimedia/mkvalidator/mkvalidator-0.5.0/corec/corec/multithread/
H A Dmultithread_ps2sdk.c44 s32 ThreadId; member
66 p->ThreadId = -1; in LockCreate()
89 if (p->ThreadId == ThreadId) in LockEnter()
94 p->ThreadId =ThreadId; in LockEnter()
108 p->ThreadId = -1; in LockLeave()
114 uintptr_t ThreadId() in ThreadId() function
126 s32 ThreadId; member
163 if ((*i)->ThreadId==-1) in ThreadCreate()
186 if (p->ThreadId < 0) in ThreadCreate()
224 p->ThreadId=-1; in ThreadJoin()
[all …]
/dports/multimedia/bcmatroska2/bcmatroska2-0.23/corec/corec/multithread/
H A Dmultithread_ps2sdk.c44 s32 ThreadId; member
66 p->ThreadId = -1; in LockCreate()
89 if (p->ThreadId == ThreadId) in LockEnter()
94 p->ThreadId =ThreadId; in LockEnter()
108 p->ThreadId = -1; in LockLeave()
114 uintptr_t ThreadId() in ThreadId() function
126 s32 ThreadId; member
163 if ((*i)->ThreadId==-1) in ThreadCreate()
186 if (p->ThreadId < 0) in ThreadCreate()
224 p->ThreadId=-1; in ThreadJoin()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/js/src/threading/windows/
H A DWindowsThread.cpp15 inline ThreadId::PlatformData* ThreadId::platformData() { in platformData()
21 inline const ThreadId::PlatformData* ThreadId::platformData() const { in platformData()
27 ThreadId::ThreadId() { in ThreadId() function in js::ThreadId
32 ThreadId::operator bool() const { return platformData()->handle; } in operator bool()
34 bool ThreadId::operator==(const ThreadId& aOther) const { in operator ==()
54 id_ = ThreadId(); in create()
67 id_ = ThreadId(); in join()
74 id_ = ThreadId(); in detach()
77 ThreadId ThreadId::ThisThreadId() { in ThisThreadId()
78 ThreadId id; in ThisThreadId()
[all …]
/dports/www/firefox/firefox-99.0/js/src/threading/windows/
H A DWindowsThread.cpp15 inline ThreadId::PlatformData* ThreadId::platformData() { in platformData()
21 inline const ThreadId::PlatformData* ThreadId::platformData() const { in platformData()
27 ThreadId::ThreadId() { in ThreadId() function in js::ThreadId
32 ThreadId::operator bool() const { return platformData()->handle; } in operator bool()
34 bool ThreadId::operator==(const ThreadId& aOther) const { in operator ==()
54 id_ = ThreadId(); in create()
67 id_ = ThreadId(); in join()
74 id_ = ThreadId(); in detach()
77 ThreadId ThreadId::ThisThreadId() { in ThisThreadId()
78 ThreadId id; in ThisThreadId()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/threading/windows/
H A DWindowsThread.cpp15 inline ThreadId::PlatformData* ThreadId::platformData() { in platformData()
21 inline const ThreadId::PlatformData* ThreadId::platformData() const { in platformData()
27 ThreadId::ThreadId() { in ThreadId() function in js::ThreadId
32 ThreadId::operator bool() const { return platformData()->handle; } in operator bool()
34 bool ThreadId::operator==(const ThreadId& aOther) const { in operator ==()
54 id_ = ThreadId(); in create()
67 id_ = ThreadId(); in join()
74 id_ = ThreadId(); in detach()
77 ThreadId ThreadId::ThisThreadId() { in ThisThreadId()
78 ThreadId id; in ThisThreadId()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/threading/windows/
H A DWindowsThread.cpp12 inline ThreadId::PlatformData* ThreadId::platformData() { in platformData()
18 inline const ThreadId::PlatformData* ThreadId::platformData() const { in platformData()
24 ThreadId::ThreadId() { in ThreadId() function in js::ThreadId
29 bool ThreadId::operator==(const ThreadId& aOther) const { in operator ==()
49 id_ = ThreadId(); in create()
62 id_ = ThreadId(); in join()
69 id_ = ThreadId(); in detach()
72 ThreadId ThreadId::ThisThreadId() { in ThisThreadId()
73 ThreadId id; in ThisThreadId()
76 MOZ_RELEASE_ASSERT(id != ThreadId()); in ThisThreadId()

12345678910>>...111