Searched refs:difference (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-current/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DStoppointHitCounter.h24 void Increment(uint32_t difference = 1) {
25 lldbassert(std::numeric_limits<uint32_t>::max() - m_hit_count >= difference); local
26 m_hit_count += difference;
29 void Decrement(uint32_t difference = 1) {
30 lldbassert(m_hit_count >= difference);
31 m_hit_count -= difference;
/freebsd-current/contrib/ntp/sntp/libevent/sample/
H A Dtime-test.c45 struct timeval newtime, difference; local
50 evutil_timersub(&newtime, &lasttime, &difference);
51 elapsed = difference.tv_sec +
52 (difference.tv_usec / 1.0e6);
/freebsd-current/contrib/libevent/sample/
H A Dtime-test.c45 struct timeval newtime, difference; local
50 evutil_timersub(&newtime, &lasttime, &difference);
51 elapsed = difference.tv_sec +
52 (difference.tv_usec / 1.0e6);
/freebsd-current/contrib/googletest/googletest/samples/
H A Dsample10_unittest.cc81 int difference = Water::allocated() - initially_allocated_; variable
86 EXPECT_LE(difference, 0) << "Leaked " << difference << " unit(s) of Water!";
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dnumeric.inc38 // [adjacent.difference], adjacent difference
/freebsd-current/contrib/kyua/engine/
H A Dfilters.hpp107 std::set< test_filter > difference(const std::set< test_filter >&) const;
H A Dfilters.cpp299 engine::test_filters::difference(const std::set< test_filter >& matched) const function in class:engine::test_filters
388 return _filters.difference(_used_filters);
H A Dfilters_test.cpp422 in_filters).difference(used);
437 in_filters).difference(used);
456 in_filters).difference(used);
/freebsd-current/tools/tools/net80211/wesside/wesside/
H A Daircrack-ptw-lib.c58 double difference; member in struct:__anon6375
124 if (a->difference > b->difference) {
126 } else if (a->difference == b->difference) {
411 helper[i].difference = normal[i+1] - ausreisser[i+1];
/freebsd-current/contrib/bmake/unit-tests/
H A Dsh-errctl.mk6 # There is a subtle difference between error control and echo control.
H A Dvarmod-match-escape.mk8 # difference in behavior. When parsing the modifier text, only \{, \} and \:
11 # Str_Match, only \*, \? or \[ would make a noticeable difference.
74 # is being matched. There needs to be either a test that shows a difference
H A Dvarparse-errors.mk53 # Var_Subst actually makes a difference, preventing "a plethora of messages".
58 # To trigger this difference, the variable assignment must use the assignment
H A Dvarcmd.mk12 # be rewritten to make it clear why there is a difference and why this is
H A Dvar-op-default.mk31 # This comes very close to the description, the only difference is that
H A Dvarparse-undef-partial.mk60 # difference.
H A Dcond-short.mk13 # parse them. They were still evaluated though, the only difference to
26 # undefined variables are an error'. This subtle difference between 'do not
205 # only difference was that undefined variables in them didn't trigger an
206 # error. Since numeric conditions are quite rare, this subtle difference
H A Dvarmod-ifelse.mk43 # The difference to the ':=' variable assignment is the additional
224 # reverted, still not knowing about the difference between regular parsing and
238 # differently. The crucial difference is that the body of the modifier ':@'
H A Dcond-op.mk42 # makes a difference. There is a simple example for sure, I just cannot
H A Dopt-debug-lint.mk57 # for parsing it doesn't make a difference whether the variable is defined
H A Dcond-func-empty.mk83 # subtle difference between using either 'empty(ZERO)' or the expression
99 # stripped, it wouldn't make a difference in this case, but in other cases.
H A Dvar-op-expand.mk229 # well, it wouldn't make a difference in this case. The crucial detail is the
/freebsd-current/lib/libc/amd64/string/
H A Dstrcmp.S214 sub %ecx, %eax # difference of the mismatching chars
266 neg %rax # make difference positive
325 sub %ecx, %eax # difference of the mismatching chars
/freebsd-current/sys/contrib/openzfs/lib/libefi/
H A Drdwr_efi.c1121 diskaddr_t data_size, limit, difference; local
1242 difference = limit - resv_start;
1246 "efi_use_whole_disk: difference is %lli\n", difference);
1253 efi_label->efi_parts[data_index].p_size += difference;
1254 efi_label->efi_parts[resv_index].p_start += difference;
1293 efi_label->efi_parts[resv_index].p_start -= difference;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantRange.h308 ConstantRange difference(const ConstantRange &CR) const;
/freebsd-current/contrib/kyua/store/
H A Dschema_v3.sql98 -- difference, because there is always a 1:1 relation.

Completed in 228 milliseconds

12