/freebsd/sys/cddl/dev/profile/ |
H A D | profile.c | 231 profile_probe(profile_probe_t *prof, hrtime_t late) in profile_probe() argument 257 dtrace_probe(prof->prof_id, pc, upc, late, 0, 0); in profile_probe() 265 profile_probe_t *prof = pcpu->profc_probe; in profile_fire() local 270 profile_probe(prof, late); in profile_fire() 279 profile_probe_t *prof = arg; in profile_tick() local 281 profile_probe(prof, 0); in profile_tick() 282 prof->prof_expected += prof->prof_interval; in profile_tick() 283 callout_schedule_sbt(&prof->prof_cyclic, in profile_tick() 284 prof->prof_expected, 0, C_DIRECT_EXEC | C_ABSOLUTE); in profile_tick() 290 profile_probe_t *prof; in profile_create() local [all …]
|
/freebsd/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() 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 in ice_flow_create_xtrct_seq() 451 struct ice_flow_prof *prof; ice_flow_proc_seg_hdrs() local 794 struct ice_flow_prof *p, *prof = NULL; ice_flow_find_prof_conds() local 912 ice_flow_add_prof_sync(struct ice_hw * hw,enum ice_block blk,enum ice_flow_dir dir,u64 prof_id,struct ice_flow_seg_info * segs,u8 segs_cnt,struct ice_flow_action * acts,u8 acts_cnt,struct ice_flow_prof ** prof) ice_flow_add_prof_sync() argument 985 ice_flow_rem_prof_sync(struct ice_hw * hw,enum ice_block blk,struct ice_flow_prof * prof) ice_flow_rem_prof_sync() argument 1039 ice_flow_assoc_prof(struct ice_hw * hw,enum ice_block blk,struct ice_flow_prof * prof,u16 vsi_handle) ice_flow_assoc_prof() argument 1070 ice_flow_disassoc_prof(struct ice_hw * hw,enum ice_block blk,struct ice_flow_prof * prof,u16 vsi_handle) ice_flow_disassoc_prof() argument 1105 ice_flow_add_prof(struct ice_hw * hw,enum ice_block blk,enum ice_flow_dir dir,u64 prof_id,struct ice_flow_seg_info * segs,u8 segs_cnt,struct ice_flow_action * acts,u8 acts_cnt,struct ice_flow_prof ** prof) ice_flow_add_prof() argument 1143 struct ice_flow_prof *prof; ice_flow_rem_prof() local 1414 ice_get_rss_hdr_type(struct ice_flow_prof * prof) ice_get_rss_hdr_type() argument 1441 ice_rem_rss_list(struct ice_hw * hw,u16 vsi_handle,struct ice_flow_prof * prof) ice_rem_rss_list() argument 1482 ice_add_rss_list(struct ice_hw * hw,u16 vsi_handle,struct ice_flow_prof * prof) ice_add_rss_list() argument 1553 struct ice_flow_prof *prof = NULL; ice_add_rss_cfg_sync() local 1705 struct ice_flow_prof *prof; ice_rem_rss_cfg_sync() local [all...] |
H A D | ice_flex_pipe.c | 694 * ice_find_prot_off - find prot ID and offset pair, based on prof and FV index 697 * @prof: profile ID 703 ice_find_prot_off(struct ice_hw *hw, enum ice_block blk, u8 prof, u16 fv_idx, in ice_find_prot_off() 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 in ice_init_hw_tbls() 702 ice_find_prot_off(struct ice_hw * hw,enum ice_block blk,u8 prof,u16 fv_idx,u8 * prot,u16 * off) ice_find_prot_off() argument 1821 struct ice_prof_tcam *prof = &hw->blk[i].prof; ice_init_hw_tbls() local 2065 struct ice_prof_tcam *prof = &hw->blk[i].prof; ice_clear_hw_tbls() local 2548 struct ice_prof_map *prof; ice_add_prof() local 2735 ice_rem_prof_id(struct ice_hw * hw,enum ice_block blk,struct ice_vsig_prof * prof) ice_rem_prof_id() argument [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,
|
H A D | ice_flex_type.h | 438 struct ice_prof_tcam prof; member
|
/freebsd/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 …]
|
H A D | kern_clock.c | 77 PMC_SOFT_DEFINE_EX( , , clock, prof, \ 786 PMC_SOFT_CALL_TF( , , clock, prof, td->td_intr_frame); in profclock()
|
/freebsd/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()
|
/freebsd/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);
|
/freebsd/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()
|
/freebsd/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…
|
/freebsd/sys/i386/linux/ |
H A D | linux_dummy_machdep.c | 55 UNIMPLEMENTED(prof);
|
/freebsd/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()
|
/freebsd/contrib/jemalloc/include/jemalloc/internal/ |
H A D | mutex_prof.h | 11 OP(prof)
|
/freebsd/lib/libc/stdlib/malloc/jemalloc/ |
H A D | Makefile.inc | 6 prng.c prof.c rtree.c safety_check.c sc.c stats.c sz.c tcache.c \
|
/freebsd/sys/contrib/dev/iwlwifi/fw/ |
H A D | acpi.c | 541 struct iwl_sar_profile *prof; iwl_sar_fill_table() local
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | FixedMetadataKinds.def | 15 LLVM_FIXED_MD_KIND(MD_prof, "prof", 2)
|
/freebsd/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
|
H A D | android | 218 # Android ART (baseline) profile + metadata: baseline.prof, baseline.profm 227 !:ext prof
|
/freebsd/crypto/openssl/ssl/statem/ |
H A D | extensions_clnt.c | 452 const SRTP_PROTECTION_PROFILE *prof = in tls_construct_ctos_use_srtp() local 455 if (prof == NULL || !WPACKET_put_bytes_u16(pkt, prof->id)) { in tls_construct_ctos_use_srtp() 1660 SRTP_PROTECTION_PROFILE *prof; in tls_parse_stoc_use_srtp() local 1689 prof = sk_SRTP_PROTECTION_PROFILE_value(clnt, i); in tls_parse_stoc_use_srtp() 1691 if (prof->id == id) { in tls_parse_stoc_use_srtp() 1692 s->srtp_profile = prof; in tls_parse_stoc_use_srtp()
|
/freebsd/contrib/jemalloc/ |
H A D | ChangeLog | 160 - Allow prof_active to control opt.lg_prof_interval and prof.gdump. 355 + stats.mutexes.{ctl,background_thread,prof,reset}. 795 with interposed resets (triggered via the "prof.reset" mallctl). This bug 848 enable/disable heap profiling on a per thread basis. Add the "prof.reset", 849 "prof.lg_sample", "thread.prof.name", "thread.prof.active", 850 "opt.prof_thread_active_init", "prof.thread_active_init", and 851 "thread.prof.active" mallctls. 883 - Add the "prof.gdump" mallctl, which makes it possible to toggle the gdump 1082 + internal zero-initialized data structures (relevant to tcache and prof 1119 thread never allocated memory. Only the quarantine and prof facilities were [all …]
|