Home
last modified time | relevance | path

Searched refs:bstats (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/jemalloc/src/
H A Dctl.c930 sdstats->bstats[i].nmalloc += astats->bstats[i].nmalloc; in ctl_arena_stats_sdmerge()
931 sdstats->bstats[i].ndalloc += astats->bstats[i].ndalloc; in ctl_arena_stats_sdmerge()
932 sdstats->bstats[i].nrequests += in ctl_arena_stats_sdmerge()
935 sdstats->bstats[i].curregs += in ctl_arena_stats_sdmerge()
936 astats->bstats[i].curregs; in ctl_arena_stats_sdmerge()
940 sdstats->bstats[i].nfills += astats->bstats[i].nfills; in ctl_arena_stats_sdmerge()
941 sdstats->bstats[i].nflushes += in ctl_arena_stats_sdmerge()
942 astats->bstats[i].nflushes; in ctl_arena_stats_sdmerge()
943 sdstats->bstats[i].nslabs += astats->bstats[i].nslabs; in ctl_arena_stats_sdmerge()
944 sdstats->bstats[i].reslabs += astats->bstats[i].reslabs; in ctl_arena_stats_sdmerge()
[all …]
H A Darena.c86 bin_stats_t *bstats, arena_stats_large_t *lstats, in arena_stats_merge() argument
249 bin_stats_merge(tsdn, &bstats[i], in arena_stats_merge()
/freebsd-14.2/sys/netgraph/
H A Dng_car.c424 struct ng_car_bulkstats *bstats; in ng_car_rcvmsg() local
427 sizeof(*bstats), M_NOWAIT); in ng_car_rcvmsg()
432 bstats = (struct ng_car_bulkstats *)resp->data; in ng_car_rcvmsg()
434 bcopy(&priv->upper.stats, &bstats->downstream, in ng_car_rcvmsg()
435 sizeof(bstats->downstream)); in ng_car_rcvmsg()
436 bcopy(&priv->lower.stats, &bstats->upstream, in ng_car_rcvmsg()
437 sizeof(bstats->upstream)); in ng_car_rcvmsg()
/freebsd-14.2/contrib/libpcap/
H A Dpcap-npf.c248 struct bpf_stat bstats; in pcap_stats_npf() local
263 if (!PacketGetStats(pw->adapter, &bstats)) { in pcap_stats_npf()
268 ps->ps_recv = bstats.bs_recv; in pcap_stats_npf()
269 ps->ps_drop = bstats.bs_drop; in pcap_stats_npf()
276 ps->ps_ifdrop = bstats.ps_ifdrop; in pcap_stats_npf()
309 struct bpf_stat bstats; in pcap_stats_ex_npf() local
320 if (!PacketGetStatsEx(pw->adapter, &bstats)) { in pcap_stats_ex_npf()
325 p->stat.ps_recv = bstats.bs_recv; in pcap_stats_ex_npf()
326 p->stat.ps_drop = bstats.bs_drop; in pcap_stats_ex_npf()
327 p->stat.ps_ifdrop = bstats.ps_ifdrop; in pcap_stats_ex_npf()
[all …]
/freebsd-14.2/contrib/jemalloc/include/jemalloc/internal/
H A Dctl.h45 bin_stats_t bstats[SC_NBINS]; member
H A Darena_externs.h28 bin_stats_t *bstats, arena_stats_large_t *lstats,