Home
last modified time | relevance | path

Searched refs:tolerance (Results 1 – 25 of 87) sorted by relevance

1234

/netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Dam335x-nano.dts415 /* +1.5V voltage with ±4% tolerance */
423 /* VDD_MPU voltage limits 0.95V - 1.1V with ±4% tolerance */
432 /* VDD_CORE voltage limits 0.95V - 1.1V with ±4% tolerance */
441 /* +1.8V voltage with ±4% tolerance */
449 /* +3.3V voltage with ±4% tolerance */
457 /* +1.8V voltage with ±4% tolerance */
465 /* +3.3V voltage with ±4% tolerance */
H A Dam335x-moxa-uc-8100-me-t.dts83 /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
92 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
H A Dam335x-osd335x-common.dtsi77 /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
86 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
H A Dam335x-shc.dts26 * tolerance value is reduced to 2% from 4% and
34 voltage-tolerance = <2>; /* 2 percentage */
274 * +/-4% tolerance
289 * +/-4% tolerance
H A Dam335x-chilisom.dtsi79 /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
88 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
H A Dam335x-igep0033.dtsi246 /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
255 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
H A Dam335x-phycore-som.dtsi258 /* VDD_MPU voltage limits 0.95V - 1.325V with +/-4% tolerance */
267 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
H A Dam335x-bone-common.dtsi317 /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
326 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
H A Dam335x-baltos.dtsi285 /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
294 /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
/netbsd-src/usr.sbin/acpitools/aml/
H A Daml_memman.c61 int tolerance);
187 int tolerance) in memman_flexsize_add_histogram() argument
197 if (gap >= (tolerance * -1) && gap <= tolerance) { in memman_flexsize_add_histogram()
207 memman_flexsize_add_histogram(memman, size, tolerance + 1); in memman_flexsize_add_histogram()
H A Daml_memman.h156 #define MEMMAN_MEMMANAGER_DESC(block_man, maxmemid, histogram, tolerance) \ argument
161 .flex_mem_histogram_initial_tolerance = tolerance, \
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtimevar.cc591 const double tolerance = 1.000001; /* One part in a million. */ in validate_phases() local
610 if (phase_user > total->user * tolerance in validate_phases()
611 || phase_sys > total->sys * tolerance in validate_phases()
612 || phase_wall > total->wall * tolerance in validate_phases()
613 || phase_ggc_mem > total->ggc_mem * tolerance) in validate_phases()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtimevar.c593 const double tolerance = 1.000001; /* One part in a million. */ in validate_phases() local
612 if (phase_user > total->user * tolerance in validate_phases()
613 || phase_sys > total->sys * tolerance in validate_phases()
614 || phase_wall > total->wall * tolerance in validate_phases()
615 || phase_ggc_mem > total->ggc_mem * tolerance) in validate_phases()
/netbsd-src/external/bsd/libevent/dist/test/
H A Dregress.h124 #define test_timeval_diff_leq(tv1, tv2, diff, tolerance) \ argument
125 tt_int_op(labs(timeval_msec_diff((tv1), (tv2)) - diff), <=, tolerance)
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce/
H A Damdgpu_dce_clock_source.c204 uint32_t tolerance) in calc_fb_divider_checking_tolerance() argument
239 if (abs_err <= tolerance) { in calc_fb_divider_checking_tolerance()
266 uint32_t tolerance; in calc_pll_dividers_in_range() local
270 tolerance = (pll_settings->adjusted_pix_clk_100hz * err_tolerance) / in calc_pll_dividers_in_range()
272 if (tolerance < CALC_PLL_CLK_SRC_ERR_TOLERANCE) in calc_pll_dividers_in_range()
273 tolerance = CALC_PLL_CLK_SRC_ERR_TOLERANCE; in calc_pll_dividers_in_range()
288 tolerance)) { in calc_pll_dividers_in_range()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dnumeric.d803 scope DT tolerance) //= (T a, T b) => false)
806 is(typeof(tolerance(T.init, T.init)) : bool) &&
816 immutable r = findRoot(f, a, b, fa, fb, tolerance);
861 scope DT tolerance) // = (T a, T b) => false)
864 is(typeof(tolerance(T.init, T.init)) : bool) &&
1008 while (!done && (b != nextUp(a)) && !tolerance(a, b))
1071 if (done || ( b == nextUp(a)) || tolerance(a, b))
1118 if (done || (b == nextUp(a)) || tolerance(a, b))
1174 scope bool delegate(T lo, T hi) tolerance = (T a, T b) => false) in findRoot()
1176 return findRoot!(T, R delegate(T), bool delegate(T lo, T hi))(f, a, b, tolerance); in findRoot()
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/include/drm/
H A Ddrm_fixed.h192 s64 tolerance = div64_s64(DRM_FIXED_ONE, 1000000); in drm_fixp_exp() local
201 while (term >= tolerance) { in drm_fixp_exp()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dnumeric.d1100 scope DT tolerance) //= (T a, T b) => false)
1103 is(typeof(tolerance(T.init, T.init)) : bool) &&
1113 immutable r = findRoot(f, a, b, fa, fb, tolerance);
1159 scope DT tolerance) // = (T a, T b) => false)
1162 is(typeof(tolerance(T.init, T.init)) : bool) &&
1306 while (!done && (b != nextUp(a)) && !tolerance(a, b))
1369 if (done || ( b == nextUp(a)) || tolerance(a, b))
1416 if (done || (b == nextUp(a)) || tolerance(a, b))
1473 scope bool delegate(T lo, T hi) tolerance = (T a, T b) => false) in findRoot()
1475 return findRoot!(T, R delegate(T), bool delegate(T lo, T hi))(f, a, b, tolerance); in findRoot()
[all …]
/netbsd-src/external/mit/xorg/lib/pixman/test/
H A DMakefile42 tolerance-test
/netbsd-src/sys/sys/
H A Dtimex.h222 long tolerance; /* clock frequency tolerance (scaled member
/netbsd-src/external/bsd/ntp/dist/kernel/sys/
H A Dtimex.h270 long tolerance; /* clock frequency tolerance (scaled member
/netbsd-src/sys/compat/freebsd/
H A Dfreebsd_timex.h263 long tolerance; /* clock frequency tolerance (scaled member
/netbsd-src/external/bsd/openldap/dist/tests/data/
H A Dslapd-dds.conf53 dds-tolerance 1s
/netbsd-src/external/bsd/ntp/dist/html/hints/
H A Dsun41 Notes on CPU clock oscillator tolerance with SunOS 4.1.1 and 4.1.3
/netbsd-src/sys/compat/netbsd32/
H A Dnetbsd32_conv.h445 tx32p->tolerance = (netbsd32_long)txp->tolerance; in netbsd32_from_timex()
469 txp->tolerance = (long)tx32p->tolerance; in netbsd32_to_timex()

1234