Home
last modified time | relevance | path

Searched refs:hist (Results 1 – 11 of 11) sorted by relevance

/f-stack/freebsd/sys/
H A Dstats.h406 struct vss_hist_hlpr_info hist; member
567 op(_VSD(cnst, crhist32, hist)->field) : \
569 op(_VSD(cnst, drhist32, hist)->field) : \
571 op(_VSD(cnst, dvhist32, hist)->field) : \
573 op(_VSD(cnst, crhist64, hist)->field) : \
575 op(_VSD(cnst, drhist64, hist)->field) : \
588 op(_VSD(cnst, crhist32, hist)->field) : \
589 op(_VSD(cnst, crhist64, hist)->field))
601 op(_VSD(cnst, drhist32, hist)->field) : \
602 op(_VSD(cnst, drhist64, hist)->field))
[all …]
/f-stack/tools/netstat/
H A Dipsec.c238 if (hist[proto] <= 0) in ipsec_hist_new()
252 (uintmax_t)hist[proto]); in ipsec_hist_new()
271 #define hist(f, n, t, c) \ in print_ahstats() macro
301 hist(ahstat->ahs_hist, ipsec_ahnames, in print_ahstats()
305 #undef hist in print_ahstats()
330 #define hist(f, n, t, c) \ in print_espstats() macro
361 hist(espstat->esps_hist, ipsec_espnames, in print_espstats()
365 #undef hist in print_espstats()
391 #define hist(f, n, t, c) \ in print_ipcompstats() macro
414 hist(ipcompstat->ipcomps_hist, ipsec_compnames, in print_ipcompstats()
[all …]
/f-stack/freebsd/net/
H A Dmppcd.c49 uint8_t hist[2*MPPE_HIST_LEN]; member
110 uint8_t *hist, *s; in MPPC_Decompress() local
115 memcpy(state->hist, state->hist + MPPE_HIST_LEN, MPPE_HIST_LEN); in MPPC_Decompress()
119 hist = state->hist + state->histptr; in MPPC_Decompress()
128 (state->hist)[(state->histptr)++] = (uint8_t) val; in MPPC_Decompress()
143 (state->hist)[(state->histptr)++] = in MPPC_Decompress()
242 s = state->hist + state->histptr; in MPPC_Decompress()
264 if ((hist[0] & 0x01) != 0) { in MPPC_Decompress()
272 memcpy(*dst, hist, olen); in MPPC_Decompress()
H A Dmppcc.c51 uint8_t hist[2*MPPE_HIST_LEN]; member
150 uint8_t *hist, *sbuf, *p, *q, *r, *s; in MPPC_Compress() local
173 hist = state->hist + MPPE_HIST_LEN; in MPPC_Compress()
178 memcpy(state->hist, hist, MPPE_HIST_LEN); in MPPC_Compress()
181 sbuf = state->hist + state->histptr; in MPPC_Compress()
194 p = hist + state->hash[idx]; in MPPC_Compress()
195 state->hash[idx] = (uint16_t) (s - hist); in MPPC_Compress()
/f-stack/freebsd/kern/
H A Dsubr_stats.c674 struct voistatdata_hist *hist; local
716 hist = (struct voistatdata_hist *)vss->iv;
1836 bkt_ub = VSD_CONSTCRHIST_FIELDPTR(hist,
2375 struct voistatdata_hist *hist; local
2379 hist = VSD(hist, vsd);
2730 oob32 = &VSD(crhist32, hist)->oob;
2736 oob32 = &VSD(drhist32, hist)->oob;
2742 oob32 = &VSD(dvhist32, hist)->oob;
2747 oob64 = &VSD(crhist64, hist)->oob;
2753 oob64 = &VSD(drhist64, hist)->oob;
[all …]
/f-stack/tools/ngctl/
H A Dmain.c338 History *hist; local
351 hist = history_init();
352 if (hist == NULL)
354 history(hist, &hev, H_SETSIZE, 100);
355 history(hist, &hev, H_SETUNIQUE, 1);
356 el_set(el, EL_HIST, history, (const char *)hist);
367 history(hist, &hev, H_ENTER, buf);
384 history_end(hist);
/f-stack/freebsd/contrib/openzfs/contrib/bpftrace/
H A Dtaskqlatency.bt27 hist((nsecs - @birth[@tq_name[tid], @tqent_id[tid]])/1000);
37 hist((nsecs - @start[@tq_name[tid], @tqent_id[tid]])/1000);
/f-stack/tools/compat/include/sys/
H A Devent.h174 #define KNOTE(list, hist, flags) knote(list, hist, flags) argument
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Drange_tree.c104 uint64_t hist[RANGE_TREE_HISTOGRAM_SIZE] = { 0 }; in range_tree_stat_verify() local
112 hist[idx]++; in range_tree_stat_verify()
113 ASSERT3U(hist[idx], !=, 0); in range_tree_stat_verify()
117 if (hist[i] != rt->rt_histogram[i]) { in range_tree_stat_verify()
119 i, hist, hist[i], rt->rt_histogram[i]); in range_tree_stat_verify()
121 VERIFY3U(hist[i], ==, rt->rt_histogram[i]); in range_tree_stat_verify()
H A Dzfs_fm.c668 update_histogram(uint64_t value_arg, uint32_t *hist, uint32_t *count) in update_histogram() argument
677 hist[63 - i]++; in update_histogram()
/f-stack/freebsd/contrib/zstd/lib/
H A DBUCK21 srcs=glob(['compress/zstd*.c', 'compress/hist.c']),