/external/compiler-rt/test/msan/ |
ftime.cc | 3 // ftime() is deprecated on FreeBSD. 13 int res = ftime(&tb);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/ |
timeb.h | 30 /* Structure returned by the `ftime' function. */ 42 extern int ftime (struct timeb *__timebuf);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/ |
timeb.h | 30 /* Structure returned by the `ftime' function. */ 42 extern int ftime (struct timeb *__timebuf);
|
/external/fio/tools/ |
fiologparser.py | 34 ftime = 0 36 if ftime == 0 or ts.last.end < ftime: 37 ftime = ts.last.end 38 return ftime 41 ftime = get_ftime(series) 45 while (start < ftime): 46 end = ftime if ftime < end else end 53 ftime = get_ftime(series [all...] |
/external/linux-kselftest/android/include/sys/ |
timeb.h | 13 static inline int ftime(struct timeb *tp) { function
|
/external/ltp/android/include/sys/ |
timeb.h | 13 static inline int ftime(struct timeb *tp) { function
|
/libcore/ojluni/src/main/java/java/util/zip/ |
ZipUtils.java | 48 public static final long fileTimeToWinTime(FileTime ftime) { 49 return (ftime.to(TimeUnit.MICROSECONDS) - WINDOWS_EPOCH_IN_MICROSECONDS) * 10; 62 public static final long fileTimeToUnixTime(FileTime ftime) { 63 return ftime.to(TimeUnit.SECONDS);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/ |
timeb.h | 102 void __cdecl ftime (struct timeb *); 107 __CRT_INLINE void __cdecl ftime(struct timeb *_Tmb) { function 111 __CRT_INLINE void __cdecl ftime(struct timeb *_Tmb) { function
|
/external/linux-kselftest/tools/testing/selftests/intel_pstate/ |
aperf.c | 56 ftime(&before); 65 ftime(&after);
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldThreadTest.java | 188 long ftime = System.currentTimeMillis(); local 190 assertTrue("Failed to sleep long enough", (ftime - stime) >= 500); 191 assertTrue("Failed to wake up early enough", (ftime - stime) <= 1500); 235 long ftime = System.currentTimeMillis(); local 237 assertTrue("Failed to sleep long enough", (ftime - stime) >= 500); 238 assertTrue("Failed to wake up early enough", (ftime - stime) <= 1500);
|
/external/curl/tests/ |
directories.pm | 214 my $ftime = $file{'time'} ? sprintf("%10s", $file{'time'}) : "Jan 9 1933"; 215 push(@contentlist, "$ftype$fperm $fhlink $fuser $fgroup $fsize $ftime $file{'name'}$eol");
|
/external/ltp/testcases/kernel/mem/hugetlb/lib/ |
hugetlb.c | 86 * structure after calling ftime(). 88 ftime(&time_info);
|
/external/xmlrpcpp/src/ |
XmlRpcDispatch.cpp | 14 # define ftime _ftime macro 196 ftime(&tbuff);
|
/device/google/marlin/dataservices/datatop/src/ |
datatop.c | 98 struct timeval ftime, itime, polltime; local 126 //ftime is right before timeout calculations for most acurate calculations 127 gettimeofday(&ftime, NULL); 128 timersub(&ftime, &itime, &polltime);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
ThreadTest.java | 823 long stime = 0, ftime = 0; local 827 ftime = System.currentTimeMillis(); 831 assertTrue("Failed to sleep long enough", (ftime - stime) >= 800); 841 long stime = 0, ftime = 0; local 845 ftime = System.currentTimeMillis(); 849 long result = ftime - stime;
|
/external/zlib/src/contrib/untgz/ |
untgz.c | 206 int setfiletime (char *fname,time_t ftime) 216 loctm = localtime(&ftime); 245 settime.actime = settime.modtime = ftime;
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/fs.op.funcs/fs.op.last_write_time/ |
last_write_time.pass.cpp | 189 file_time_type ftime = last_write_time(file); 190 TEST_CHECK(Clock::to_time_t(ftime) == file_write_time); 206 TEST_CHECK(ftime2 > ftime);
|
/toolchain/binutils/binutils-2.27/zlib/contrib/untgz/ |
untgz.c | 206 int setfiletime (char *fname,time_t ftime) 216 loctm = localtime(&ftime); 245 settime.actime = settime.modtime = ftime;
|
/external/e2fsprogs/lib/uuid/ |
gen_uuid.c | 121 FILETIME ftime; local 124 GetSystemTimeAsFileTime (&ftime); 125 n = (((uint64_t) ftime.dwHighDateTime << 32) 126 + (uint64_t) ftime.dwLowDateTime);
|
/external/libpcap/lbl/ |
os-sunos4.h | 85 int ftime(struct timeb *);
|
/external/tcpdump/lbl/ |
os-sunos4.h | 86 int ftime(struct timeb *);
|
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/ |
VrView.java | 433 float ftime = (time - m_last_time) / 1E6f; local 434 if (ftime > 100) 435 addLine(line + ": " + (ftime / 1E3f) + " sec"); 437 addLine(line + ": " + (ftime) + " ms");
|
/external/libchrome/base/time/ |
time_unittest.cc | 592 FILETIME ftime; local 593 ftime.dwHighDateTime = std::numeric_limits<DWORD>::max(); 594 ftime.dwLowDateTime = std::numeric_limits<DWORD>::max(); 595 t = Time::FromFileTime(ftime); 597 ftime = t.ToFileTime(); 598 EXPECT_EQ(std::numeric_limits<DWORD>::max(), ftime.dwHighDateTime); 599 EXPECT_EQ(std::numeric_limits<DWORD>::max(), ftime.dwLowDateTime); [all...] |
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.last_write_time/ |
last_write_time.pass.cpp | 217 file_time_type ftime = last_write_time(file); 218 TEST_CHECK(Clock::to_time_t(ftime) == file_write_time); 234 TEST_CHECK(ftime2 > ftime);
|
/bionic/libc/bionic/ |
ndk_cruft.cpp | 295 // Only used by ftime, which was removed from POSIX 2008. 304 int ftime(struct timeb* tb) { function
|