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

  /external/qemu/distrib/sdl-1.2.15/src/timer/wince/
SDL_systimer.c 46 FILETIME ftime; member in union:__anon34033
48 } ftime; local
52 SystemTimeToFileTime(&stime,&ftime.ftime);
53 ftime.itime/=10000; // Convert 100ns intervals to 1ms intervals
55 ftime.itime -= (ftime.itime % 1000);
56 return(ftime.itime);
  /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 271 // Only used by ftime, which was removed from POSIX 2008.
280 extern "C" int ftime(struct timeb* tb) { function
  /external/chromium_org/base/time/
time_unittest.cc 574 FILETIME ftime; local
575 ftime.dwHighDateTime = std::numeric_limits<DWORD>::max();
576 ftime.dwLowDateTime = std::numeric_limits<DWORD>::max();
577 t = Time::FromFileTime(ftime);
579 ftime = t.ToFileTime();
580 EXPECT_EQ(std::numeric_limits<DWORD>::max(), ftime.dwHighDateTime);
581 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);
  /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);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadTest.java 817 long stime = 0, ftime = 0; local
821 ftime = System.currentTimeMillis();
825 assertTrue("Failed to sleep long enough", (ftime - stime) >= 800);
835 long stime = 0, ftime = 0; local
839 ftime = System.currentTimeMillis();
843 long result = ftime - stime;

Completed in 2045 milliseconds