| /src/sys/cddl/dev/profile/ |
| H A D | profile.c | 230 profile_probe(profile_probe_t *prof, hrtime_t late) in profile_probe() argument 256 dtrace_probe(prof->prof_id, pc, upc, late, 0, 0); in profile_probe() 264 profile_probe_t *prof = pcpu->profc_probe; in profile_fire() local 269 profile_probe(prof, late); in profile_fire() 278 profile_probe_t *prof = arg; in profile_tick() local 280 profile_probe(prof, 0); in profile_tick() 281 prof->prof_expected += prof->prof_interval; in profile_tick() 282 callout_schedule_sbt(&prof->prof_cyclic, in profile_tick() 283 prof->prof_expected, 0, C_DIRECT_EXEC | C_ABSOLUTE); in profile_tick() 289 profile_probe_t *prof; in profile_create() local [all …]
|
| /src/sys/dev/ice/ |
| H A D | ice_flow.c | 396 struct ice_flow_prof *prof; member 449 struct ice_flow_prof *prof; in ice_flow_proc_seg_hdrs() local 455 prof = params->prof; in ice_flow_proc_seg_hdrs() 457 for (i = 0; i < params->prof->segs_cnt; i++) { in ice_flow_proc_seg_hdrs() 461 hdrs = prof->segs[i].hdrs; in ice_flow_proc_seg_hdrs() 571 flds = params->prof->segs[seg].fields; in ice_flow_xtract_fld() 644 prot_id = (params->prof->segs[seg].hdrs & ICE_FLOW_SEG_HDR_IPV4) ? in ice_flow_xtract_fld() 724 for (i = 0; i < params->prof->segs_cnt; i++) { in ice_flow_create_xtrct_seq() 728 ice_cp_bitmap(match, params->prof->segs[i].match, in ice_flow_create_xtrct_seq() 789 struct ice_flow_prof *p, *prof = NULL; in ice_flow_find_prof_conds() local [all …]
|
| H A D | ice_flex_pipe.c | 703 ice_find_prot_off(struct ice_hw *hw, enum ice_block blk, u8 prof, u16 fv_idx, in ice_find_prot_off() argument 708 if (prof >= hw->blk[blk].es.count) in ice_find_prot_off() 714 fv_ext = hw->blk[blk].es.t + (prof * hw->blk[blk].es.fvw); in ice_find_prot_off() 1741 sizeof(*hw->blk[block_id].prof.t); in ice_fill_tbl() 1742 dst = (u8 *)hw->blk[block_id].prof.t; in ice_fill_tbl() 1743 dst_len = hw->blk[block_id].prof.count * in ice_fill_tbl() 1744 sizeof(*hw->blk[block_id].prof.t); in ice_fill_tbl() 1822 struct ice_prof_tcam *prof = &hw->blk[i].prof; in ice_init_hw_tbls() local 1879 prof->sid = ice_blk_sids[i][ICE_SID_PR_OFF]; in ice_init_hw_tbls() 1880 prof->count = blk_sizes[i].prof_tcam; in ice_init_hw_tbls() [all …]
|
| H A D | ice_flex_pipe.h | 38 ice_find_prot_off(struct ice_hw *hw, enum ice_block blk, u8 prof, u16 fv_idx,
|
| /src/sys/kern/ |
| H A D | subr_prof.c | 94 #define PC_TO_INDEX(pc, prof) \ argument 95 ((int)(((u_quad_t)((pc) - (prof)->pr_off) * \ 96 (u_quad_t)((prof)->pr_scale)) >> 16) & ~1) 113 struct uprof *prof; in addupc_intr() local 117 prof = &td->td_proc->p_stats->p_prof; in addupc_intr() 119 if (pc < prof->pr_off || PC_TO_INDEX(pc, prof) >= prof->pr_size) { in addupc_intr() 139 struct uprof *prof; in addupc_task() local 154 prof = &p->p_stats->p_prof; in addupc_task() 156 if (pc < prof->pr_off || in addupc_task() 157 (i = PC_TO_INDEX(pc, prof)) >= prof->pr_size) { in addupc_task() [all …]
|
| /src/sys/dev/mlx5/mlx5_en/ |
| H A D | mlx5_en_dim.c | 35 struct net_dim_cq_moder prof; in mlx5e_dim_build_cq_param() local 43 prof = net_dim_profile[NET_DIM_CQ_PERIOD_MODE_START_FROM_CQE] in mlx5e_dim_build_cq_param() 45 MLX5_SET(cqc, cqc, cq_period, prof.usec); in mlx5e_dim_build_cq_param() 46 MLX5_SET(cqc, cqc, cq_max_count, prof.pkts); in mlx5e_dim_build_cq_param() 50 prof = net_dim_profile[NET_DIM_CQ_PERIOD_MODE_START_FROM_EQE] in mlx5e_dim_build_cq_param() 52 MLX5_SET(cqc, cqc, cq_period, prof.usec); in mlx5e_dim_build_cq_param() 53 MLX5_SET(cqc, cqc, cq_max_count, prof.pkts); in mlx5e_dim_build_cq_param()
|
| /src/sys/dev/mlx4/mlx4_en/ |
| H A 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()
|
| H A D | mlx4_en_netdev.c | 1382 priv->prof->tx_pause, in mlx4_en_start_port() 1383 priv->prof->tx_ppp, in mlx4_en_start_port() 1384 priv->prof->rx_pause, in mlx4_en_start_port() 1385 priv->prof->rx_ppp); in mlx4_en_start_port() 1685 priv->prof->rx_ring_size); in mlx4_en_free_resources() 1696 struct mlx4_en_port_profile *prof = priv->prof; in mlx4_en_alloc_resources() local 1703 prof->rx_ring_size, i, RX, node)) in mlx4_en_alloc_resources() 1707 prof->rx_ring_size, node)) in mlx4_en_alloc_resources() 1714 prof->tx_ring_size, i, TX, node)) in mlx4_en_alloc_resources() 1718 prof->tx_ring_size, TXBB_SIZE, node, i)) in mlx4_en_alloc_resources() [all …]
|
| H A 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() 1073 if (!priv->prof->rss_rings || priv->prof->rss_rings > priv->rx_ring_num) in mlx4_en_config_rss_steer() 1076 rss_rings = priv->prof->rss_rings; in mlx4_en_config_rss_steer()
|
| H A D | en.h | 448 struct mlx4_en_port_profile prof[MLX4_MAX_PORTS + 1]; member 545 struct mlx4_en_port_profile *prof; member 790 struct mlx4_en_port_profile *prof);
|
| /src/sys/contrib/dev/iwlwifi/fw/ |
| H A D | regulatory.c | 248 struct iwl_sar_profile *prof; in iwl_sar_fill_table() local 259 prof = &fwrt->sar_profiles[profs[i] - 1]; in iwl_sar_fill_table() 262 if (!prof->enabled) { in iwl_sar_fill_table() 279 cpu_to_le16(prof->chains[i].subbands[j]); in iwl_sar_fill_table() 281 j, prof->chains[i].subbands[j]); in iwl_sar_fill_table()
|
| /src/usr.bin/indent/ |
| H A D | args.c | 178 static char prof[] = ".indent.pro"; in set_profile() local 181 snprintf(fname, sizeof(fname), "%s/%s", getenv("HOME"), prof); in set_profile() 188 if ((f = fopen(option_source = prof, "r")) != NULL) { in set_profile()
|
| /src/tools/tools/mtxstat/ |
| H A D | mtxratio.sh | 1 sysctl debug.mutex.prof.stats | awk '$1 ~ /[0-9]+/ { if ($3 != 0) { hld_prc = $5 / $3 * 100; lck_pr…
|
| /src/contrib/jemalloc/ |
| H A D | INSTALL.md | 134 * `--enable-prof` 136 Enable heap profiling and leak detection functionality. See the "opt.prof" 141 + libunwind (requires --enable-prof-libunwind) 142 + libgcc (unless --disable-prof-libgcc) 143 + gcc intrinsics (unless --disable-prof-gcc) 145 * `--enable-prof-libunwind` 150 * `--disable-prof-libgcc` 154 * `--disable-prof-gcc`
|
| H A D | configure.ac | 1276 AC_ARG_ENABLE([prof], optenable 1277 [AS_HELP_STRING([--enable-prof], [Enable allocation profiling])], 1292 AC_ARG_ENABLE([prof-libunwind], 1293 [AS_HELP_STRING([--enable-prof-libunwind], [Use libunwind for backtracing])], 1299 AC_MSG_ERROR([--enable-prof-libunwind should only be used with --enable-prof]) 1332 AC_ARG_ENABLE([prof-libgcc], 1333 [AS_HELP_STRING([--disable-prof-libgcc], 1357 AC_ARG_ENABLE([prof-gcc], 1358 [AS_HELP_STRING([--disable-prof-gcc], 2658 AC_MSG_RESULT([prof : ${enable_prof}]) [all …]
|
| /src/sys/amd64/linux32/ |
| H A D | linux32_dummy_machdep.c | 49 UNIMPLEMENTED(prof);
|
| /src/sys/i386/linux/ |
| H A D | linux_dummy_machdep.c | 55 UNIMPLEMENTED(prof);
|
| /src/sys/ofed/drivers/infiniband/ulp/sdp/ |
| H A 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()
|
| /src/contrib/jemalloc/include/jemalloc/internal/ |
| H A D | mutex_prof.h | 12 OP(prof) \
|
| /src/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | FixedMetadataKinds.def | 15 LLVM_FIXED_MD_KIND(MD_prof, "prof", 2)
|
| /src/contrib/file/magic/Magdir/ |
| H A D | varied.out | 28 0 string gmon GNU prof performance data
|
| H A D | clipper | 65 #4 string prof CLIPPER instruction profile
|
| /src/lib/libc/stdlib/malloc/jemalloc/ |
| H A D | Makefile.inc | 6 prof.c rtree.c safety_check.c sc.c stats.c sz.c tcache.c \
|
| /src/crypto/openssl/ssl/statem/ |
| H A D | extensions_clnt.c | 497 const SRTP_PROTECTION_PROFILE *prof = sk_SRTP_PROTECTION_PROFILE_value(clnt, i); in tls_construct_ctos_use_srtp() local 499 if (prof == NULL || !WPACKET_put_bytes_u16(pkt, prof->id)) { in tls_construct_ctos_use_srtp() 1765 SRTP_PROTECTION_PROFILE *prof; in tls_parse_stoc_use_srtp() local 1794 prof = sk_SRTP_PROTECTION_PROFILE_value(clnt, i); in tls_parse_stoc_use_srtp() 1796 if (prof->id == id) { in tls_parse_stoc_use_srtp() 1797 s->srtp_profile = prof; in tls_parse_stoc_use_srtp()
|
| /src/crypto/krb5/src/util/profile/ |
| H A D | prof_err.et | 1 error_table prof
|