/bionic/libc/tzcode/ |
difftime.c | 18 difftime(time_t time1, time_t time0) 25 double t1 = time1, t0 = time0; 34 return time0 <= time1 ? time1 - time0 : dminus(time0 - time1); 38 uintmax_t t1 = time1, t0 = time0; 39 return time0 <= time1 ? t1 - t0 : dminus(t0 - t1); 43 ** Handle cases where both time1 and time0 have the same sign 46 if ((time1 < 0) == (time0 < 0)) 47 return time1 - time0; [all...] |
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/ |
test_bbox.c | 141 long time0; local 143 time0 = get_time(); 147 time0 = get_time() - time0; 149 ((double)time0/10000.0), 158 time0 = get_time(); 162 time0 = get_time() - time0; 164 ((double)time0/10000.0),
|
/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) );
|
/art/test/133-static-invoke-super/src/ |
Main.java | 40 long time0 = System.nanoTime(); local 49 double basisMsec = (time1 - time0) / (double) count1 / 1000000;
|
/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");
|
/frameworks/base/services/tests/servicestests/src/com/android/server/content/ |
SyncStorageEngineTest.java | 96 long time0 = 1000; local 102 long historyId = engine.insertStartSyncEvent(op, time0); 103 long time1 = time0 + SyncStorageEngine.MILLIS_IN_4WEEKS * 2; 104 engine.stopSyncEvent(historyId, time1 - time0, "yay", 0, 0);
|
/art/test/055-enum-performance/src/ |
Main.java | 35 long time0 = System.nanoTime(); local 50 double msec1 = (time1 - time0) / (double) count1 / 1000000;
|
/external/opencv3/modules/highgui/src/ |
window_w32.cpp | 1903 int time0 = GetTickCount(); local [all...] |
/external/v8/test/mjsunit/asm/embenchen/ |
lua_binarytrees.js | [all...] |