Home
last modified time | relevance | path

Searched refs:stddev (Results 1 – 14 of 14) sorted by relevance

/freebsd-14-stable/tools/tools/tscdrift/
HDtscdrift.c93 float *stddev; in main() local
165 stddev = calloc(ncpu, sizeof(*stddev)); in main()
166 stddev[0] = 0.0; in main()
181 stddev[i] = sqrt(sumsq); in main()
189 (intmax_t)maxskew[i], stddev[i]); in main()
/freebsd-14-stable/share/dtrace/
HDdisklatency50 @stddev[args[1]->device_name, args[1]->unit_number] = stddev(this->delta);
59 printa("stddev%s (%d), us:\n%@d\n", @stddev);
64 clear(@stddev);
HDdisklatencycmd59 @stddev[args[1]->device_name, args[1]->unit_number] = stddev(this->delta);
69 printa("stddev%s (%d), us: %@d\n", @stddev);
/freebsd-14-stable/contrib/llvm-project/libcxx/include/__random/
HDnormal_distribution.h48 _LIBCPP_HIDE_FROM_ABI result_type stddev() const { return __stddev_; } in stddev() function
84 _LIBCPP_HIDE_FROM_ABI result_type stddev() const { return __p_.stddev(); } in stddev() function
131 return __up * __p.stddev() + __p.mean(); in operator()
142 __os << __x.mean() << __sp << __x.stddev() << __sp << __x.__v_hot_;
HDlognormal_distribution.h83 _LIBCPP_HIDE_FROM_ABI result_type s() const { return __nd_.stddev(); } in s()
85 …_LIBCPP_HIDE_FROM_ABI param_type param() const { return param_type(__nd_.mean(), __nd_.stddev()); } in param()
/freebsd-14-stable/sbin/ping/
HDmain.c239 double stddev = sqrt(fmax(0, tsumsq / num - avg * avg)); in pr_summary() local
242 tmin, avg, tmax, stddev); in pr_summary()
/freebsd-14-stable/sbin/ping/tests/
HDping_6_c1_s8_t1.out6 round-trip min/avg/max/stddev = /// ms
HDping_c1_s8_t1_S1.out6 round-trip min/avg/max/stddev = /// ms
HDping_c1_s56_t1.out6 round-trip min/avg/max/stddev = /// ms
HDping_c1_s56_t1_S127.out6 round-trip min/avg/max/stddev = /// ms
/freebsd-14-stable/contrib/llvm-project/libcxx/include/
HDrandom1113 explicit param_type(result_type mean = 0, result_type stddev = 1);
1116 result_type stddev() const;
1123 explicit normal_distribution(RealType mean = 0.0, RealType stddev = 1.0); // before C++20
1125 explicit normal_distribution(RealType mean, RealType stddev = 1.0); // C++20
1135 result_type stddev() const;
1183 explicit lognormal_distribution(RealType mean = 0.0, RealType stddev = 1.0); // before C++20
1185 explicit lognormal_distribution(RealType mean, RealType stddev = 1.0); // C++20
/freebsd-14-stable/contrib/ntp/sntp/libevent/
HDCMakeLists.txt1337 --check-stddev 100)
1346 --check-stddev 50)
1357 --check-stddev 50)
1369 --check-stddev 50)
/freebsd-14-stable/contrib/libevent/
HDCMakeLists.txt1337 --check-stddev 100)
1346 --check-stddev 50)
1357 --check-stddev 50)
1369 --check-stddev 50)
/freebsd-14-stable/contrib/bsnmp/tests/
HDcatch.hpp7009 double outlier_variance(Estimate<double> mean, Estimate<double> stddev, int n);
7692 double outlier_variance(Estimate<double> mean, Estimate<double> stddev, int n) { in outlier_variance() argument
7693 double sb = stddev.point; in outlier_variance()
7727 auto stddev = &standard_deviation; in analyse_samples() local
7740 auto stddev_future = Estimate(stddev); in analyse_samples()
7753 auto stddev_estimate = Estimate(stddev); in analyse_samples()