HomeSort by relevance Sort by last modified time
    Searched refs:timeGetTime (Results 1 - 12 of 12) sorted by null

  /external/icu4c/test/perf/ubrkperf/
ubrkperf.cpp 61 unsigned long startTime = timeGetTime();
77 startTime = timeGetTime();
84 elapsedTime = timeGetTime()-startTime;
108 startTime = timeGetTime();
120 elapsedTime = timeGetTime()-startTime;
ubrkperfold.cpp 79 unsigned long timeGetTime() {
285 unsigned long startTime = timeGetTime();
303 startTime = timeGetTime();
310 elapsedTime = timeGetTime()-startTime;
334 startTime = timeGetTime();
346 elapsedTime = timeGetTime()-startTime;
371 unsigned long startTime = timeGetTime();
388 startTime = timeGetTime();
397 elapsedTime = timeGetTime()-startTime;
  /external/qemu/distrib/sdl-1.2.12/src/timer/win32/
SDL_systimer.c 68 start = timeGetTime();
95 now = timeGetTime();
  /external/icu4c/test/perf/collationperf/
collperf.cpp 86 unsigned long timeGetTime() {
382 unsigned long startTime = timeGetTime();
422 unsigned long elapsedTime = timeGetTime() - startTime;
486 unsigned long startTime = timeGetTime();
518 elapsedTime = timeGetTime() - startTime;
525 unsigned long startTime = timeGetTime();
570 elapsedTime = timeGetTime() - startTime;
576 unsigned long startTime = timeGetTime();
626 elapsedTime = timeGetTime() - startTime;
632 unsigned long startTime = timeGetTime();
    [all...]
  /external/chromium/base/
event_recorder.cc 19 // timeGetTime API instead of the default GetTickCount() API.
127 playback_start_time_ = timeGetTime();
193 msg_ptr->time = timeGetTime();
243 (timeGetTime() - playback_start_time_);
time_win.cc 17 // It's 3-4x slower than timeGetTime() on desktops, but can be 10x slower
21 // The next logical choice is timeGetTime(). timeGetTime has a precision of
30 // To work around all this, we're going to generally use timeGetTime(). We
248 return timeGetTime();
256 // The last timeGetTime value we saw, to detect rollover.
267 // We use timeGetTime() to implement TimeTicks::Now(). This can be problematic
  /external/valgrind/tsan/
ts_util.cc 66 return WINDOWS::timeGetTime();
  /external/valgrind/unittest/
thread_wrappers_win.h 61 return (int)timeGetTime();
  /external/quake/quake/src/QW/client/
net_chan.c 95 port = ((int)(timeGetTime()*1000) * time(NULL)) & 0xffff;
sys_win.c 379 now = timeGetTime();
  /external/webrtc/src/system_wrappers/interface/
tick_util.h 149 DWORD now = timeGetTime();
  /external/v8/src/
platform-win32.cc 446 // timeGetTime() provides 1ms granularity when combined with
450 // Using timeGetTime() has a drawback because it is a 32bit value
454 // and then use timeGetTime to extrapolate current time from the
457 // whenever timeGetTime creates a rollover.
472 DWORD ticks_now = timeGetTime();
483 init_ticks = ticks_now = timeGetTime();
614 // Returns the tickcounter based on timeGetTime.
616 return timeGetTime() * 1000; // Convert to microseconds.
    [all...]

Completed in 2408 milliseconds