/freebsd/sbin/dump/ |
H A D | tape.c | 103 } workers[WORKERS+1]; variable 144 workers[i].tblock = (char (*)[TP_BSIZE]) in alloctape() 146 workers[i].req = (struct req *)workers[i].tblock - ntrec - 1; in alloctape() 148 wp = &workers[0]; in alloctape() 238 if (++wp >= &workers[WORKERS]) in flushtape() 239 wp = &workers[0]; in flushtape() 259 if (workers[i].sent) { in flushtape() 260 if (atomic_read(workers[i].fd, in flushtape() 266 workers[i].sent = 0; in flushtape() 317 if (workers[f].sent) { in trewind() [all …]
|
/freebsd/tools/regression/gaithrstress/ |
H A D | gaithrstress.c | 187 struct worker *workers; in main() local 232 workers = calloc(nworkers, sizeof(*workers)); in main() 233 if (workers == NULL) in main() 241 if (pthread_create(&workers[i].w_thread, NULL, work, in main() 242 &workers[i]) != 0) in main() 255 pthread_join(workers[i].w_thread, NULL); in main() 266 workers[i].w_lookup_success, workers[i].w_lookup_failure, in main() 267 workers[i].w_max_lookup_time.tv_sec / 60, in main() 268 workers[i].w_max_lookup_time.tv_sec % 60 < 10 ? "0" : "", in main() 269 (double)(workers[i].w_max_lookup_time.tv_sec % 60) + in main() [all …]
|
/freebsd/contrib/unbound/daemon/ |
H A D | daemon.c | 574 daemon->workers = (struct worker**)calloc((size_t)daemon->num, in daemon_create_workers() 576 if(!daemon->workers) in daemon_create_workers() 588 if(!(daemon->workers[i] = worker_create(daemon, i, in daemon_create_workers() 625 tube_close_read(daemon->workers[i]->cmd); in close_other_pipes() 628 tube_delete(daemon->workers[i]->cmd); in close_other_pipes() 629 daemon->workers[i]->cmd = NULL; in close_other_pipes() 678 ub_thread_create(&daemon->workers[i]->thr_id, in daemon_start_others() 679 thread_start, daemon->workers[i]); in daemon_start_others() 682 tube_close_read(daemon->workers[i]->cmd); in daemon_start_others() 700 worker_send_cmd(daemon->workers[i], worker_cmd_quit); in daemon_stop_others() [all …]
|
H A D | daemon.h | 107 struct worker** workers; member
|
H A D | stats.c | 442 if(!tube_write_msg(worker->daemon->workers[0]->cmd, in server_stats_reply()
|
H A D | remote.c | 653 worker_send_cmd(rc->worker->daemon->workers[i], in distribute_cmd() 655 if(!tube_write_msg(rc->worker->daemon->workers[i]->cmd, in distribute_cmd() 1129 server_stats_obtain(worker, daemon->workers[i], &s, reset); in do_stats()
|
/freebsd/sys/contrib/zstd/programs/ |
H A D | zstdcli_trace.c | 83 int workers = 0; in TRACE_log() local 88 ZSTD_CCtxParams_getParameter(trace->params, ZSTD_c_nbWorkers, &workers); in TRACE_log() 113 workers, in TRACE_log()
|
/freebsd/contrib/ntp/libntp/lib/isc/include/isc/ |
H A D | task.h | 657 unsigned int workers, unsigned int default_quantum, 660 isc_taskmgr_create(isc_mem_t *mctx, unsigned int workers, 773 (*isc_taskmgrcreatefunc_t)(isc_mem_t *mctx, unsigned int workers,
|
/freebsd/contrib/ntp/libntp/lib/isc/ |
H A D | task.c | 141 unsigned int workers; member 224 isc__taskmgr_create(isc_mem_t *mctx, unsigned int workers, 1321 isc__taskmgr_create(isc_mem_t *mctx, unsigned int workers, in isc__taskmgr_create() argument 1332 REQUIRE(workers > 0); in isc__taskmgr_create() 1364 manager->workers = 0; in isc__taskmgr_create() 1366 workers * sizeof(isc_thread_t)); in isc__taskmgr_create() 1413 for (i = 0; i < workers; i++) { in isc__taskmgr_create() 1415 &manager->threads[manager->workers]) == in isc__taskmgr_create() 1417 manager->workers++; in isc__taskmgr_create() 1427 isc_thread_setconcurrency(workers); in isc__taskmgr_create() [all …]
|
/freebsd/tools/tools/netrate/tcpp/ |
H A D | README | 25 -p <numprocs> Number of workers, should be >= client -p arg 35 This selects server mode, four workers, and at most 1 million TCP connections 48 -p <numprocs> Number of workers, should be <= server -p 57 This creates four workers, each of which will (over its lifetime) set up and
|
/freebsd/sys/dev/mlx5/mlx5_en/ |
H A D | mlx5_en_rl.c | 613 ix = (rlw - priv->rl.workers) % in mlx5e_rl_worker() 908 rl->workers = malloc(sizeof(rl->workers[0]) * in mlx5e_rl_init() 941 struct mlx5e_rl_worker *rlw = rl->workers + j; in mlx5e_rl_init() 997 struct mlx5e_rl_worker *rlw = rl->workers + j; in mlx5e_rl_open_workers() 1025 struct mlx5e_rl_worker *rlw = rl->workers + y; in mlx5e_rl_close_workers() 1041 struct mlx5e_rl_worker *rlw = rl->workers + y; in mlx5e_rl_close_workers() 1088 struct mlx5e_rl_worker *rlw = rl->workers + y; in mlx5e_rl_cleanup() 1095 free(rl->workers, M_MLX5EN); in mlx5e_rl_cleanup() 1221 rlw = priv->rl.workers + ((params->rate_limit.hdr.flowid % 128) % in mlx5e_rl_snd_tag_alloc() 1322 struct mlx5e_rl_worker *rlw = rl->workers + y; in mlx5e_rl_refresh_channel_params() [all …]
|
H A D | en_rl.h | 158 struct mlx5e_rl_worker *workers; member
|
H A D | mlx5_en_main.c | 880 struct mlx5e_rl_worker *rlw = priv->rl.workers + j; in mlx5e_update_stats_locked()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerDriver.cpp | 672 if (Flags.jobs > 0 && Flags.workers == 0) { in FuzzerDriver() 673 Flags.workers = std::min(NumberOfCpuCores() / 2, Flags.jobs); in FuzzerDriver() 674 if (Flags.workers > 1) in FuzzerDriver() 675 Printf("Running %u workers\n", Flags.workers); in FuzzerDriver() 678 if (Flags.workers > 0 && Flags.jobs > 0) in FuzzerDriver() 679 return RunInMultipleProcesses(Args, Flags.workers, Flags.jobs); in FuzzerDriver()
|
H A D | FuzzerFlags.def | 117 FUZZER_FLAG_UNSIGNED(workers, 0,
|
/freebsd/contrib/libpcap/doc/ |
H A D | README.hpux | 100 And another message to tcpdump-workers@tcpdump.org, from Rick Jones: 104 To: tcpdump-workers@tcpdump.org 105 Subject: Re: [tcpdump-workers] I Can't Capture the Outbound Traffic
|
H A D | README.aix | 43 should send to tcpdump-workers@lists.tcpdump.org a detailed bug
|
/freebsd/contrib/libpcap/ |
H A D | CONTRIBUTING.md | 29 to the mailing list tcpdump-workers@lists.tcpdump.org and ask!
|
H A D | CREDITS | 165 Mark Pizzolato <List-tcpdump-workers at subscriptions dot pizzolato dot net>
|
/freebsd/usr.bin/m4/TEST/ |
H A D | test.m4 | 171 wizards do not wan the workers or travelers to learn their incantations
|
/freebsd/contrib/tcpdump/ |
H A D | CREDITS | 134 Hank Leininger <tcpdump-workers at progressive-comp dot com>
|
/freebsd/contrib/tzdata/ |
H A D | africa | 210 # hot in Egypt), and the idea is to make fasting easier for workers by
|
H A D | asia | 1264 # In January 1906, several thousand cotton-mill workers rioted on the 1525 # and referring to the law for equating the working hours of workers
|
H A D | northamerica | 562 # Sitka workers did not change their calendars until Sunday, 1867-10-20,
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | bib | 10190 Moreover the workers with familiar spirits, and the wizards, and the images, and the idols, and all… 10980 Moreover there are workmen with thee in abundance, hewers and workers of stone and timber, and all … 13592 Is not destruction to the wicked? and a strange punishment to the workers of iniquity? 13692 Which goeth in company with the workers of iniquity, and walketh with wicked men. 13706 There is no darkness, nor shadow of death, where the workers of iniquity may hide themselves. 13979 The foolish shall not stand in thy sight: thou hatest all workers of iniquity. 13994 Depart from me, all ye workers of iniquity; for the LORD hath heard the voice of my weeping. 14085 Have all the workers of iniquity no knowledge? who eat up my people as they eat bread, and call not… 14303 Draw me not away with the wicked, and with the workers of iniquity, which speak peace to their neig… 14451 There are the workers of iniquity fallen: they are cast down, and shall not be able to rise. [all …]
|