OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:time0
(Results
1 - 25
of
79
) sorted by null
1
2
3
4
/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");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
ctime
33
double difftime(time_t time1, time_t
time0
);
/external/chromium_org/third_party/skia/src/gpu/
FlingState.cpp
102
fTime0 = 1; //
time0
is our sentinel
/external/skia/src/gpu/
FlingState.cpp
102
fTime0 = 1; //
time0
is our sentinel
/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;
/bionic/libc/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/development/ndk/platforms/android-3/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/development/ndk/platforms/android-8/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/prebuilts/ndk/5/platforms/android-8/arch-arm/usr/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/prebuilts/ndk/6/platforms/android-8/arch-arm/usr/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/prebuilts/ndk/6/platforms/android-8/arch-x86/usr/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
/prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/
time.h
69
/* Return the difference between TIME1 and
TIME0
. */
Completed in 1882 milliseconds
1
2
3
4