/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
H A D | StoppointHitCounter.h | 24 void Increment(uint32_t difference = 1) { 25 lldbassert(std::numeric_limits<uint32_t>::max() - m_hit_count >= difference); 26 m_hit_count += difference; 29 void Decrement(uint32_t difference = 1) { 30 lldbassert(m_hit_count >= difference); 31 m_hit_count -= difference;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
H A D | RISCVFixupKinds.h |
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/ |
H A D | DiffConsumer.h | 1 //===-- DiffConsumer.h - Difference Consumer --------------------*- C++ -*-===// 9 // This header defines the interface to the LLVM difference Consumer 29 /// The interface for consumers of difference data. 42 /// Record a difference within the current context. 45 /// Record a formatted difference within the current context.
|
/freebsd/contrib/ntp/sntp/libevent/sample/ |
H A D | time-test.c | 45 struct timeval newtime, difference; in timeout_cb() local 50 evutil_timersub(&newtime, &lasttime, &difference); in timeout_cb() 51 elapsed = difference.tv_sec + in timeout_cb() 52 (difference.tv_usec / 1.0e6); in timeout_cb()
|
/freebsd/contrib/libevent/sample/ |
H A D | time-test.c | 45 struct timeval newtime, difference; in timeout_cb() local 50 evutil_timersub(&newtime, &lasttime, &difference); in timeout_cb() 51 elapsed = difference.tv_sec + in timeout_cb() 52 (difference.tv_usec / 1.0e6); in timeout_cb()
|
/freebsd/contrib/tzcode/ |
H A D | difftime.c | 1 /* Return the difference between two timestamps. */ 34 ** The difference of two unsigned values can't overflow in difftime() 48 ** (meaning that their difference cannot overflow). in difftime()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | OPENSSL_gmtime.pod | 25 OPENSSL_gmtime_diff() calculates the difference between I<from> and I<to>. 37 OPENSSL_gmtime_diff() calculates the difference between the two I<struct tm> 38 structures I<from> and I<to>. The difference in days is placed into I<*pday>,
|
/freebsd/usr.bin/ministat/ |
H A D | ministat.1 | 91 No difference proven at 95.0% confidence 96 tells you, as in the example above, that there is no difference 114 Difference at 80.0% confidence 122 a statistical difference is proven according to Student's T method.
|
H A D | README | 24 No difference proven at 95.0% confidence 42 Difference at 95.0% confidence 47 Here we have a clearcut difference, not very big, but clear and unambiguous.
|
/freebsd/usr.bin/find/ |
H A D | find.1 | 203 True if the difference between the time of a file's inode creation 214 true if the difference between the time of a file's inode creation 222 true if the difference between the time of a file's inode creation 238 True if the difference between the file last access time and the time 255 true if the difference between the file last access time and the time 262 true if the difference between the file last access time and the time 292 True if the difference between the time of last change of file status 310 true if the difference between the time of last change of file status 318 true if the difference between the time of last change of file status 625 True if the difference between the file last modification time and the time [all …]
|
/freebsd/contrib/libxo/doc/ |
H A D | faq.rst | 183 difference between errors37 and errors63. 201 will lead users to ask the difference between the two fields. If 202 there is no difference, use only one of the field names. If there is 203 a difference, change the names to make that difference more obvious.
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ScalarEvolutionAliasAnalysis.cpp | 53 // If something is known about the difference between the two addresses, in alias() 77 // Compute the difference between the two pointers. in alias() 80 // Test whether the difference is known to be great enough that memory of in alias() 92 // Compute the difference between the two pointers. in alias() 95 // Test whether the difference is known to be great enough that memory of in alias()
|
/freebsd/contrib/ntp/libntp/ |
H A D | clocktime.c | 64 u_int32 diff[3]; /* abs difference to receive */ in clocktime() 85 /* -- calc absolute difference to receive time */ in clocktime() 104 * absolute difference to the receive time stamp. in clocktime() 112 /* -- calc absolute difference to receive time */ in clocktime()
|
/freebsd/contrib/ntp/util/ |
H A D | precision.c | 35 * IF the difference from the last time is "small" (< MINSTEP) 42 * otherwise, take the log2(observered difference, rounded UP) 107 * gettimeofday(). If a difference is less than zero, the us field 109 * the difference is greater than zero and less than MINSTEP, the
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticASTKinds.td | 610 "in first definition, possible difference is here">; 614 "in second definition, possible difference is here">; 617 "%q0 has different definitions in different modules; first difference is " 638 "%0 has different definitions in different modules; first difference is " 654 "%q0 has different definitions in different modules; first difference is " 671 "%q0 has different definitions in different modules; first difference is " 685 "%q0 has different definitions in different modules; first difference is " 789 "%q0 has different definitions in different modules; first difference is " 813 "%q0 has different definitions in different modules; first difference is " 826 "%q0 has different definitions in different modules; first difference is " [all …]
|
/freebsd/contrib/kyua/engine/ |
H A D | tap_parser_test.cpp | 206 "ok - 6 Doesn't make a difference SKIP\n" in ATF_TEST_CASE_BODY() 207 "ok - 7 Doesn't make a difference either TODO\n" in ATF_TEST_CASE_BODY() 262 "ok - 6 Doesn't make a difference SKIP\n" in ATF_TEST_CASE_BODY() 263 "ok - 7 Doesn't make a difference either TODO\n"); in ATF_TEST_CASE_BODY() 303 "ok - 6 Doesn't make a difference SKIP\n" in ATF_TEST_CASE_BODY() 304 "ok - 7 Doesn't make a difference either TODO\n" in ATF_TEST_CASE_BODY()
|
/freebsd/share/doc/smm/12.timed/ |
H A D | timed.ms | 82 difference between the clock of the machine on which it 84 uses ICMP \fITime Stamp Requests\fP [5] to measure the clock difference 98 Since the correction is expressed as a time difference rather than an 186 the difference between 239 synchronization round will eliminate the small time difference
|
/freebsd/lib/libc/string/ |
H A D | strverscmp.3 | 31 strings until a difference is found. 32 If the difference is between non-decimal characters,
|
/freebsd/contrib/netbsd-tests/lib/libm/ |
H A D | t_fe_round.c | 83 "lrint rounding wrong, difference too large\n" in ATF_TC_BODY() 112 "nearbyint rounding wrong, difference too large\n" in ATF_TC_BODY() 154 "nextafter() rounding wrong, difference too large\n" in ATF_TC_BODY() 180 "nexttoward() rounding wrong, difference too large\n" in ATF_TC_BODY()
|
/freebsd/share/man/man9/ |
H A D | ieee80211_radiotap.9 | 180 RF signal power at the antenna, in decibels difference from 1mW. 183 RF noise power at the antenna, in decibels difference from 1mW. 215 RF signal power at the antenna, in decibels difference from an 219 RF noise power at the antenna, in decibels difference from an
|
/freebsd/usr.bin/cmp/ |
H A D | cmp.1 | 53 and line number at which the first difference occurred is reported. 60 Print each byte when a difference is found. 82 byte values (octal) for each difference.
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | OPENSSL_gmtime.3 | 160 \&\fBOPENSSL_gmtime_diff()\fR calculates the difference between \fIfrom\fR and \fIto\fR. 171 \&\fBOPENSSL_gmtime_diff()\fR calculates the difference between the two \fIstruct tm\fR 172 structures \fIfrom\fR and \fIto\fR. The difference in days is placed into \fI*pday\fR,
|
/freebsd/contrib/googletest/googletest/samples/ |
H A D | sample10_unittest.cc | 81 int difference = Water::allocated() - initially_allocated_; in OnTestEnd() local 86 EXPECT_LE(difference, 0) << "Leaked " << difference << " unit(s) of Water!"; in OnTestEnd()
|
/freebsd/lib/msun/man/ |
H A D | fdim.3 | 32 .Nd positive difference functions 49 functions return the positive difference between
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | varparse-dynamic.mk | 9 .if ${.TARGEX} # 1 character difference, must be defined 12 .if ${.TARGXX} # 2 characters difference, must be defined
|