HomeSort by relevance Sort by last modified time
    Searched refs:time0 (Results 1 - 8 of 8) sorted by null

  /bionic/libc/tzcode/
difftime.c 11 difftime(const time_t time1, const time_t time0)
18 return (double) time1 - (double) time0;
23 return time1 - time0;
31 if (time1 >= time0)
32 return time1 - time0;
33 else return -(double) (time0 - time1);
37 ** Handle cases where both time1 and time0 have the same sign
40 if ((time1 < 0) == (time0 < 0))
41 return time1 - time0;
43 ** time1 and time0 have opposite signs
    [all...]
  /device/generic/goldfish/libqemu/
test_guest_1.c 63 double time0 = now_secs(); local
102 total*1.0 / (1024.*1024.*(time1-time0)), 1.0*total, time1-time0);
test_guest_2.c 61 double time0, time1; local
160 time0 = now_secs();
236 printf("Total time: %g seconds\n", time1 - time0);
238 printf("Bandwidth: %g MB/s\n", (maxCount*bufferSize/(1024.0*1024.0))/(time1 - time0) );
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStressTest.java 79 long time0 = System.currentTimeMillis(); local
94 System.out.println("ZIP stress test finished, time was " + (time1- time0) + "ms");
98 long time0 = System.currentTimeMillis(); local
114 System.out.println("ZIP stress test finished, time was " + (time1- time0) + "ms");
  /external/chromium_org/media/mp2t/
ts_section_pes.cc 33 int64 time0 = ((previous_unrolled_time_high - 1) << nbits) | time; local
39 int64 diff0 = time0 - previous_unrolled_time;
55 unrolled_time = time0;
  /art/test/055-enum-performance/src/
Main.java 35 long time0 = System.nanoTime(); local
50 double msec1 = (time1 - time0) / (double) count1 / 1000000;
  /dalvik/tests/055-enum-performance/src/
Main.java 15 long time0 = System.nanoTime(); local
30 double msec1 = (time1 - time0) / (double) count1 / 1000000;
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncStorageEngineTest.java 84 long time0 = 1000; local
86 account, 0, SyncOperation.REASON_PERIODIC, authority, time0,
88 long time1 = time0 + SyncStorageEngine.MILLIS_IN_4WEEKS * 2;
89 engine.stopSyncEvent(historyId, time1 - time0, "yay", 0, 0);
    [all...]

Completed in 7236 milliseconds