Home
last modified time | relevance | path

Searched full:tolerance (Results 1 – 25 of 162) sorted by relevance

1234567

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMisExpect.cpp62 // Command line option for setting the diagnostic tolerance threshold
64 "misexpect-tolerance", cl::init(0),
166 // clamp tolerance range to [0, 100) in verifyMisExpect()
167 auto Tolerance = getMisExpectTolerance(I.getContext()); in verifyMisExpect() local
168 Tolerance = std::clamp(Tolerance, 0u, 99u); in verifyMisExpect()
170 // Allow users to relax checking by N% i.e., if they use a 5% tolerance, in verifyMisExpect()
172 if (Tolerance > 0) in verifyMisExpect()
173 ScaledThreshold *= (1.0 - Tolerance / 100.0); in verifyMisExpect()
/freebsd/lib/libsys/
H A Dntp_adjtime.288 long tolerance; /* clock frequency tolerance (scaled
109 .Bl -tag -width tolerance -compact
191 .It Fa tolerance
192 Maximum frequency error, or tolerance of the CPU clock oscillator (scaled
246 .Bl -tag -width tolerance -compact
/freebsd/sys/contrib/openzfs/tests/zfs-tests/include/
H A Dmath.shlib44 # Return 0 if value is within +/-tolerance of target.
45 # Return 1 if value exceeds our tolerance.
48 # Do $action if value is within the tolerance from target passed in:
50 # Do $action if value surpasses the tolerance from target passed in:
53 function within_tolerance #value #target #tolerance
/freebsd/sys/contrib/dev/athk/
H A Ddfs_pri_detector.c41 * pde_get_multiple() - get number of multiples considering a given tolerance
42 * Return value: factor if abs(val - factor*fraction) <= tolerance, 0 otherwise
44 static u32 pde_get_multiple(u32 val, u32 fraction, u32 tolerance) in pde_get_multiple() argument
55 if (delta <= tolerance) in pde_get_multiple()
56 /* val and fraction are within tolerance */ in pde_get_multiple()
61 if (remainder > tolerance) { in pde_get_multiple()
63 if ((fraction - remainder) <= tolerance) in pde_get_multiple()
64 /* remainder is within tolerance */ in pde_get_multiple()
H A Ddfs_pattern_detector.h63 * @pri_min: minimum pulse repetition interval in [us] (including tolerance)
64 * @pri_max: minimum pri in [us] (including tolerance)
68 * @max_pri_tolerance: pulse time stamp tolerance on both sides [us]
/freebsd/contrib/ntp/kernel/sys/
H A Dtimex.h117 * offset and maximum frequency tolerance.
132 * tolerance, but otherwise the PLL continues to operate in a stable
142 * MAXFREQ is the maximum frequency tolerance of the CPU clock
144 * should be set to at least the frequency tolerance of the oscillator
151 * MAXTIME is the maximum jitter tolerance of the PPS signal if the
268 long tolerance; /* clock frequency tolerance (scaled member
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/snapshot/
H A Dsnapshot_008_pos.ksh93 typeset -i tolerance=0
95 (( tolerance = new_size - orig_size))
96 if (( tolerance > LIMIT )); then
/freebsd/sys/contrib/device-tree/Bindings/serial/
H A Dnvidia,tegra20-hsuart.txt36 Baud Rate tolerance:
37 Standard UART devices are expected to have tolerance for baud rate error by
39 Tegra186 chip has a known hardware issue. UART Rx baud rate tolerance level
H A Dnvidia,tegra20-hsuart.yaml70 Standard UART devices are expected to have tolerance for baud rate error by -4 to +4 %. All
72 issue. UART RX baud rate tolerance level is 0% to +4% in 1-stop config. Otherwise, the
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/
H A Dam335x-nano.dts435 /* +1.5V voltage with ±4% tolerance */
443 /* VDD_MPU voltage limits 0.95V - 1.1V with ±4% tolerance */
452 /* VDD_CORE voltage limits 0.95V - 1.1V with ±4% tolerance */
461 /* +1.8V voltage with ±4% tolerance */
469 /* +3.3V voltage with ±4% tolerance */
477 /* +1.8V voltage with ±4% tolerance */
485 /* +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.dtsi78 /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
87 /* 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
/freebsd/tests/sys/cddl/zfs/tests/snapshot/
H A Dsnapshot_008_pos.ksh93 typeset -i tolerance=0
95 (( tolerance = new_size - orig_size))
96 if (( tolerance > LIMIT )); then
/freebsd/lib/msun/tests/
H A Dtest-utils.h61 * (fpequal_tol, cfpequal_tol) If set, treats the tolerance as an absolute
62 * tolerance when the expected value is 0. This is useful when there is
132 /* Hard case: need to check the tolerance. */ in fpequal_tol()
136 * tolerance. This is to account for roundoff in the input, e.g., in fpequal_tol()
/freebsd/crypto/openssl/test/recipes/
H A D70-test_sslvertol.t73 "Version tolerance test, below TLS 1.4 and not TLS 1.3");
91 "Version tolerance test, max version but not TLS 1.3");
105 "Version tolerance test, SSL < 3.0");
/freebsd/sys/contrib/device-tree/Bindings/cpufreq/
H A Dcpufreq-dt.txt19 - voltage-tolerance: Specify the CPU voltage tolerance in percentage.
/freebsd/contrib/ntp/html/hints/
H A Dsolaris.html45 with Frequency Tolerance Violations</A>), Solaris has the variables
70 <h4>Dealing with Frequency Tolerance Violations (<tt>tickadj</tt> and
73 oscillator frequency tolerance of +-100 parts-per-million (PPM), which is
76 tolerance, NTP will automatically compensate for the frequency errors of the
79 release, this tolerance has been increased to +-500 PPM. <p>However, in the
/freebsd/tests/sys/cddl/zfs/tests/quota/
H A Dquota.kshlib27 # BLOCK_SIZE, QUOTA_VALUE and TOLERANCE set in quota.cfg
55 (( limit = QUOTA_VALUE + TOLERANCE ))
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/quota/
H A Dquota.kshlib33 # BLOCK_SIZE, QUOTA_VALUE and TOLERANCE set in quota.cfg
68 (( limit = QUOTA_VALUE + TOLERANCE ))
/freebsd/share/man/man4/
H A Dcc_chd.438 It provides tolerance to non-congestion related packet loss and improvements to
101 .%T "Improved coexistence and loss tolerance for delay based TCP congestion control"
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_misc/
H A Dzvol_misc_trim.ksh89 # of tolerance).
100 # tolerance).
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DFileUtilities.cpp143 // Check to see if these are inside the absolute tolerance in CompareNumbers()
145 // Nope, check the relative tolerance... in CompareNumbers()
158 << "Out of tolerance: rel/abs: " << RelTolerance << '/' in CompareNumbers()
218 *Error = "Files differ without tolerance allowance"; in DiffFilesWithTolerance()
/freebsd/contrib/ntp/sntp/libevent/test/
H A Dregress.h122 #define test_timeval_diff_leq(tv1, tv2, diff, tolerance) \ argument
123 tt_int_op(labs(timeval_msec_diff((tv1), (tv2)) - diff), <=, tolerance)
/freebsd/contrib/libevent/test/
H A Dregress.h122 #define test_timeval_diff_leq(tv1, tv2, diff, tolerance) \ argument
123 tt_int_op(labs(timeval_msec_diff((tv1), (tv2)) - diff), <=, tolerance)

1234567