Searched refs:thr (Results 101 - 125 of 143) sorted by relevance

123456

/freebsd-current/tools/test/stress2/misc/
H A Dsyzkaller14.sh177 static void* thr(void* arg)
204 thread_start(thr, th);
H A Dsyzkaller43.sh170 static void* thr(void* arg)
195 thread_start(thr, th);
H A Dsyzkaller54.sh172 static void* thr(void* arg)
197 thread_start(thr, th);
H A Dsyzkaller58.sh172 static void* thr(void* arg)
197 thread_start(thr, th);
H A Dsyzkaller31.sh176 static void* thr(void* arg)
203 thread_start(thr, th);
H A Dsyzkaller32.sh187 static void* thr(void* arg)
212 thread_start(thr, th);
H A Dsyzkaller68.sh173 static void* thr(void* arg)
198 thread_start(thr, th);
H A Dsyzkaller70.sh181 static void* thr(void* arg)
206 thread_start(thr, th);
H A Dpkru.sh309 pthread_t thr;
314 thr = pthread_self();
315 if (thr == bga_thr) {
H A Dsyzkaller21.sh238 static void* thr(void* arg)
265 thread_start(thr, th);
H A Dsyzkaller23.sh248 static void* thr(void* arg)
275 thread_start(thr, th);
H A Dsyzkaller47.sh294 static void* thr(void* arg)
321 thread_start(thr, th);
H A Dsyzkaller64.sh224 static void* thr(void* arg)
249 thread_start(thr, th);
H A Dsyzkaller4.sh163 static void* thr(void* arg)
190 thread_start(thr, th);
H A Dsyzkaller28.sh176 static void* thr(void* arg)
201 thread_start(thr, th);
H A Dsyzkaller25.sh307 static void* thr(void* arg)
334 thread_start(thr, th);
H A Dsyzkaller52.sh247 static void* thr(void* arg)
272 thread_start(thr, th);
H A Dsyzkaller16.sh221 static void* thr(void* arg)
248 thread_start(thr, th);
H A Dsyzkaller69.sh339 static void* thr(void* arg)
364 thread_start(thr, th);
/freebsd-current/sys/contrib/dev/iwlwifi/mvm/
H A Drx.c219 u16 thr; local
257 thr = thresh_tpt[rate_n_flags & RATE_HT_MCS_RATE_CODE_MSK_V1];
258 thr *= 1 + ((rate_n_flags & RATE_HT_MCS_NSS_MSK_V1) >>
264 thr = thresh_tpt[rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK];
265 thr *= 1 + FIELD_GET(RATE_MCS_NSS_MSK, rate_n_flags);
268 thr <<= ((rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK_V1) >>
272 ewma_rate_add(&mdata->uapsd_nonagg_detect.rate, thr);
/freebsd-current/sys/gdb/
H A Dgdb_main.c827 struct thread *thr; local
837 thr = kdb_thr_lookup(tid);
838 if (thr == NULL) {
842 kdb_thr_select(thr);
/freebsd-current/usr.sbin/nvmfd/
H A Ddiscovery.c290 pthread_t thr; local
326 error = pthread_create(&thr, NULL, discovery_thread, dta);
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_barrier.cpp218 for (size_t thr = start; thr < stop; thr += inc) {
219 KMP_DEBUG_ASSERT(other_threads[thr]);
220 int gtid = other_threads[thr]->th.th_info.ds.ds_gtid;
268 for (size_t thr = group_start; thr < group_end; thr++) {
270 threads_pending += b->flags[my_current_iter][thr].stillNeed;
303 for (size_t thr
[all...]
H A Dz_Linux_util.cpp496 static void *__kmp_launch_worker(void *thr) { argument
508 gtid = ((kmp_info_t *)thr)->th.th_info.ds.ds_gtid;
515 __kmp_stats_thread_ptr = ((kmp_info_t *)thr)->th.th_stats;
560 __kmp_set_stack_info(gtid, (kmp_info_t *)thr);
562 __kmp_check_stack_overlap((kmp_info_t *)thr);
564 exit_val = __kmp_launch_thread((kmp_info_t *)thr);
577 static void *__kmp_launch_monitor(void *thr) { argument
601 __kmp_set_stack_info(((kmp_info_t *)thr)->th.th_info.ds.ds_gtid,
602 (kmp_info_t *)thr);
604 __kmp_check_stack_overlap((kmp_info_t *)thr);
[all...]
/freebsd-current/sys/dev/bwi/
H A Dbwirf.c2125 int32_t thr; local
2135 thr = (rf->rf_nrssi[1] - rf->rf_nrssi[0]) * 32;
2136 thr += 20 * (rf->rf_nrssi[0] + 1);
2137 thr /= 40;
2139 thr = rf->rf_nrssi[1] - 5;
2141 if (thr < 0)
2142 thr = 0;
2143 else if (thr > 0x3e)
2144 thr = 0x3e;
2147 PHY_WRITE(mac, BWI_PHYR_NRSSI_THR_11B, (((uint16_t)thr) <<
2182 uint16_t thr; local
[all...]

Completed in 278 milliseconds

123456