Home
last modified time | relevance | path

Searched refs:diff (Results 276 - 300 of 2920) sorted by relevance

1...<<11121314151617181920>>...117

/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_simple_rpc_broadcast_exp/
H A Dtirpc_rpc_broadcast_exp_performance.c101 long long diff; in main() local
129 diff = in main()
132 rslt = (double)diff / 1000; in main()
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_broadc_clnt_broadcast/
H A Drpc_clnt_broadcast_performance.c97 long long diff; in main() local
126 diff = in main()
129 rslt = (double)diff / 1000; in main()
H A Drpc_clnt_broadcast_scalability.c97 long long diff; in main() local
126 diff = in main()
129 rslt = (double)diff / 1000; in main()
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntraw_create/
H A Drpc_clntraw_create_performance.c95 long long diff; in main() local
116 diff = in main()
119 rslt = (double)diff / 1000; in main()
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_svcraw_create/
H A Drpc_svcraw_create_performance.c95 long long diff; in main() local
115 diff = in main()
118 rslt = (double)diff / 1000; in main()
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_svctcp_create/
H A Drpc_svctcp_create_performance.c95 long long diff; in main() local
118 diff = in main()
121 rslt = (double)diff / 1000; in main()
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_stdcall_clnt_call/
H A Drpc_clnt_call_scalability.c69 long long diff; in main() local
108 diff = in main()
111 rslt = (double)diff / 1000; in main()
/third_party/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_simple_rpc_call/
H A Dtirpc_rpc_call_performance.c96 long long diff; in main() local
129 diff = in main()
132 rslt = (double)diff / 1000; in main()
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/
H A Djchuff.h113 #define PUT_CODE(code, size, diff) { \
114 diff |= code << nbits; \
116 PUT_BITS(diff, nbits) \
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dmemutil.cc28 const int diff = in memcasecmp() local
31 if (diff != 0) return diff; in memcasecmp()
/third_party/python/Lib/unittest/
H A Dcase.py372 * maxDiff: sets the maximum length of a diff in failure messages
904 diff = abs(first - second)
906 if diff <= delta:
913 safe_repr(diff))
918 if round(diff, places) == 0:
925 safe_repr(diff))
943 diff = abs(first - second)
945 if not (first == second) and diff > delta:
951 safe_repr(diff))
955 if not (first == second) and round(diff, place
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/amd/xgbe/
H A Dxgbe-ptp.c144 u32 addend, diff; in xgbe_adjfreq() local
154 diff = div_u64(adjust, 1000000000UL); in xgbe_adjfreq()
156 addend = (neg_adjust) ? pdata->tstamp_addend - diff : in xgbe_adjfreq()
157 pdata->tstamp_addend + diff; in xgbe_adjfreq()
/kernel/linux/linux-6.6/arch/loongarch/kernel/
H A Drelocate.c73 size_t i, diff; in rotate_xor() local
76 diff = (void *)ptr - area; in rotate_xor()
77 if (size < diff + sizeof(hash)) in rotate_xor()
80 size = ALIGN_DOWN(size - diff, sizeof(hash)); in rotate_xor()
/kernel/linux/linux-5.10/tools/testing/selftests/timers/
H A Dadjtick.c72 long long diff = 0, tmp; in get_monotonic_and_raw() local
87 if (diff == 0 || newdiff < diff) { in get_monotonic_and_raw()
88 diff = newdiff; in get_monotonic_and_raw()
/kernel/linux/linux-5.10/net/ipv4/
H A Dtcp_veno.c33 u32 diff; /* calculate the diff rate */ member
153 veno->diff = (tp->snd_cwnd << V_PARAM_SHIFT) - target_cwnd; in tcp_veno_cong_avoid()
163 if (veno->diff < beta) { in tcp_veno_cong_avoid()
200 if (veno->diff < beta) in tcp_veno_ssthresh()
/kernel/linux/linux-6.6/drivers/gpu/drm/mcde/
H A Dmcde_clk_div.c54 unsigned long this_prate, div_rate, diff; in mcde_clk_div_choose_div() local
61 diff = abs(rate - div_rate); in mcde_clk_div_choose_div()
63 if (diff < best_diff) { in mcde_clk_div_choose_div()
65 best_diff = diff; in mcde_clk_div_choose_div()
/kernel/linux/linux-6.6/tools/perf/bench/
H A Dpmu-scan.c131 struct timeval start, end, diff; in run_pmu_scan() local
155 timersub(&end, &start, &diff); in run_pmu_scan()
156 runtime_us = diff.tv_sec * USEC_PER_SEC + diff.tv_usec; in run_pmu_scan()
/kernel/linux/linux-6.6/tools/testing/selftests/timers/
H A Dadjtick.c72 long long diff = 0, tmp; in get_monotonic_and_raw() local
87 if (diff == 0 || newdiff < diff) { in get_monotonic_and_raw()
88 diff = newdiff; in get_monotonic_and_raw()
/kernel/linux/linux-6.6/net/ipv4/
H A Dtcp_veno.c33 u32 diff; /* calculate the diff rate */ member
153 veno->diff = (tcp_snd_cwnd(tp) << V_PARAM_SHIFT) - target_cwnd; in tcp_veno_cong_avoid()
163 if (veno->diff < beta) { in tcp_veno_cong_avoid()
200 if (veno->diff < beta) in tcp_veno_ssthresh()
/third_party/FreeBSD/contrib/libexecinfo/
H A Dbacktrace.c88 ptrdiff_t diff = (const char *)addr - (const char *)dli->dli_saddr; in format_string() local
103 if (diff) in format_string()
104 len = rasprintf(buf, bufsiz, o, "+0x%tx", diff); in format_string()
109 len = rasprintf(buf, bufsiz, o, "0x%tx", diff); in format_string()
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/
H A Dglcpp_test.py106 valid, diff = test_output(args.glcpp, contents, testfile + '.expected')
112 for l in diff:
138 valid, diff = test_output(
146 for l in diff:
/third_party/ltp/testcases/kernel/mce-test/hwpoison/
H A Dtsoftinj.c162 unsigned diff = count2 - *count; in check() local
163 if (diff != expected) { in check()
166 diff); in check()
167 if (diff < expected) in check()
/third_party/ltp/testcases/kernel/mce-test/tsrc/
H A Dtsoftinj.c162 unsigned diff = count2 - *count; in check() local
163 if (diff != expected) { in check()
166 diff); in check()
167 if (diff < expected) in check()
/third_party/libabigail/src/
H A Dabg-reporter-priv.h16 /// If the diff about two subjects S1 and S2 was reported earlier or
18 /// from the current diff reporting function.
20 /// @param S1 the first diff subject to take in account.
22 /// @param S2 the second diff subject to take in account.
39 /// If a given diff was reported earlier or is being reported, emit a
40 /// diagnostic message about this and return from the current diff
43 /// @param S1 the first diff subject to take in account.
45 /// @param S2 the second diff subject to take in account.
71 /// If the diff about two subjects S1 and S2 was reported earlier or
73 /// from the current diff reportin
[all...]
/third_party/rust/crates/memchr/src/memmem/
H A Dgenericsimd.rs154 let remaining = diff(end_ptr, ptr);
169 let overlap = diff(ptr, max_ptr);
258 diff(ptr, start_ptr) + chunki in matched()
263 fn diff(a: *const u8, b: *const u8) -> usize { in diff() functions

Completed in 11 milliseconds

1...<<11121314151617181920>>...117