Home
last modified time | relevance | path

Searched full:accuracy (Results 1 – 25 of 554) sorted by relevance

12345678910>>...23

/freebsd/contrib/ntp/ntpd/
H A Drefclock_arbiter.c22 * The claimed accuracy of this clock is 100 ns relative to the PPS
55 * 0 clock locked, maximum accuracy
57 * 4 clock unlocked, accuracy < 1 us
58 * 5 clock unlocked, accuracy < 10 us
59 * 6 clock unlocked, accuracy < 100 us
60 * 7 clock unlocked, accuracy < 1 ms
61 * 8 clock unlocked, accuracy < 10 ms
62 * 9 clock unlocked, accuracy < 100 ms
63 * A clock unlocked, accuracy < 1 s
64 * B clock unlocked, accuracy < 1
[all...]
/freebsd/contrib/ntp/html/drivers/
H A Ddriver11.html23 <p>This driver supports the Arbiter 1088A/B Satellite Controlled Clock. The claimed accuracy of thi…
39 <pre>0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; clock locked, maximum accuracy
41 4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; clock unlocked, accuracy &lt; 1 us
42 5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; clock unlocked, accuracy &lt; 10 us
43 6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; clock unlocked, accuracy &lt; 100 us
44 7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; clock unlocked, accuracy &lt; 1 ms
45 8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; clock unlocked, accuracy &lt; 10 ms
46 9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; clock unlocked, accuracy &lt; 100 ms
47 A&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; clock unlocked, accuracy &lt; 1 s
48 B&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; clock unlocked, accuracy &lt; 10 s</pre>
H A Ddriver4.html30accuracy of the WWVB clocks is 100 <span class="style1">m</span>s relative to the broadcast signal…
/freebsd/crypto/openssl/crypto/ts/
H A Dts_local.h52 * Accuracy ::= SEQUENCE {
74 * accuracy Accuracy OPTIONAL,
88 TS_ACCURACY *accuracy; member
110 ASN1_INTEGER *seconds; /* accuracy, 0 means not specified. */
111 ASN1_INTEGER *millis; /* accuracy, 0 means not specified. */
112 ASN1_INTEGER *micros; /* accuracy, 0 means not specified. */
H A Dts_rsp_utils.c152 int TS_TST_INFO_set_accuracy(TS_TST_INFO *a, TS_ACCURACY *accuracy) in TS_TST_INFO_set_accuracy() argument
156 if (a->accuracy == accuracy) in TS_TST_INFO_set_accuracy()
158 new_accuracy = TS_ACCURACY_dup(accuracy); in TS_TST_INFO_set_accuracy()
163 TS_ACCURACY_free(a->accuracy); in TS_TST_INFO_set_accuracy()
164 a->accuracy = new_accuracy; in TS_TST_INFO_set_accuracy()
170 return a->accuracy; in TS_TST_INFO_get_accuracy()
H A Dts_rsp_print.c25 static int ts_ACCURACY_print_bio(BIO *bio, const TS_ACCURACY *accuracy);
144 BIO_printf(bio, "Accuracy: "); in TS_TST_INFO_print_bio()
145 if (a->accuracy == NULL) in TS_TST_INFO_print_bio()
148 ts_ACCURACY_print_bio(bio, a->accuracy); in TS_TST_INFO_print_bio()
H A Dts_rsp_sign.c535 TS_ACCURACY *accuracy = NULL; in ts_RESP_create_tst_info() local
558 && (accuracy = TS_ACCURACY_new()) == NULL) in ts_RESP_create_tst_info()
560 if (ctx->seconds && !TS_ACCURACY_set_seconds(accuracy, ctx->seconds)) in ts_RESP_create_tst_info()
562 if (ctx->millis && !TS_ACCURACY_set_millis(accuracy, ctx->millis)) in ts_RESP_create_tst_info()
564 if (ctx->micros && !TS_ACCURACY_set_micros(accuracy, ctx->micros)) in ts_RESP_create_tst_info()
566 if (accuracy && !TS_TST_INFO_set_accuracy(tst_info, accuracy)) in ts_RESP_create_tst_info()
600 TS_ACCURACY_free(accuracy); in ts_RESP_create_tst_info()
H A Dts_conf.c34 #define ENV_ACCURACY "accuracy"
388 char *accuracy = NCONF_get_string(conf, section, ENV_ACCURACY); in TS_CONF_set_accuracy() local
390 if (accuracy && (list = X509V3_parse_list(accuracy)) == NULL) { in TS_CONF_set_accuracy()
/freebsd/sys/contrib/device-tree/Bindings/clock/
H A Dfixed-clock.yaml31 clock-accuracy:
32 description: accuracy of clock in ppb (parts per billion).
51 clock-accuracy = <100>;
/freebsd/lib/msun/src/
H A Ds_clog.c111 * When log(|z|) is far from 1, accuracy in calculating the sum in clog()
116 * calculations to reduce branches and gain a little accuracy. in clog()
120 * of accuracy in this way. in clog()
126 * often lose lots of accuracy, here the final result is exact in clog()
131 * significant loss of accuracy is when it is summed and passed in clog()
H A Ds_clogf.c111 * When log(|z|) is far from 1, accuracy in calculating the sum in clogf()
116 * calculations to reduce branches and gain a little accuracy. in clogf()
120 * of accuracy in this way. in clogf()
126 * often lose lots of accuracy, here the final result is exact in clogf()
131 * significant loss of accuracy is when it is summed and passed in clogf()
H A Ds_clogl.c128 * When log(|z|) is far from 1, accuracy in calculating the sum in clogl()
133 * calculations to reduce branches and gain a little accuracy. in clogl()
137 * of accuracy in this way. in clogl()
143 * often lose lots of accuracy, here the final result is exact in clogl()
148 * significant loss of accuracy is when it is summed and passed in clogl()
H A Dk_log.h19 * term of the polynomial are done by the caller for increased accuracy
46 * log(1+f) = f - (hfsq - s*(hfsq+R)). (better accuracy)
59 * Accuracy:
H A De_exp.c23 * accuracy.
44 * = 1 + r + ----------- (for better accuracy)
59 * Accuracy:
/freebsd/lib/msun/tests/
H A Dtrig_test.c28 * Tests for corner cases in trigonometric functions. Some accuracy tests
220 ATF_TC(accuracy);
221 ATF_TC_HEAD(accuracy, tc) in ATF_TC_HEAD() argument
225 "tests the accuracy of these functions over the primary range"); in ATF_TC_HEAD()
227 ATF_TC_BODY(accuracy, tc) in ATF_TC_BODY() argument
275 ATF_TP_ADD_TC(tp, accuracy); in ATF_TP_ADD_TCS()
/freebsd/share/man/man4/
H A Dow_temp.487 accuracy is around 0.2 degrees for the good devices and around 1
94 These devices often have a much higher relative accuracy and
95 repeatability than their absolute accuracy.
/freebsd/contrib/arm-optimized-routines/math/aarch64/sve/
H A Dsv_log1p_inline.h44 - Pairwise Horner polynomial evaluation for improved accuracy. in sv_log1p_inline()
46 using svsel, for improved accuracy when the argument to log1p is close in sv_log1p_inline()
71 …log1p_inline.h without specifying whether you need the k0 shortcut for greater accuracy close to 0" in sv_log1p_inline()
/freebsd/sys/dev/acpica/
H A Dacpiio.h102 uint32_t accuracy; /* Measurement Accuracy */ member
127 uint32_t accuracy; /* Measurement Accuracy */
/freebsd/usr.sbin/ntp/doc/
H A Dntpdate.848 that the accuracy and reliability of
194 daemon, which uses sophisticated algorithms to maximize accuracy
201 the accuracy using
/freebsd/sys/contrib/device-tree/Bindings/power/supply/
H A Dmediatek,mt6370-charger.yaml50 VBUS voltage with lower accuracy (+-75mV) but higher measure
53 VBUS voltage with higher accuracy (+-30mV) but lower measure
/freebsd/contrib/ntp/html/hints/
H A Dmpeix16 Unfortunately the implementation of adjtime() has exposed a sub-second accuracy
29 your system time with reasonable accuracy.
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DAliasAnalysisEvaluator.h1 //===- AliasAnalysisEvaluator.h - Alias Analysis Accuracy Evaluator -------===//
10 /// This file implements a simple N^2 alias analysis accuracy evaluator. The
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DMDBuilder.cpp28 MDNode *MDBuilder::createFPMath(float Accuracy) { in createFPMath() argument
29 if (Accuracy == 0.0) in createFPMath()
31 assert(Accuracy > 0.0 && "Invalid fpmath accuracy!"); in createFPMath()
33 createConstant(ConstantFP::get(Type::getFloatTy(Context), Accuracy)); in createFPMath()
/freebsd/tools/tools/ioat/
H A Dioatcontrol.879 Verify copies/fills for accuracy
103 Verify copies/fills for accuracy
/freebsd/lib/msun/ld80/
H A De_powl.c82 * obtain several extra bits of accuracy in both the logarithm
87 * ACCURACY:
142 * If i is even, A[i] + B[i/2] gives additional accuracy.
546 * ACCURACY:
621 /* Handle tiny denormal answer, but with less accuracy in powil()

12345678910>>...23