HomeSort by relevance Sort by last modified time
    Searched defs:ftime (Results 1 - 9 of 9) sorted by null

  /external/xmlrpcpp/src/
XmlRpcDispatch.cpp 14 # define ftime _ftime macro
196 ftime(&tbuff);
  /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
  /bionic/libc/bionic/
ndk_cruft.cpp 290 // Only used by ftime, which was removed from POSIX 2008.
299 int ftime(struct timeb* tb) { function
  /external/libweave/third_party/chromium/base/time/
time_unittest.cc 337 FILETIME ftime; local
338 ftime.dwHighDateTime = std::numeric_limits<DWORD>::max();
339 ftime.dwLowDateTime = std::numeric_limits<DWORD>::max();
340 t = Time::FromFileTime(ftime);
342 ftime = t.ToFileTime();
343 EXPECT_EQ(std::numeric_limits<DWORD>::max(), ftime.dwHighDateTime);
344 EXPECT_EQ(std::numeric_limits<DWORD>::max(), ftime.dwLowDateTime);
  /external/e2fsprogs/lib/uuid/
gen_uuid.c 116 FILETIME ftime; local
119 GetSystemTimeAsFileTime (&ftime);
120 n = (((uint64_t) ftime.dwHighDateTime << 32)
121 + (uint64_t) ftime.dwLowDateTime);
  /external/libchrome/base/time/
time_unittest.cc 532 FILETIME ftime; local
533 ftime.dwHighDateTime = std::numeric_limits<DWORD>::max();
534 ftime.dwLowDateTime = std::numeric_limits<DWORD>::max();
535 t = Time::FromFileTime(ftime);
537 ftime = t.ToFileTime();
538 EXPECT_EQ(std::numeric_limits<DWORD>::max(), ftime.dwHighDateTime);
539 EXPECT_EQ(std::numeric_limits<DWORD>::max(), ftime.dwLowDateTime);
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.java 187 long ftime = System.currentTimeMillis(); local
189 assertTrue("Failed to sleep long enough", (ftime - stime) >= 500);
190 assertTrue("Failed to wake up early enough", (ftime - stime) <= 1500);
234 long ftime = System.currentTimeMillis(); local
236 assertTrue("Failed to sleep long enough", (ftime - stime) >= 500);
237 assertTrue("Failed to wake up early enough", (ftime - stime) <= 1500);
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/
VrView.java 434 float ftime = (time - m_last_time) / 1E6f; local
435 if (ftime > 100)
436 addLine(line + ": " + (ftime / 1E3f) + " sec");
438 addLine(line + ": " + (ftime) + " ms");
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadTest.java 822 long stime = 0, ftime = 0; local
826 ftime = System.currentTimeMillis();
830 assertTrue("Failed to sleep long enough", (ftime - stime) >= 800);
840 long stime = 0, ftime = 0; local
844 ftime = System.currentTimeMillis();
848 long result = ftime - stime;

Completed in 260 milliseconds