HomeSort by relevance Sort by last modified time
    Searched defs:time1 (Results 1 - 25 of 55) sorted by null

1 2 3

  /device/generic/goldfish/libqemu/
test_guest_1.c 96 double time1 = 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
231 time1 = 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) );
  /device/google/contexthub/firmware/inc/algos/
time_sync.h 32 uint64_t time1[NUM_TIME_SYNC_DATAPOINTS]; member in struct:__anon2876
50 bool time_sync_add(time_sync_t *sync, uint64_t time1, uint64_t time2);
51 bool time_sync_estimate_time1(time_sync_t *sync, uint64_t time2, uint64_t *time1);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/stress/
StressEmitterTest.java 41 long time1 = System.nanoTime(); local
44 float duration = (time2 - time1) / 1000000;
50 time1 = System.nanoTime();
55 duration = ((time2 - time1) / 1000000) / (float) number;
65 time1 = System.nanoTime();
71 duration = ((time2 - time1) / 1000000) / (float) number;
StressTest.java 43 long time1 = System.nanoTime(); local
46 float duration = (time2 - time1) / 1000000;
50 time1 = System.nanoTime();
53 duration = (time2 - time1) / 1000000;
60 time1 = System.nanoTime();
65 duration = ((time2 - time1) / 1000000) / (float) number;
76 time1 = System.nanoTime();
82 duration = ((time2 - time1) / 1000000) / (float) number;
ParallelTest.java 59 long time1 = System.nanoTime(); local
66 float duration = ((time2 - time1) / 1000000) / (float) cycles;
  /art/test/133-static-invoke-super/src/
Main.java 42 long time1 = System.nanoTime(); local
49 double basisMsec = (time1 - time0) / (double) count1 / 1000000;
50 double msec1 = (time2 - time1) / (double) count2 / 1000000;
  /cts/tests/tests/shortcutmanager/src/android/content/pm/cts/shortcutmanager/
ShortcutManagerLauncherApiTest.java 135 final long time1 = System.currentTimeMillis(); local
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationUtilsTest.java 88 long time1 = AnimationUtils.currentAnimationTimeMillis(); local
89 assertTrue(time1 > 0);
92 for (int i = 0; i < 1000 && time1 >= time2; i++) {
100 assertTrue(time2 > time1);
  /art/test/055-enum-performance/src/
Main.java 37 long time1 = System.nanoTime(); local
50 double msec1 = (time1 - time0) / (double) count1 / 1000000;
51 double msec2 = (time2 - time1) / (double) count2 / 1000000;
  /external/autotest/client/deps/glbench/src/
testbase.cc 30 uint64_t time1 = GetUTime(); local
35 return time2 - time1;
  /external/netperf/src/
netcpu_kstat.c 270 struct timeval time1, time2 ; local
291 gettimeofday (&time1, &tz);
295 if (time2.tv_usec < time1.tv_usec)
300 sec = time2.tv_sec - time1.tv_sec;
301 usec = time2.tv_usec - time1.tv_usec;
netcpu_perfstat.c 136 struct timeval time1, time2 ; local
192 gettimeofday (&time1, &tz);
196 if (time2.tv_usec < time1.tv_usec)
201 sec = time2.tv_sec - time1.tv_sec;
202 usec = time2.tv_usec - time1.tv_usec;
netcpu_pstat.c 121 struct timeval time1, time2; local
158 gettimeofday (&time1, &tz);
162 if (time2.tv_usec < time1.tv_usec)
167 sec = time2.tv_sec - time1.tv_sec;
168 usec = time2.tv_usec - time1.tv_usec;
netcpu_looper.c 506 struct timeval time1, time2 ;
520 gettimeofday (&time1, &tz);
524 if (time2.tv_usec < time1.tv_usec)
529 sec = time2.tv_sec - time1.tv_sec;
530 usec = time2.tv_usec - time1.tv_usec;
505 struct timeval time1, time2 ; local
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TimeZoneTest.java 79 long time1 = new GregorianCalendar(1998, Calendar.NOVEMBER, 11) local
82 -(5 * ONE_HOUR), st1.getOffset(time1));
93 -(5 * ONE_HOUR), tz1.getOffset(time1));
100 (3 * ONE_HOUR), tz1.getOffset(time1));
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStressTest.java 93 long time1 = System.currentTimeMillis(); local
94 System.out.println("ZIP stress test finished, time was " + (time1- time0) + "ms");
113 long time1 = System.currentTimeMillis(); local
114 System.out.println("ZIP stress test finished, time was " + (time1- time0) + "ms");
  /external/dng_sdk/source/
dng_date_time.cpp 872 uint64 time1 = (((uint64) localFT.dwHighDateTime) << 32) + localFT.dwLowDateTime; local
877 int64 time1Sec = time1 / 10000000;
  /external/libweave/src/
component_manager_unittest.cc 1185 base::Time time1 = base::Time::Now(); local
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncStorageEngineTest.java 103 long time1 = time0 + SyncStorageEngine.MILLIS_IN_4WEEKS * 2; local
104 engine.stopSyncEvent(historyId, time1 - time0, "yay", 0, 0);
  /frameworks/base/tests/SurfaceComposition/src/android/surfacecomposition/
SurfaceCompositionMeasuringActivity.java 154 long time1 = System.currentTimeMillis(); local
170 double speed = MIN_NUMBER_OF_SURFACES * 1000.0 / (time2 - time1);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
IBMCalendarTest.java 582 Date time1 = cal.getTime(); // Get time -- should not change local
604 if (!time1.equals(time2)) {
607 logln(time1.toString());
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
IBMCalendarTest.java 578 Date time1 = cal.getTime(); // Get time -- should not change local
600 if (!time1.equals(time2)) {
603 logln(time1.toString());
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneRuleTest.java 743 long time1 = getUTCMillis(2005, Calendar.JULY, 4); local
1061 long time1 = getUTCMillis(1990, Calendar.JUNE, 1); local
1210 long time1 = getUTCMillis(1950, Calendar.JANUARY, 1); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
tzrulets.cpp 1204 UDate time1 = getUTCMillis(2005, UCAL_JULY, 4); local
1515 UDate time1 = getUTCMillis(1990, UCAL_JUNE, 1); local
1752 UDate time1 = getUTCMillis(1950, UCAL_JANUARY, 1); local
    [all...]

Completed in 1266 milliseconds

1 2 3