Home
last modified time | relevance | path

Searched refs:maxthreads (Results 1 – 9 of 9) sorted by relevance

/freebsd/tools/tools/crypto/
H A Dcryptotest.c545 int maxthreads = 1; in main() local
582 maxthreads = atoi(optarg); in main()
612 if (maxthreads > CPU_SETSIZE) in main()
613 errx(EX_USAGE, "Too many threads, %d, choose fewer.", maxthreads); in main()
633 runtests(ealg, alg, count, sizes[j], cmd, maxthreads, profile); in main()
639 runtests(ealg, alg, count, sizes[i], cmd, maxthreads, profile); in main()
/freebsd/usr.bin/netstat/
H A Dnetisr.c57 static u_int maxthreads; variable
152 kread(nl[N_NETISR_MAXTHREADS].n_value, &maxthreads, sizeof(u_int)); in netisr_load_kvm_config()
191 netisr_load_sysctl_uint("net.isr.maxthreads", &maxthreads); in netisr_load_sysctl_config()
467 "Thread count", numthreads, maxthreads); in netisr_stats()
/freebsd/usr.sbin/nfsd/
H A Dnfsd.c85 static int maxthreads; variable
242 maxthreads = atoi(optarg); in main()
253 if (minthreads_set && maxthreads_set && minthreads > maxthreads) in main()
256 "maxthreads(%d)", minthreads, maxthreads); in main()
1040 nfsdargp->minthreads = nfsdargp->maxthreads = nfsdcnt; in start_server()
1043 nfsdargp->maxthreads = maxthreads_set ? maxthreads : nfsdargp->minthreads; in start_server()
1044 if (nfsdargp->maxthreads < nfsdargp->minthreads) in start_server()
1045 nfsdargp->maxthreads = nfsdargp->minthreads; in start_server()
/freebsd/sys/fs/nfs/
H A Dnfs.h185 int maxthreads; /* maximum service thread count */ member
221 int maxthreads; /* maximum service thread count */ member
/freebsd/sys/nfsserver/
H A Dnfs.h108 int maxthreads; /* maximum service thread count */ member
/freebsd/sys/fs/nfsserver/
H A Dnfs_nfsdkrpc.c630 args->maxthreads; in nfsrvd_nfsd()
H A Dnfs_nfsdport.c3828 nfsdarg.maxthreads = onfsdarg.maxthreads; in nfssvc_nfsd()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_tasking.cpp3811 kmp_int32 nthreads, maxthreads; local
3821 maxthreads = task_team->tt.tt_max_threads;
3834 if (maxthreads < nthreads) {
3844 __kmp_gtid_from_thread(thread), task_team, nthreads, maxthreads));
3853 (void *)old_data, maxthreads * sizeof(kmp_thread_data_t));
3857 for (i = maxthreads; i < nthreads; i++) {
/freebsd/sys/net/
H A Dnetisr.c170 SYSCTL_INT(_net_isr, OID_AUTO, maxthreads, CTLFLAG_RDTUN,