HomeSort by: relevance | last modified time | path
    Searched refs:deviation (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/contrib/
compare_two_ftime_report_sets 235 # expressed as a multiple of the standard deviation of the sample
376 self.deviation = math.sqrt(variance)
377 self.error = self.deviation / math.sqrt(self.count)
385 return find_t_dist_degree(self.alpha, divide(radius, self.deviation))
393 text += ",\nstd.deviation is " + text_number(self.deviation)
440 message += "assuming the standard deviation is stable, which is iffy."
442 message += "\nyou need to reduce the larger deviation"
  /src/external/bsd/jemalloc/dist/test/unit/
decay.c 266 int deviation = abs((int)expected - (int)(npages_threshold)); local
267 expect_d_lt(deviation, (int)(npages_threshold / 2),
  /src/external/bsd/dhcpcd/dist/src/
route.c 541 * We allow a small deviation to avoid needless route changes.
545 uint32_t deviation; local
553 deviation = nrt->rt_lifetime - ort->rt_lifetime;
555 deviation = ort->rt_lifetime - nrt->rt_lifetime;
556 if (deviation > RTLIFETIME_DEV_MAX)
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_dpll_mgr.c 1125 u64 min_deviation; /* current minimal deviation */
1147 u64 deviation; local
1149 deviation = div64_u64(10000 * abs_diff(dco_freq, central_freq),
1152 /* positive deviation */
1154 if (deviation < SKL_DCO_MAX_PDEVIATION &&
1155 deviation < ctx->min_deviation) {
1156 ctx->min_deviation = deviation;
1161 /* negative deviation */
1162 } else if (deviation < SKL_DCO_MAX_NDEVIATION &&
1163 deviation < ctx->min_deviation)
    [all...]

Completed in 28 milliseconds