Home
last modified time | relevance | path

Searched refs:prof (Results 1 – 24 of 24) sorted by relevance

/f-stack/dpdk/drivers/net/ice/base/
H A Dice_flow.c808 prof = params->prof; in ice_flow_proc_seg_hdrs()
1570 prof = p; in ice_flow_find_prof_conds()
1576 return prof; in ice_flow_find_prof_conds()
1913 *prof = params->prof; in ice_flow_add_prof_sync()
3020 e->prof = prof; in ice_flow_add_entry()
3082 prof = entry->prof; in ice_flow_rem_entry()
3084 if (prof) { in ice_flow_rem_entry()
3529 &prof->segs[prof->segs_cnt - 1]; in ice_rss_update_symm()
3628 if (prof) { in ice_add_rss_cfg_sync()
3642 if (prof) { in ice_add_rss_cfg_sync()
[all …]
H A Dice_flex_pipe.c3810 struct ice_prof_tcam *prof = &hw->blk[i].prof; in ice_clear_hw_tbls() local
3838 ice_memset(prof->t, 0, prof->count * sizeof(*prof->t), in ice_clear_hw_tbls()
3869 struct ice_prof_tcam *prof = &hw->blk[i].prof; in ice_init_hw_tbls() local
3931 ice_calloc(hw, prof->count, sizeof(*prof->t)); in ice_init_hw_tbls()
3933 if (!prof->t) in ice_init_hw_tbls()
4621 prof->ptg[prof->ptg_cnt] = ptg; in ice_add_prof_attrib()
4623 &prof->attr[prof->ptg_cnt]); in ice_add_prof_attrib()
4700 if (!prof) in ice_add_prof()
4748 prof->ptg[prof->ptg_cnt] = ptg; in ice_add_prof()
4749 prof->attr[prof->ptg_cnt].flags = 0; in ice_add_prof()
[all …]
H A Dice_flow.h421 struct ice_flow_prof *prof; member
514 struct ice_flow_prof **prof);
519 struct ice_flow_prof *prof, u16 vsi_handle);
H A Dice_flex_pipe.h28 ice_find_prot_off(struct ice_hw *hw, enum ice_block blk, u8 prof, u16 fv_idx,
H A Dice_flex_type.h744 struct ice_prof_tcam prof; member
H A Dice_switch.c1642 u8 i, prof, idx, prot = 0; in ice_get_recp_frm_fw() local
1662 prof = ice_find_first_bit(recipe_to_profile[idx], in ice_get_recp_frm_fw()
1680 if (ice_is_bit_set(hw->switch_info->prof_res_bm[prof], in ice_get_recp_frm_fw()
1686 ice_find_prot_off(hw, ICE_BLK_SW, prof, in ice_get_recp_frm_fw()
/f-stack/freebsd/kern/
H A Dsubr_prof.c389 static SYSCTL_NODE(_kern, KERN_PROF, prof,
444 #define PC_TO_INDEX(pc, prof) \ argument
445 ((int)(((u_quad_t)((pc) - (prof)->pr_off) * \
463 struct uprof *prof; in addupc_intr() local
467 prof = &td->td_proc->p_stats->p_prof; in addupc_intr()
469 if (pc < prof->pr_off || PC_TO_INDEX(pc, prof) >= prof->pr_size) { in addupc_intr()
491 struct uprof *prof; in addupc_task() local
506 prof = &p->p_stats->p_prof; in addupc_task()
508 if (pc < prof->pr_off || in addupc_task()
509 (i = PC_TO_INDEX(pc, prof)) >= prof->pr_size) { in addupc_task()
[all …]
H A Dkern_clock.c85 PMC_SOFT_DEFINE_EX( , , clock, prof, \
759 PMC_SOFT_CALL_TF( , , clock, prof, td->td_intr_frame); in profclock()
H A Dsubr_lock.c729 static SYSCTL_NODE(_debug_lock, OID_AUTO, prof,
/f-stack/dpdk/drivers/net/mvpp2/
H A Dmrvl_mtr.c78 struct mrvl_mtr_profile *prof; in mrvl_meter_profile_add() local
91 prof = mrvl_mtr_profile_from_id(priv, meter_profile_id); in mrvl_meter_profile_add()
92 if (prof) in mrvl_meter_profile_add()
97 prof = rte_zmalloc_socket(NULL, sizeof(*prof), 0, rte_socket_id()); in mrvl_meter_profile_add()
98 if (!prof) in mrvl_meter_profile_add()
103 prof->profile_id = meter_profile_id; in mrvl_meter_profile_add()
104 memcpy(&prof->profile, profile, sizeof(*profile)); in mrvl_meter_profile_add()
106 LIST_INSERT_HEAD(&priv->profiles, prof, next); in mrvl_meter_profile_add()
/f-stack/app/redis-5.0.5/deps/jemalloc/
H A D.travis.yml21 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-prof" EXTRA_CFLAGS="-Werror -Wno-a…
51 …env: CC=clang CXX=clang++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-prof" EXTRA_CFLAGS="-Werror …
69 …env: CC=gcc CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="--enable-prof" EXTRA_CFLAGS="-Werror -W…
105 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-debug --enable-prof" EXTRA_CFLAGS=…
117 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-prof --disable-stats" EXTRA_CFLAGS…
119 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-prof --with-malloc-conf=tcache:fal…
121 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-prof --with-malloc-conf=dss:primar…
123 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-prof --with-malloc-conf=percpu_are…
125 …env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-prof --with-malloc-conf=background…
H A DINSTALL.md131 * `--enable-prof`
133 Enable heap profiling and leak detection functionality. See the "opt.prof"
138 + libunwind (requires --enable-prof-libunwind)
139 + libgcc (unless --disable-prof-libgcc)
140 + gcc intrinsics (unless --disable-prof-gcc)
142 * `--enable-prof-libunwind`
147 * `--disable-prof-libgcc`
151 * `--disable-prof-gcc`
H A DChangeLog24 - Allow prof_active to control opt.lg_prof_interval and prof.gdump.
219 + stats.mutexes.{ctl,background_thread,prof,reset}.
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
1165 - Fix a prof-related bug in realloc() (only triggered by OOM errors).
1166 - Fix prof-related bugs in allocm() and rallocm().
[all …]
H A Dconfigure.ac1047 AC_ARG_ENABLE([prof], optenable
1048 [AS_HELP_STRING([--enable-prof], [Enable allocation profiling])],
1063 AC_ARG_ENABLE([prof-libunwind],
1100 AC_ARG_ENABLE([prof-libgcc],
1101 [AS_HELP_STRING([--disable-prof-libgcc],
1125 AC_ARG_ENABLE([prof-gcc],
1126 [AS_HELP_STRING([--disable-prof-gcc],
2283 AC_MSG_RESULT([prof : ${enable_prof}])
2284 AC_MSG_RESULT([prof-libunwind : ${enable_prof_libunwind}])
2285 AC_MSG_RESULT([prof-libgcc : ${enable_prof_libgcc}])
[all …]
H A Dconfigure1429 --enable-prof Enable allocation profiling
1430 --enable-prof-libunwind Use libunwind for backtracing
1431 --disable-prof-libgcc Do not use libgcc for backtracing
1432 --disable-prof-gcc Do not use gcc intrinsics for backtracing
13697 { $as_echo "$as_me:${as_lineno-$LINENO}: result: prof : ${enable_prof}" >&5
13698 $as_echo "prof : ${enable_prof}" >&6; }
13700 $as_echo "prof-libunwind : ${enable_prof_libunwind}" >&6; }
13701 { $as_echo "$as_me:${as_lineno-$LINENO}: result: prof-libgcc : ${enable_prof_libgcc}" >&5
13702 $as_echo "prof-libgcc : ${enable_prof_libgcc}" >&6; }
13703 { $as_echo "$as_me:${as_lineno-$LINENO}: result: prof-gcc : ${enable_prof_gcc}" >&5
[all …]
H A DMakefile.in114 $(srcroot)src/prof.c \
/f-stack/app/redis-5.0.5/deps/jemalloc/test/unit/
H A Dmallctl.c134 TEST_MALLCTL_CONFIG(prof, bool); in TEST_BEGIN()
178 TEST_MALLCTL_OPT(bool, prof, prof); in TEST_BEGIN()
179 TEST_MALLCTL_OPT(const char *, prof_prefix, prof); in TEST_BEGIN()
180 TEST_MALLCTL_OPT(bool, prof_active, prof); in TEST_BEGIN()
181 TEST_MALLCTL_OPT(ssize_t, lg_prof_sample, prof); in TEST_BEGIN()
182 TEST_MALLCTL_OPT(bool, prof_accum, prof); in TEST_BEGIN()
183 TEST_MALLCTL_OPT(ssize_t, lg_prof_interval, prof); in TEST_BEGIN()
184 TEST_MALLCTL_OPT(bool, prof_gdump, prof); in TEST_BEGIN()
185 TEST_MALLCTL_OPT(bool, prof_final, prof); in TEST_BEGIN()
186 TEST_MALLCTL_OPT(bool, prof_leak, prof); in TEST_BEGIN()
/f-stack/dpdk/app/test/
H A Dtest_red.c1191 struct rdtsc_prof *prof) in enqueue_dequeue_perf() argument
1202 rdtsc_prof_start(prof); in enqueue_dequeue_perf()
1204 rdtsc_prof_end(prof); in enqueue_dequeue_perf()
1270 struct rdtsc_prof prof = {0, 0, 0, 0, 0.0, NULL}; in perf1_test() local
1275 rdtsc_prof_init(&prof, "enqueue"); in perf1_test()
1308 &prof); in perf1_test()
1316 rdtsc_prof_print(&prof); in perf1_test()
1408 rdtsc_prof_init(&prof, "enqueue"); in perf2_test()
1460 rdtsc_prof_start(&prof); in perf2_test()
1463 rdtsc_prof_end(&prof); in perf2_test()
[all …]
/f-stack/freebsd/i386/linux/
H A Dlinux_dummy_machdep.c58 UNIMPLEMENTED(prof);
/f-stack/freebsd/amd64/linux32/
H A Dlinux32_dummy_machdep.c52 UNIMPLEMENTED(prof);
/f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/
H A Dmutex_prof.h11 OP(prof)
/f-stack/dpdk/drivers/net/ice/
H A Dice_fdir_filter.c837 struct ice_flow_prof *prof; in ice_fdir_hw_tbl_conf() local
856 (is_tunnel) ? 2 : 1, NULL, 0, &prof); in ice_fdir_hw_tbl_conf()
/f-stack/app/redis-5.0.5/deps/jemalloc/src/
H A Dstats.c860 CONFIG_WRITE_BOOL(prof); in stats_general_print()
H A Dctl.c550 {NAME("prof"), CHILD(named, prof)},