HomeSort by relevance Sort by last modified time
    Searched defs:diff (Results 201 - 225 of 1231) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_simple_rpc_call/
tirpc_rpc_call_performance.c 95 long long diff; local
128 diff =
131 rslt = (double)diff / 1000;
tirpc_rpc_call_scalability.c 93 long long diff; local
158 diff =
161 rslt = (double)diff / 1000;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_toplevel_clnt_call/
tirpc_toplevel_clnt_call_performance.c 95 long long diff; local
132 diff =
135 rslt = (double)diff / 1000;
  /external/ltp/testcases/open_posix_testsuite/functional/threads/condvar/
pthread_cond_wait_1.c 48 float diff = t2.tv_sec - t1.tv_sec; local
49 diff += (t2.tv_nsec - t1.tv_nsec) / 1000000000.0;
50 return diff;
pthread_cond_wait_2.c 48 float diff = t2.tv_sec - t1.tv_sec; local
49 diff += (t2.tv_nsec - t1.tv_nsec) / 1000000000.0;
50 return diff;
  /external/ltp/testcases/open_posix_testsuite/functional/threads/schedule/
1-1.c 45 float diff = t2.tv_sec - t1.tv_sec; local
46 diff += (t2.tv_nsec - t1.tv_nsec) / 1000000000.0;
47 return diff;
1-2.c 46 float diff = t2.tv_sec - t1.tv_sec; local
47 diff += (t2.tv_nsec - t1.tv_nsec) / 1000000000.0;
48 return diff;
  /external/ltp/testcases/realtime/func/thread_clock/
tc-2.c 137 float diff, threadstime = 0; local
159 diff = proctime - threadstime;
160 if (diff < 0)
161 diff = -diff;
164 printf("Delta: %.4f s\n", diff);
169 if (diff > pass_criteria) {
  /external/pdfium/core/fxge/
cfx_pathdata.cpp 48 CFX_PointF diff = end_pos - start_pos; local
49 float ll = FXSYS_sqrt2(diff.x, diff.y);
50 float mx = end_pos.x + hw * diff.x / ll;
51 float my = end_pos.y + hw * diff.y / ll;
52 float dx1 = hw * diff.y / ll;
53 float dy1 = hw * diff.x / ll;
  /external/selinux/prebuilts/bin/
sediff.py 30 parser.add_argument("POLICY1", help="Path to the first SELinux policy to diff.", nargs=1)
31 parser.add_argument("POLICY2", help="Path to the second SELinux policy to diff.", nargs=1)
132 diff = setools.PolicyDifference(p1, p2) variable
135 print("Policy Properties ({0} Modified)".format(len(diff.modified_properties)))
137 if diff.modified_properties and not args.stats:
138 for name, added, removed in sorted(diff.modified_properties, key=lambda x: x.property):
144 if diff.added_commons or diff.removed_commons or diff.modified_commons or args.common:
146 len(diff.added_commons), len(diff.removed_commons), len(diff.modified_commons))
    [all...]
  /external/skia/src/core/
SkBlitRow_D32.cpp 53 __m128i diff = _mm_or_si128(diff_rb, diff_ag); local
56 return _mm_add_epi8(dst, diff);
  /external/skia/tests/
PackedConfigsTextureTest.cpp 26 uint8_t diff = 0; local
28 diff = control - test;
30 diff = test - control;
32 REPORTER_ASSERT(reporter, diff < TOL);
  /external/skqp/src/core/
SkBlitRow_D32.cpp 53 __m128i diff = _mm_or_si128(diff_rb, diff_ag); local
56 return _mm_add_epi8(dst, diff);
  /external/skqp/tests/
PackedConfigsTextureTest.cpp 26 uint8_t diff = 0; local
28 diff = control - test;
30 diff = test - control;
32 REPORTER_ASSERT(reporter, diff < TOL);
  /external/slf4j/integration/src/test/java/org/slf4j/
VersionMismatchAssertionTest.java 36 int diff = 1024 + new Random().nextInt(10000); field in class:VersionMismatchAssertionTest
54 String msg = "hello world " + diff;
  /external/syzkaller/vendor/github.com/google/go-cmp/cmp/internal/diff/
diff.go 5 // Package diff implements an algorithm for producing edit-scripts.
13 package diff package
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
grow_stats_test.cc 383 float diff = stats.get_weight(i) - i * 1.0; local
384 EXPECT_LE(diff, tolerance);
385 EXPECT_GE(diff, -tolerance);
  /external/tensorflow/tensorflow/core/grappler/optimizers/
implementation_selector.cc 62 const int diff = prev_input_size - apiInfo.input_arg_dtypes().size(); local
63 if (diff >= 0) {
64 for (int i = 0; i < diff; ++i) node_def->mutable_input()->RemoveLast();
92 for (int i = 1; i <= -diff; ++i)
  /external/toybox/toys/net/
sntp.c 45 // diff is how far off we think our clock is from reality (in nanoseconds)
46 static unsigned long long lunchtime(struct timespec *television, long long diff)
51 if (diff) nanomove(&tv, diff);
74 long long diff = 0; local
122 pktime[5] = SWAP_BE64(before = lunchtime(&tv, diff));
173 int unset = !diff;
181 lunchtime(&tv2, diff);
182 diff = nanodiff(&tv, &tv2);
183 if (unset && diff) break
    [all...]
  /external/toybox/toys/pending/
last.c 75 double diff = difftime(tm1, tm0); local
77 diff = (diff > 0) ? (tm1 - tm0) : 0;
81 days = (mins = diff/60)/(24*60);
  /external/u-boot/arch/arm/mach-at91/arm920t/
clock.c 43 unsigned i, div = 0, mul = 0, diff = 1 << 30; local
74 if (diff > diff1) {
75 diff = diff1;
78 if (diff == 0)
82 if (i == 256 && diff > (out_freq >> 5))
  /external/u-boot/arch/arm/mach-at91/arm926ejs/
clock.c 43 unsigned i, div = 0, mul = 0, diff = 1 << 30; local
82 if (diff > diff1) {
83 diff = diff1;
86 if (diff == 0)
90 if (i == 256 && diff > (out_freq >> 5))
  /external/u-boot/drivers/power/regulator/
pwm_regulator.c 52 int diff = max_uV - min_uV; local
54 return ((req_uV * 100) - (min_uV * 100)) / diff;
  /external/u-boot/drivers/video/sunxi/
lcdc.c 214 int value, n, m, min_m, max_m, diff; local
244 diff = dotclock - value;
245 if (diff < best_diff) {
246 best_diff = diff;
262 diff = dotclock - value;
263 if (diff < best_diff) {
264 best_diff = diff;
  /external/v8/tools/clusterfuzz/
v8_suppressions.py 183 with a readable diff.
244 def diff(self, output1, output2): member in class:Suppression
267 def diff(self, output1, output2): member in class:V8Suppression

Completed in 1570 milliseconds

1 2 3 4 5 6 7 891011>>