Home
last modified time | relevance | path

Searched refs:threads (Results 201 – 225 of 43839) sorted by relevance

12345678910>>...1754

/dports/multimedia/libv4l/linux-5.13-rc2/tools/lib/perf/
H A Dthreadmap.c49 if (threads != NULL) { in perf_thread_map__new_dummy()
50 perf_thread_map__set_pid(threads, 0, -1); in perf_thread_map__new_dummy()
51 threads->nr = 1; in perf_thread_map__new_dummy()
52 refcount_set(&threads->refcnt, 1); in perf_thread_map__new_dummy()
54 return threads; in perf_thread_map__new_dummy()
59 if (threads) { in perf_thread_map__delete()
62 WARN_ONCE(refcount_read(&threads->refcnt) != 0, in perf_thread_map__delete()
64 for (i = 0; i < threads->nr; i++) in perf_thread_map__delete()
65 free(perf_thread_map__comm(threads, i)); in perf_thread_map__delete()
66 free(threads); in perf_thread_map__delete()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/tools/lib/perf/
H A Dthreadmap.c49 if (threads != NULL) { in perf_thread_map__new_dummy()
50 perf_thread_map__set_pid(threads, 0, -1); in perf_thread_map__new_dummy()
51 threads->nr = 1; in perf_thread_map__new_dummy()
52 refcount_set(&threads->refcnt, 1); in perf_thread_map__new_dummy()
54 return threads; in perf_thread_map__new_dummy()
59 if (threads) { in perf_thread_map__delete()
62 WARN_ONCE(refcount_read(&threads->refcnt) != 0, in perf_thread_map__delete()
64 for (i = 0; i < threads->nr; i++) in perf_thread_map__delete()
65 free(perf_thread_map__comm(threads, i)); in perf_thread_map__delete()
66 free(threads); in perf_thread_map__delete()
[all …]
/dports/security/kpmenu/kpmenu-1.4.0/vendor/github.com/aead/argon2/
H A Dargon2.go102 if threads < 1 {
107 memory = memory / (syncPoints * uint32(threads)) * (syncPoints * uint32(threads))
108 if memory < 2*syncPoints*uint32(threads) {
109 memory = 2 * syncPoints * uint32(threads)
111 B := initBlocks(&h0, memory, uint32(threads))
157 for lane := uint32(0); lane < threads; lane++ {
158 j := lane * (memory / threads)
177 lanes := memory / threads
228 for lane := uint32(0); lane < threads; lane++ {
239 lanes := memory / threads
[all …]
/dports/devel/hpx/hpx-1.2.1/tests/unit/threads/
H A Dschedule_last.cpp33 hpx::this_thread::suspend(hpx::threads::pending); in hpx_main()
52 [](hpx::threads::policies::callback_notifier& notifier, in test_scheduler()
55 -> std::unique_ptr<hpx::threads::thread_pool_base> in test_scheduler()
60 auto mode = hpx::threads::policies::scheduler_mode( in test_scheduler()
61 hpx::threads::policies::do_background_work | in test_scheduler()
62 hpx::threads::policies::reduce_thread_priority | in test_scheduler()
63 hpx::threads::policies::delay_exit); in test_scheduler()
65 std::unique_ptr<hpx::threads::thread_pool_base> pool( in test_scheduler()
80 hpx::threads::policies::local_priority_queue_scheduler< in main()
88 hpx::threads::policies::local_priority_queue_scheduler< in main()
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/jdk/jfr/event/runtime/
H A DTestThreadAllocationEvent.java87 for (int i = 0; i < threads.length; i++) { in main()
89 threads[i].setName(testThreadName + i); in main()
90 threads[i].setDaemon(true); in main()
91 threads[i].start(); in main()
124 long[] prevAllocated = new long[threads.length]; in verifyAllocationsNotDecreasing()
128 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
129 if (name.equals(threads[i].getName())) { in verifyAllocationsNotDecreasing()
136 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
149 for (int i = 0; i < threads.length; ++i) { in verifyTotalAllocated()
150 if (name.equals(threads[i].getName())) { in verifyTotalAllocated()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/jdk/jfr/event/runtime/
H A DTestThreadAllocationEvent.java87 for (int i = 0; i < threads.length; i++) { in main()
89 threads[i].setName(testThreadName + i); in main()
90 threads[i].setDaemon(true); in main()
91 threads[i].start(); in main()
124 long[] prevAllocated = new long[threads.length]; in verifyAllocationsNotDecreasing()
128 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
129 if (name.equals(threads[i].getName())) { in verifyAllocationsNotDecreasing()
136 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
149 for (int i = 0; i < threads.length; ++i) { in verifyTotalAllocated()
150 if (name.equals(threads[i].getName())) { in verifyTotalAllocated()
[all …]
/dports/devel/folly/folly-2021.12.27.00/folly/synchronization/test/
H A DParkingLotBenchmark.cpp39 for (auto& t : threads) { in BENCHMARK()
50 for (auto& t : threads) { in BENCHMARK()
60 for (auto& t : threads) { in BENCHMARK_RELATIVE()
71 for (auto& t : threads) { in BENCHMARK_RELATIVE()
82 for (auto& t : threads) { in BENCHMARK()
101 for (auto& t : threads) { in BENCHMARK()
112 for (auto& t : threads) { in BENCHMARK_RELATIVE()
136 for (auto& t : threads) { in BENCHMARK_RELATIVE()
148 for (auto& t : threads) { in BENCHMARK()
168 for (auto& t : threads) { in BENCHMARK()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/jdk/jfr/event/runtime/
H A DTestThreadAllocationEvent.java87 for (int i = 0; i < threads.length; i++) { in main()
89 threads[i].setName(testThreadName + i); in main()
90 threads[i].setDaemon(true); in main()
91 threads[i].start(); in main()
124 long[] prevAllocated = new long[threads.length]; in verifyAllocationsNotDecreasing()
128 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
129 if (name.equals(threads[i].getName())) { in verifyAllocationsNotDecreasing()
136 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
149 for (int i = 0; i < threads.length; ++i) { in verifyTotalAllocated()
150 if (name.equals(threads[i].getName())) { in verifyTotalAllocated()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/jdk/jfr/event/runtime/
H A DTestThreadAllocationEvent.java87 for (int i = 0; i < threads.length; i++) { in main()
89 threads[i].setName(testThreadName + i); in main()
90 threads[i].setDaemon(true); in main()
91 threads[i].start(); in main()
124 long[] prevAllocated = new long[threads.length]; in verifyAllocationsNotDecreasing()
128 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
129 if (name.equals(threads[i].getName())) { in verifyAllocationsNotDecreasing()
136 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
149 for (int i = 0; i < threads.length; ++i) { in verifyTotalAllocated()
150 if (name.equals(threads[i].getName())) { in verifyTotalAllocated()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/jdk/jfr/event/runtime/
H A DTestThreadAllocationEvent.java87 for (int i = 0; i < threads.length; i++) { in main()
89 threads[i].setName(testThreadName + i); in main()
90 threads[i].setDaemon(true); in main()
91 threads[i].start(); in main()
124 long[] prevAllocated = new long[threads.length]; in main()
128 for (int i = 0; i < threads.length; i++) { in main()
129 if (name.equals(threads[i].getName())) { in main()
136 for (int i = 0; i < threads.length; i++) { in main()
149 for (int i = 0; i < threads.length; ++i) { in main()
150 if (name.equals(threads[i].getName())) { in main()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/jdk/jfr/event/runtime/
H A DTestThreadAllocationEvent.java87 for (int i = 0; i < threads.length; i++) { in main()
89 threads[i].setName(testThreadName + i); in main()
90 threads[i].setDaemon(true); in main()
91 threads[i].start(); in main()
124 long[] prevAllocated = new long[threads.length]; in verifyAllocationsNotDecreasing()
128 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
129 if (name.equals(threads[i].getName())) { in verifyAllocationsNotDecreasing()
136 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
149 for (int i = 0; i < threads.length; ++i) { in verifyTotalAllocated()
150 if (name.equals(threads[i].getName())) { in verifyTotalAllocated()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/jdk/jfr/event/runtime/
H A DTestThreadAllocationEvent.java87 for (int i = 0; i < threads.length; i++) { in main()
89 threads[i].setName(testThreadName + i); in main()
90 threads[i].setDaemon(true); in main()
91 threads[i].start(); in main()
124 long[] prevAllocated = new long[threads.length]; in verifyAllocationsNotDecreasing()
128 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
129 if (name.equals(threads[i].getName())) { in verifyAllocationsNotDecreasing()
136 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
149 for (int i = 0; i < threads.length; ++i) { in verifyTotalAllocated()
150 if (name.equals(threads[i].getName())) { in verifyTotalAllocated()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/jdk/jfr/event/runtime/
H A DTestThreadAllocationEvent.java85 for (int i = 0; i < threads.length; i++) { in main()
87 threads[i].setName(testThreadName + i); in main()
88 threads[i].setDaemon(true); in main()
89 threads[i].start(); in main()
122 long[] prevAllocated = new long[threads.length]; in verifyAllocationsNotDecreasing()
126 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
127 if (name.equals(threads[i].getName())) { in verifyAllocationsNotDecreasing()
134 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
147 for (int i = 0; i < threads.length; ++i) { in verifyTotalAllocated()
148 if (name.equals(threads[i].getName())) { in verifyTotalAllocated()
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/test/jdk/jfr/event/runtime/
H A DTestThreadAllocationEvent.java86 for (int i = 0; i < threads.length; i++) { in main()
88 threads[i].setName(testThreadName + i); in main()
89 threads[i].setDaemon(true); in main()
90 threads[i].start(); in main()
123 long[] prevAllocated = new long[threads.length]; in verifyAllocationsNotDecreasing()
127 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
128 if (name.equals(threads[i].getName())) { in verifyAllocationsNotDecreasing()
135 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
148 for (int i = 0; i < threads.length; ++i) { in verifyTotalAllocated()
149 if (name.equals(threads[i].getName())) { in verifyTotalAllocated()
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/test/jdk/jfr/event/runtime/
H A DTestThreadAllocationEvent.java86 for (int i = 0; i < threads.length; i++) { in main()
88 threads[i].setName(testThreadName + i); in main()
89 threads[i].setDaemon(true); in main()
90 threads[i].start(); in main()
123 long[] prevAllocated = new long[threads.length]; in verifyAllocationsNotDecreasing()
127 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
128 if (name.equals(threads[i].getName())) { in verifyAllocationsNotDecreasing()
135 for (int i = 0; i < threads.length; i++) { in verifyAllocationsNotDecreasing()
148 for (int i = 0; i < threads.length; ++i) { in verifyTotalAllocated()
149 if (name.equals(threads[i].getName())) { in verifyTotalAllocated()
[all …]
/dports/lang/guile1/guile-1.8.8/libguile/
H A DChangeLog-threads16 finding libguile/../threads/threads.h.
49 * coop-threads.c: Added #include "coop-threads.h"
51 * coop-threads.h: Moved coop_t struct and threads macros to
54 * threads.h: Changed #include "coop-threads.h" --> #include
96 * threads.c: #include "dynwind.h"
124 * threads.c, threads.h (scm_init_threads, scm_threads_init): Added
182 * threads.c: Don't use files "no-threads.[hc]". Removed old code
191 * coop-threads.c, coop-threads.h, coop.c, fsu-pthreads.h,
192 mit-pthreads.c, mit-pthreads.h, threads.c, threads.h: Replaced
241 * coop.c, coop-threads.h coop-threads.c: Major cleanup of
[all …]
/dports/lang/guile2/guile-2.2.7/libguile/
H A DChangeLog-threads16 finding libguile/../threads/threads.h.
49 * coop-threads.c: Added #include "coop-threads.h"
51 * coop-threads.h: Moved coop_t struct and threads macros to
54 * threads.h: Changed #include "coop-threads.h" --> #include
96 * threads.c: #include "dynwind.h"
124 * threads.c, threads.h (scm_init_threads, scm_threads_init): Added
182 * threads.c: Don't use files "no-threads.[hc]". Removed old code
191 * coop-threads.c, coop-threads.h, coop.c, fsu-pthreads.h,
192 mit-pthreads.c, mit-pthreads.h, threads.c, threads.h: Replaced
241 * coop.c, coop-threads.h coop-threads.c: Major cleanup of
[all …]
/dports/lang/guile/guile-3.0.7/libguile/
H A DChangeLog-threads16 finding libguile/../threads/threads.h.
49 * coop-threads.c: Added #include "coop-threads.h"
51 * coop-threads.h: Moved coop_t struct and threads macros to
54 * threads.h: Changed #include "coop-threads.h" --> #include
96 * threads.c: #include "dynwind.h"
124 * threads.c, threads.h (scm_init_threads, scm_threads_init): Added
182 * threads.c: Don't use files "no-threads.[hc]". Removed old code
191 * coop-threads.c, coop-threads.h, coop.c, fsu-pthreads.h,
192 mit-pthreads.c, mit-pthreads.h, threads.c, threads.h: Replaced
241 * coop.c, coop-threads.h coop-threads.c: Major cleanup of
[all …]
/dports/textproc/apache-solr/solr-8.11.1/server/solr-webapp/webapp/css/angular/
H A Dthreads.css20 #content #threads .loader
26 #content #threads #thread-dump table
33 #content #threads #thread-dump tbody .state
38 #content #threads #thread-dump table th,
39 #content #threads #thread-dump table td
45 #content #threads #thread-dump thead th
52 #content #threads #thread-dump thead th.name
63 #content #threads #thread-dump tbody .odd
145 #content #threads .controls
151 #content #threads .controls a
[all …]
/dports/lang/gauche/Gauche-0.9.10/ext/threads/
H A DMakefile.in9 LIBFILES = gauche--threads.$(SOEXT)
10 SCMFILES = threads.sci
12 OBJECTS = threads.$(OBJEXT) mutex.$(OBJEXT) gauche--threads.$(OBJEXT)
15 XCLEANFILES = gauche--threads.c *.sci
19 gauche--threads.$(SOEXT) : $(OBJECTS)
20 $(MODLINK) gauche--threads.$(SOEXT) $(OBJECTS) $(EXT_LIBGAUCHE) $(LIBS)
22 threads.sci gauche--threads.c : threads.scm
23 $(PRECOMP) -e -P -o gauche--threads $(srcdir)/threads.scm
/dports/devel/boost-docs/boost_1_72_0/boost/thread/detail/
H A Dthread_group.hpp32 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in ~thread_group()
44 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in is_this_thread_in()
60 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in is_thread_in()
93 threads.push_back(thrd); in add_thread()
100 std::list<thread*>::iterator const it=std::find(threads.begin(),threads.end(),thrd); in remove_thread()
101 if(it!=threads.end()) in remove_thread()
103 threads.erase(it); in remove_thread()
114 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in join_all()
128 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in interrupt_all()
140 return threads.size(); in size()
[all …]
/dports/devel/hyperscan/boost_1_75_0/boost/thread/detail/
H A Dthread_group.hpp32 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in ~thread_group()
44 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in is_this_thread_in()
60 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in is_thread_in()
93 threads.push_back(thrd); in add_thread()
100 std::list<thread*>::iterator const it=std::find(threads.begin(),threads.end(),thrd); in remove_thread()
101 if(it!=threads.end()) in remove_thread()
103 threads.erase(it); in remove_thread()
114 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in join_all()
128 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in interrupt_all()
140 return threads.size(); in size()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/boost/thread/detail/
H A Dthread_group.hpp32 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in ~thread_group()
44 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in is_this_thread_in()
60 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in is_thread_in()
93 threads.push_back(thrd); in add_thread()
100 std::list<thread*>::iterator const it=std::find(threads.begin(),threads.end(),thrd); in remove_thread()
101 if(it!=threads.end()) in remove_thread()
103 threads.erase(it); in remove_thread()
114 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in join_all()
128 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in interrupt_all()
140 return threads.size(); in size()
[all …]
/dports/devel/R-cran-BH/BH/inst/include/boost/thread/detail/
H A Dthread_group.hpp32 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in ~thread_group()
44 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in is_this_thread_in()
60 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in is_thread_in()
93 threads.push_back(thrd); in add_thread()
100 std::list<thread*>::iterator const it=std::find(threads.begin(),threads.end(),thrd); in remove_thread()
101 if(it!=threads.end()) in remove_thread()
103 threads.erase(it); in remove_thread()
114 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in join_all()
128 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in interrupt_all()
140 return threads.size(); in size()
[all …]
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/thread/detail/
H A Dthread_group.hpp31 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in ~thread_group()
43 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in is_this_thread_in()
59 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in is_thread_in()
92 threads.push_back(thrd); in add_thread()
99 std::list<thread*>::iterator const it=std::find(threads.begin(),threads.end(),thrd); in remove_thread()
100 if(it!=threads.end()) in remove_thread()
102 threads.erase(it); in remove_thread()
113 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in join_all()
127 for(std::list<thread*>::iterator it=threads.begin(),end=threads.end(); in interrupt_all()
139 return threads.size(); in size()
[all …]

12345678910>>...1754