| /freebsd-12-stable/sys/cddl/dev/profile/ |
| D | profile.c | 269 profile_probe(profile_probe_t *prof, hrtime_t late) in profile_probe() argument 293 dtrace_probe(prof->prof_id, pc, upc, late, 0, 0); in profile_probe() 300 profile_probe_t *prof = pcpu->profc_probe; in profile_fire() local 305 profile_probe(prof, late); in profile_fire() 314 profile_probe_t *prof = arg; in profile_tick() local 316 profile_probe(prof, 0); in profile_tick() 317 prof->prof_expected += prof->prof_interval; in profile_tick() 318 callout_schedule_sbt(&prof->prof_cyclic, in profile_tick() 319 prof->prof_expected, 0, C_DIRECT_EXEC | C_ABSOLUTE); in profile_tick() 325 profile_probe_t *prof; in profile_create() local [all …]
|
| /freebsd-12-stable/sys/dev/ice/ |
| D | ice_flow.c | 397 struct ice_flow_prof *prof; member 451 struct ice_flow_prof *prof; in ice_flow_proc_seg_hdrs() local 457 prof = params->prof; in ice_flow_proc_seg_hdrs() 459 for (i = 0; i < params->prof->segs_cnt; i++) { in ice_flow_proc_seg_hdrs() 463 hdrs = prof->segs[i].hdrs; in ice_flow_proc_seg_hdrs() 575 flds = params->prof->segs[seg].fields; in ice_flow_xtract_fld() 650 prot_id = (params->prof->segs[seg].hdrs & in ice_flow_xtract_fld() 731 for (i = 0; i < params->prof->segs_cnt; i++) { in ice_flow_create_xtrct_seq() 732 u64 match = params->prof->segs[i].match; in ice_flow_create_xtrct_seq() 795 struct ice_flow_prof *p, *prof = NULL; in ice_flow_find_prof_conds() local [all …]
|
| D | ice_flex_pipe.c | 2533 ice_find_prot_off(struct ice_hw *hw, enum ice_block blk, u8 prof, u16 fv_idx, in ice_find_prot_off() argument 2538 if (prof >= hw->blk[blk].es.count) in ice_find_prot_off() 2544 fv_ext = hw->blk[blk].es.t + (prof * hw->blk[blk].es.fvw); in ice_find_prot_off() 3571 sizeof(*hw->blk[block_id].prof.t); in ice_fill_tbl() 3572 dst = (u8 *)hw->blk[block_id].prof.t; in ice_fill_tbl() 3573 dst_len = hw->blk[block_id].prof.count * in ice_fill_tbl() 3574 sizeof(*hw->blk[block_id].prof.t); in ice_fill_tbl() 3645 ice_fill_tbl(hw, blk_id, hw->blk[blk_id].prof.sid); in ice_fill_blk_tbls() 3742 ice_free(hw, hw->blk[i].prof.t); in ice_free_hw_tbls() 3779 struct ice_prof_tcam *prof = &hw->blk[i].prof; in ice_clear_hw_tbls() local [all …]
|
| D | ice_flex_pipe.h | 53 ice_find_prot_off(struct ice_hw *hw, enum ice_block blk, u8 prof, u16 fv_idx,
|
| /freebsd-12-stable/sys/dev/mlx5/mlx5_en/ |
| D | mlx5_en_dim.c | 34 struct net_dim_cq_moder prof; in mlx5e_dim_build_cq_param() local 42 prof = net_dim_profile[NET_DIM_CQ_PERIOD_MODE_START_FROM_CQE] in mlx5e_dim_build_cq_param() 44 MLX5_SET(cqc, cqc, cq_period, prof.usec); in mlx5e_dim_build_cq_param() 45 MLX5_SET(cqc, cqc, cq_max_count, prof.pkts); in mlx5e_dim_build_cq_param() 49 prof = net_dim_profile[NET_DIM_CQ_PERIOD_MODE_START_FROM_EQE] in mlx5e_dim_build_cq_param() 51 MLX5_SET(cqc, cqc, cq_period, prof.usec); in mlx5e_dim_build_cq_param() 52 MLX5_SET(cqc, cqc, cq_max_count, prof.pkts); in mlx5e_dim_build_cq_param()
|
| /freebsd-12-stable/sys/dev/mlx4/mlx4_en/ |
| D | mlx4_en_main.c | 89 params->prof[i].rx_pause = 1; in mlx4_en_get_profile() 90 params->prof[i].rx_ppp = pfcrx; in mlx4_en_get_profile() 91 params->prof[i].tx_pause = 1; in mlx4_en_get_profile() 92 params->prof[i].tx_ppp = pfctx; in mlx4_en_get_profile() 93 params->prof[i].tx_ring_size = MLX4_EN_DEF_TX_RING_SIZE; in mlx4_en_get_profile() 94 params->prof[i].rx_ring_size = MLX4_EN_DEF_RX_RING_SIZE; in mlx4_en_get_profile() 95 params->prof[i].tx_ring_num = params->num_tx_rings_p_up * in mlx4_en_get_profile() 97 params->prof[i].rss_rings = 0; in mlx4_en_get_profile() 98 params->prof[i].inline_thold = inline_thold; in mlx4_en_get_profile() 175 if (mlx4_en_init_netdev(mdev, i, &mdev->profile.prof[i])) in mlx4_en_activate()
|
| D | mlx4_en_netdev.c | 1384 priv->prof->tx_pause, in mlx4_en_start_port() 1385 priv->prof->tx_ppp, in mlx4_en_start_port() 1386 priv->prof->rx_pause, in mlx4_en_start_port() 1387 priv->prof->rx_ppp); in mlx4_en_start_port() 1688 priv->prof->rx_ring_size); in mlx4_en_free_resources() 1699 struct mlx4_en_port_profile *prof = priv->prof; in mlx4_en_alloc_resources() local 1706 prof->rx_ring_size, i, RX, node)) in mlx4_en_alloc_resources() 1710 prof->rx_ring_size, node)) in mlx4_en_alloc_resources() 1717 prof->tx_ring_size, i, TX, node)) in mlx4_en_alloc_resources() 1721 prof->tx_ring_size, TXBB_SIZE, node, i)) in mlx4_en_alloc_resources() [all …]
|
| D | mlx4_en_rx.c | 263 for (buf_ind = 0; buf_ind < priv->prof->rx_ring_size; buf_ind++) { in mlx4_en_fill_rx_buffers() 336 mdev->profile.prof[i].rx_ring_num = in mlx4_en_set_num_rx_rings() 1068 if (!priv->prof->rss_rings || priv->prof->rss_rings > priv->rx_ring_num) in mlx4_en_config_rss_steer() 1071 rss_rings = priv->prof->rss_rings; in mlx4_en_config_rss_steer()
|
| D | en.h | 441 struct mlx4_en_port_profile prof[MLX4_MAX_PORTS + 1]; member 538 struct mlx4_en_port_profile *prof; member 777 struct mlx4_en_port_profile *prof);
|
| /freebsd-12-stable/sys/kern/ |
| D | subr_prof.c | 389 static SYSCTL_NODE(_kern, KERN_PROF, prof, CTLFLAG_RW, sysctl_kern_prof, ""); 442 #define PC_TO_INDEX(pc, prof) \ argument 443 ((int)(((u_quad_t)((pc) - (prof)->pr_off) * \ 444 (u_quad_t)((prof)->pr_scale)) >> 16) & ~1) 461 struct uprof *prof; in addupc_intr() local 465 prof = &td->td_proc->p_stats->p_prof; in addupc_intr() 467 if (pc < prof->pr_off || PC_TO_INDEX(pc, prof) >= prof->pr_size) { in addupc_intr() 489 struct uprof *prof; in addupc_task() local 504 prof = &p->p_stats->p_prof; in addupc_task() 506 if (pc < prof->pr_off || in addupc_task() [all …]
|
| D | kern_clock.c | 84 PMC_SOFT_DEFINE_EX( , , clock, prof, \ 748 PMC_SOFT_CALL_TF( , , clock, prof, td->td_intr_frame); in profclock()
|
| /freebsd-12-stable/usr.bin/indent/ |
| D | args.c | 184 static char prof[] = ".indent.pro"; in set_profile() local 187 snprintf(fname, sizeof(fname), "%s/%s", getenv("HOME"), prof); in set_profile() 194 if ((f = fopen(option_source = prof, "r")) != NULL) { in set_profile()
|
| /freebsd-12-stable/tools/tools/mtxstat/ |
| D | mtxratio.sh | 2 sysctl debug.mutex.prof.stats | awk '$1 ~ /[0-9]+/ { if ($3 != 0) { hld_prc = $5 / $3 * 100; lck_pr…
|
| /freebsd-12-stable/sys/i386/linux/ |
| D | linux_dummy_machdep.c | 58 UNIMPLEMENTED(prof);
|
| /freebsd-12-stable/sys/ofed/drivers/infiniband/ulp/sdp/ |
| D | sdp_proc.c | 461 struct proc_dir_entry *prof = NULL; in sdp_proc_init() local 487 prof = proc_net_fops_create(&init_net, PROC_SDP_PERF, in sdp_proc_init() 489 if (!prof) in sdp_proc_init()
|
| /freebsd-12-stable/sys/amd64/linux32/ |
| D | linux32_dummy_machdep.c | 52 UNIMPLEMENTED(prof);
|
| /freebsd-12-stable/contrib/jemalloc/include/jemalloc/internal/ |
| D | mutex_prof.h | 11 OP(prof)
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| D | FixedMetadataKinds.def | 15 LLVM_FIXED_MD_KIND(MD_prof, "prof", 2)
|
| /freebsd-12-stable/lib/libc/stdlib/jemalloc/ |
| D | Makefile.inc | 8 prng.c prof.c rtree.c stats.c sz.c tcache.c ticker.c tsd.c witness.c
|
| /freebsd-12-stable/crypto/openssl/ssl/statem/ |
| D | extensions_clnt.c | 448 const SRTP_PROTECTION_PROFILE *prof = in tls_construct_ctos_use_srtp() local 451 if (prof == NULL || !WPACKET_put_bytes_u16(pkt, prof->id)) { in tls_construct_ctos_use_srtp() 1706 SRTP_PROTECTION_PROFILE *prof; in tls_parse_stoc_use_srtp() local 1737 prof = sk_SRTP_PROTECTION_PROFILE_value(clnt, i); in tls_parse_stoc_use_srtp() 1739 if (prof->id == id) { in tls_parse_stoc_use_srtp() 1740 s->srtp_profile = prof; in tls_parse_stoc_use_srtp()
|
| /freebsd-12-stable/contrib/file/magic/Magdir/ |
| D | varied.out | 28 0 string gmon GNU prof performance data
|
| D | clipper | 65 #4 string prof CLIPPER instruction profile
|
| /freebsd-12-stable/contrib/binutils/bfd/ |
| D | ecoffswap.h | 352 intern->prof = 0 != (ext->p_bits1[0] & PDR_BITS1_PROF_BIG); in ecoff_swap_pdr_in() 362 intern->prof = 0 != (ext->p_bits1[0] & PDR_BITS1_PROF_LITTLE); in ecoff_swap_pdr_in() 410 | (intern->prof ? PDR_BITS1_PROF_BIG : 0) in ecoff_swap_pdr_out() 421 | (intern->prof ? PDR_BITS1_PROF_LITTLE : 0) in ecoff_swap_pdr_out()
|
| /freebsd-12-stable/contrib/jemalloc/ |
| D | ChangeLog | 24 - Allow prof_active to control opt.lg_prof_interval and prof.gdump. 219 + stats.mutexes.{ctl,background_thread,prof,reset}. 659 with interposed resets (triggered via the "prof.reset" mallctl). This bug 712 enable/disable heap profiling on a per thread basis. Add the "prof.reset", 713 "prof.lg_sample", "thread.prof.name", "thread.prof.active", 714 "opt.prof_thread_active_init", "prof.thread_active_init", and 715 "thread.prof.active" mallctls. 747 - Add the "prof.gdump" mallctl, which makes it possible to toggle the gdump 946 + internal zero-initialized data structures (relevant to tcache and prof 983 thread never allocated memory. Only the quarantine and prof facilities were [all …]
|
| /freebsd-12-stable/contrib/binutils/include/coff/ |
| D | sym.h | 175 unsigned prof : 1; /* true if compiled with -pg */ member
|