Searched refs:prof (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-11-stable/tools/tools/mtxstat/
H A Dmtxratio.sh2 sysctl debug.mutex.prof.stats | awk '$1 ~ /[0-9]+/ { if ($3 != 0) { hld_prc = $5 / $3 * 100; lck_prc = $6 / $3 * 100 } else { hld_prc = 0; lck_prc = 0 } print $1 " " $2 " " $3 " " $4 " " $5 " " hld_prc " " $6 " " lck_prc " " substr($0, index($0, $7)); next } { print }'
/freebsd-11-stable/sys/dev/mlx5/mlx5_en/
H A Dmlx5_en_dim.c34 struct net_dim_cq_moder prof; local
42 prof = net_dim_profile[NET_DIM_CQ_PERIOD_MODE_START_FROM_CQE]
44 MLX5_SET(cqc, cqc, cq_period, prof.usec);
45 MLX5_SET(cqc, cqc, cq_max_count, prof.pkts);
49 prof = net_dim_profile[NET_DIM_CQ_PERIOD_MODE_START_FROM_EQE]
51 MLX5_SET(cqc, cqc, cq_period, prof.usec);
52 MLX5_SET(cqc, cqc, cq_max_count, prof.pkts);
/freebsd-11-stable/sys/cddl/dev/profile/
H A Dprofile.c272 profile_probe_t *prof = pcpu->profc_probe; local
298 dtrace_probe(prof->prof_id, pc, upc, late, 0, 0);
308 profile_probe_t *prof = arg; local
327 dtrace_probe(prof->prof_id, pc, upc, 0, 0, 0);
329 prof->prof_expected += prof->prof_interval;
330 callout_schedule_sbt(&prof->prof_cyclic,
331 prof->prof_expected, 0, C_DIRECT_EXEC | C_ABSOLUTE);
337 profile_probe_t *prof; local
351 prof
502 profile_probe_t *prof = parg; local
520 profile_probe_t *prof = arg; local
550 profile_probe_t *prof = parg; local
582 profile_probe_t *prof = parg; local
594 profile_enable_omni(profile_probe_t *prof) argument
614 profile_disable_omni(profile_probe_t *prof) argument
636 profile_probe_t *prof = parg; local
653 profile_probe_t *prof = parg; local
[all...]
/freebsd-11-stable/sys/dev/mlx4/mlx4_en/
H A Dmlx4_en_main.c89 params->prof[i].rx_pause = 1;
90 params->prof[i].rx_ppp = pfcrx;
91 params->prof[i].tx_pause = 1;
92 params->prof[i].tx_ppp = pfctx;
93 params->prof[i].tx_ring_size = MLX4_EN_DEF_TX_RING_SIZE;
94 params->prof[i].rx_ring_size = MLX4_EN_DEF_RX_RING_SIZE;
95 params->prof[i].tx_ring_num = params->num_tx_rings_p_up *
97 params->prof[i].rss_rings = 0;
98 params->prof[i].inline_thold = inline_thold;
175 if (mlx4_en_init_netdev(mdev, i, &mdev->profile.prof[
[all...]
H A Dmlx4_en_netdev.c1382 priv->prof->tx_pause,
1383 priv->prof->tx_ppp,
1384 priv->prof->rx_pause,
1385 priv->prof->rx_ppp);
1686 priv->prof->rx_ring_size);
1697 struct mlx4_en_port_profile *prof = priv->prof; local
1704 prof->rx_ring_size, i, RX, node))
1708 prof->rx_ring_size, node))
1715 prof
2137 mlx4_en_init_netdev(struct mlx4_en_dev *mdev, int port, struct mlx4_en_port_profile *prof) argument
[all...]
H A Dmlx4_en_rx.c263 for (buf_ind = 0; buf_ind < priv->prof->rx_ring_size; buf_ind++) {
336 mdev->profile.prof[i].rx_ring_num =
1068 if (!priv->prof->rss_rings || priv->prof->rss_rings > priv->rx_ring_num)
1071 rss_rings = priv->prof->rss_rings;
H A Den.h440 struct mlx4_en_port_profile prof[MLX4_MAX_PORTS + 1]; member in struct:mlx4_en_profile
537 struct mlx4_en_port_profile *prof; member in struct:mlx4_en_priv
776 struct mlx4_en_port_profile *prof);
/freebsd-11-stable/crypto/openssl/ssl/
H A Dd1_srtp.c246 SRTP_PROTECTION_PROFILE *prof; local
267 prof = sk_SRTP_PROTECTION_PROFILE_value(clnt, i);
268 s2n(prof->id, p);
393 SRTP_PROTECTION_PROFILE *prof; local
433 prof = sk_SRTP_PROTECTION_PROFILE_value(clnt, i);
435 if (prof->id == id) {
436 s->srtp_profile = prof;
/freebsd-11-stable/sys/kern/
H A Dsubr_prof.c388 static SYSCTL_NODE(_kern, KERN_PROF, prof, CTLFLAG_RW, sysctl_kern_prof, "");
441 #define PC_TO_INDEX(pc, prof) \
442 ((int)(((u_quad_t)((pc) - (prof)->pr_off) * \
443 (u_quad_t)((prof)->pr_scale)) >> 16) & ~1)
461 struct uprof *prof; local
468 prof = &td->td_proc->p_stats->p_prof;
470 if (pc < prof->pr_off ||
471 (i = PC_TO_INDEX(pc, prof)) >= prof->pr_size) {
476 addr = prof
496 struct uprof *prof; local
[all...]
H A Dkern_clock.c80 PMC_SOFT_DEFINE_EX( , , clock, prof, \
817 PMC_SOFT_CALL_TF( , , clock, prof, td->td_intr_frame);
H A Dsubr_lock.c684 static SYSCTL_NODE(_debug_lock, OID_AUTO, prof, CTLFLAG_RD, NULL,
/freebsd-11-stable/lib/libc/stdlib/jemalloc/
H A DMakefile.inc7 mutex.c nstime.c pages.c prng.c prof.c quarantine.c rtree.c stats.c \
/freebsd-11-stable/usr.bin/indent/
H A Dargs.c178 static char prof[] = ".indent.pro"; local
180 snprintf(fname, sizeof(fname), "%s/%s", getenv("HOME"), prof);
185 if ((f = fopen(option_source = prof, "r")) != NULL) {
/freebsd-11-stable/contrib/tcsh/
H A DMakefile.std429 csh.prof: ${OBJS} sh.prof.${SUF} mcrt0.${SUF}
430 rm -f csh.prof
431 ld -X mcrt0.${SUF} ${OBJS} -o csh.prof ${LIBES} -lc
433 sh.prof.${SUF}:
434 cp sh.c sh.prof.c
435 ${CC} ${CF} ${CFLAGS} -DPROF sh.prof.c
491 ${RM} -f *.${SUF} sh.prof.c ed.defns.h tc.const.h sh.err.h tc.defs.c
H A DMakefile.vms406 csh.prof: ${OBJS} sh.prof.${SUF} mcrt0.${SUF}
407 rm -f csh.prof
408 ld -X mcrt0.${SUF} ${OBJS} -o csh.prof ${LIBES} -lc
410 sh.prof.${SUF}:
411 cp sh.c sh.prof.c
412 ${CC} ${CF} ${CFLAGS} -DPROF sh.prof.c
468 ${RM} -f *.${SUF} sh.prof.c ed.defns.h tc.const.h sh.err.h tc.defs.c
H A DMakefile.in557 csh.prof: ${OBJS} sh.prof.${SUF} mcrt0.${SUF}
558 rm -f csh.prof
559 ld -X mcrt0.${SUF} ${OBJS} -o csh.prof ${LIBES} -lc
561 sh.prof.${SUF}:
562 cp sh.c sh.prof.c
563 ${CC} ${CF} ${CFLAGS} ${CPPFLAGS} -DPROF sh.prof.c
627 ${RM} -f sh.prof.c ed.defns.h tc.const.h sh.err.h tc.defs.c
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_proc.c459 struct proc_dir_entry *prof = NULL; local
485 prof = proc_net_fops_create(&init_net, PROC_SDP_PERF,
487 if (!prof)
/freebsd-11-stable/contrib/binutils/include/coff/
H A Dsym.h175 unsigned prof : 1; /* true if compiled with -pg */ member in struct:pdr
/freebsd-11-stable/sys/amd64/linux32/
H A Dlinux32_dummy.c59 UNIMPLEMENTED(prof); variable
/freebsd-11-stable/sys/i386/linux/
H A Dlinux_dummy.c59 UNIMPLEMENTED(prof); variable
/freebsd-11-stable/contrib/jemalloc/src/
H A Dstats.c524 OPT_WRITE_BOOL(prof)
526 OPT_WRITE_BOOL_MUTABLE(prof_active, prof.active)
528 prof.thread_active_init)
579 if (je_mallctl("opt.prof", &bv, &bsz, NULL, 0) == 0 && bv) {
580 CTL_GET("prof.lg_sample", &sv, size_t);
/freebsd-11-stable/contrib/binutils/bfd/
H A Decoffswap.h352 intern->prof = 0 != (ext->p_bits1[0] & PDR_BITS1_PROF_BIG);
362 intern->prof = 0 != (ext->p_bits1[0] & PDR_BITS1_PROF_LITTLE);
410 | (intern->prof ? PDR_BITS1_PROF_BIG : 0)
421 | (intern->prof ? PDR_BITS1_PROF_LITTLE : 0)
H A Decofflink.c2065 each procedure and set the "prof" bit in the PDR to indicate
2136 /* Find PDR that is closest to OFFSET. If pdr.prof is set,
2138 simply pretend that pdr.prof *implies* a lower entry-point.
2146 if (offset >= (pdr.adr - 0x10 * pdr.prof))
2148 dist = offset - (pdr.adr - 0x10 * pdr.prof);
2186 offset -= pdr.adr - 0x10 * pdr.prof;
/freebsd-11-stable/gnu/usr.bin/cc/cc_int/
H A DMakefile54 print-rtl.o print-tree.o profile.o value-prof.o var-tracking.o \
/freebsd-11-stable/sys/dev/mlx5/mlx5_core/
H A Dmlx5_main.c427 struct mlx5_profile *prof = dev->profile; local
450 if (prof->mask & MLX5_PROF_MASK_QP_SIZE)
452 prof->log_max_qp);

Completed in 301 milliseconds

12