Home
last modified time | relevance | path

Searched refs:histogram (Results 1 – 25 of 29) sorted by relevance

12

/freebsd-13-stable/contrib/unbound/contrib/
HDunbound_munin_86 unbound_munin_histogram - histogram of query resolving times
362 histogram)
505 histogram)
509 for x in histogram.000000.000000.to.000000.000001 \
510 histogram.000000.000001.to.000000.000002 \
511 histogram.000000.000002.to.000000.000004 \
512 histogram.000000.000004.to.000000.000008 \
513 histogram.000000.000008.to.000000.000016 \
514 histogram.000000.000016.to.000000.000032 \
515 histogram.000000.000032.to.000000.000064 \
[all …]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/
HDcache.c260 const char *histogram = ""; in svn_cache__format_info() local
266 int count = sizeof(info->histogram) / sizeof(info->histogram[0]); in svn_cache__format_info()
268 if (info->histogram[i] > 0 || text->len > 0) in svn_cache__format_info()
275 text->data, info->histogram[i], i); in svn_cache__format_info()
277 histogram = text->data; in svn_cache__format_info()
318 histogram); in svn_cache__format_info()
HDcache-membuffer.c3143 sizeof(info->histogram) / sizeof(info->histogram[0]) - 1); in svn_membuffer_get_segment_info()
3144 info->histogram[use]++; in svn_membuffer_get_segment_info()
/freebsd-13-stable/usr.bin/systat/
HDiostat.c85 static void histogram(long double, int, double);
321 histogram(mb_per_second, 50, .5); in devstats()
323 histogram(transfers_per_second, 50, .5); in devstats()
326 histogram(kb_per_transfer, 50, .5); in devstats()
346 histogram(100.0 * cur_dev.cp_time[o] / dtime, 50, CPUSCALE); in stat1()
350 histogram(long double val, int colwidth, double scale) in histogram() function
/freebsd-13-stable/sys/netgraph/
HDng_vlan_rotate.c150 counter_u64_t histogram[NG_VLANROTATE_MAX_VLANS]; member
180 vrp->stats.histogram[i] = counter_u64_alloc(M_WAITOK); in ng_vlanrotate_constructor()
275 p->histogram[i] = counter_u64_fetch(vrp->stats.histogram[i]); in ng_vlanrotate_rcvmsg()
287 counter_u64_zero(vrp->stats.histogram[i]); in ng_vlanrotate_rcvmsg()
436 counter_u64_add(vrp->stats.histogram[vlans], 1); in ng_vlanrotate_rcvdata()
477 counter_u64_free(vrp->stats.histogram[i]); in ng_vlanrotate_shutdown()
HDng_vlan_rotate.h53 uint64_t histogram[NG_VLANROTATE_MAX_VLANS]; member
/freebsd-13-stable/contrib/subversion/subversion/svnfsfs/
HDstats-cmd.c108 print_histogram(svn_fs_fs__histogram_t *histogram, in print_histogram() argument
116 while (last > 0 && histogram->lines[last].count == 0) in print_histogram()
119 while (first <= last && histogram->lines[first].count == 0) in print_histogram()
126 svn__ui64toa_sep(histogram->lines[i].sum, ',', pool), in print_histogram()
127 (int)(histogram->lines[i].sum * 100 / histogram->total.sum), in print_histogram()
128 svn__ui64toa_sep(histogram->lines[i].count, ',', pool), in print_histogram()
129 (int)(histogram->lines[i].count * 100 / histogram->total.count)); in print_histogram()
/freebsd-13-stable/sys/contrib/openzfs/cmd/zpool_influxdb/
HDREADME.md20 | --no-histogram | -n | Do not print histogram information |
22 | --sum-histogram-buckets | -s | Sum histogram bucket values |
27 The histogram data collected by ZFS is stored as independent bucket values.
35 Another method for storing histogram data sums the values for lower-value
39 The `zpool_influxdb --sum-histogram-buckets` option presents the data from ZFS
50 | zpool_io_size | per-vdev I/O size histogram | zpool iostat -r |
51 | zpool_latency | per-vdev I/O latency histogram | zpool iostat -w |
152 The histogram fields show cumulative values from lowest to highest.
159 | le | bucket for histogram, latency is less than or equal to bucket value in seconds |
180 to create a histogram of the size by I/O type and vdev. For example, a
[all …]
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
HDOpts.td19 "--section-groups and --histogram">;
56 def histogram : FF<"histogram", "Display bucket list histogram for hash sections">, Group<grp_elf>;
116 def : FF<"elf-hash-histogram", "Alias for --histogram">, Alias<histogram>, Flags<[HelpHidden]>;
131 def : F<"I", "Alias for --histogram">, Alias<histogram>, Group<grp_elf>;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/include/profile/
HDMemProfData.inc207 // For merging histograms, we always keep the longer histogram, and add
208 // values of shorter histogram to larger one.
214 // Swap histogram of current to larger histogram
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
HDMemProfData.inc207 // For merging histograms, we always keep the longer histogram, and add
208 // values of shorter histogram to larger one.
214 // Swap histogram of current to larger histogram
/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
HDspace_map.c967 uint64_t *histogram = rt->rt_histogram; in space_map_estimate_optimal_size() local
1046 size += histogram[idx] * entry_size; in space_map_estimate_optimal_size()
1053 size += histogram[idx] * in space_map_estimate_optimal_size()
1064 size += histogram[idx] * 2 * sizeof (uint64_t); in space_map_estimate_optimal_size()
1069 size += histogram[idx] * in space_map_estimate_optimal_size()
HDmetaslab.c1968 metaslab_aux_histogram_add(uint64_t *histogram, uint64_t shift, in metaslab_aux_histogram_add() argument
1981 histogram[idx] += rt->rt_histogram[i] << (i - idx - shift); in metaslab_aux_histogram_add()
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_fs/
HDstats.c244 add_to_histogram(svn_fs_fs__histogram_t *histogram, in add_to_histogram() argument
252 histogram->total.count++; in add_to_histogram()
253 histogram->total.sum += size; in add_to_histogram()
254 histogram->lines[(apr_size_t)shift].count++; in add_to_histogram()
255 histogram->lines[(apr_size_t)shift].sum += size; in add_to_histogram()
/freebsd-13-stable/contrib/subversion/subversion/include/private/
HDsvn_cache.h181 apr_uint64_t histogram[32]; member
/freebsd-13-stable/share/dtrace/
HDnfsclienttime31 * system call, and then generates a histogram of those times sorted by
/freebsd-13-stable/contrib/unbound/services/
HDmesh.h124 struct timehist* histogram; member
HDmesh.c198 mesh->histogram = timehist_setup(); in mesh_create()
200 if(!mesh->histogram || !mesh->qbuf_bak) { in mesh_create()
248 timehist_delete(mesh->histogram); in mesh_delete()
1477 timehist_insert(m->s.env->mesh->histogram, &duration); in mesh_send_reply()
2023 timehist_log(mesh->histogram, "recursions"); in mesh_stats()
2037 timehist_clear(mesh->histogram); in mesh_stats_clear()
2052 sizeof(struct th_buck)*mesh->histogram->num + in mesh_get_mem()
/freebsd-13-stable/contrib/file/magic/Magdir/
HDcoff150 # file ptr to gp histogram s_lnnoptr like: 0
154 # number of gp histogram entries s_nlnno like: 0
/freebsd-13-stable/contrib/unbound/daemon/
HDstats.c270 s->mesh_time_median = timehist_quartile(worker->env.mesh->histogram, in server_stats_compile()
282 timehist_export(worker->env.mesh->histogram, s->svr.hist, in server_stats_compile()
/freebsd-13-stable/sys/dev/iwi/
HDif_iwireg.h301 struct iwi_rate_histogram histogram; member
/freebsd-13-stable/sys/contrib/zstd/
HDCHANGELOG33 perf: Improve histogram construction, by @cyan4973 (#2253)
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
HDIntrinsics.td1888 // Experimental histogram
HDIntrinsicsAArch64.td2511 // SVE2 - Vector histogram count
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
HDAArch64SVEInstrInfo.td3768 // SVE2 histogram generation (segment)
3771 // SVE2 histogram generation (vector)

12