HomeSort by relevance Sort by last modified time
    Searched refs:clock (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /system/extras/tests/bionic/libstdc++/
test_ctime.cpp 47 #ifdef clock
75 using std::clock;
89 volatile std::clock_t clock; local
97 volatile std::clock_t clock1 = std::clock();
98 volatile std::clock_t clock2 = std::clock();
  /bionic/libstdc++/include/
ctime 50 using ::clock;
  /bootable/bootloader/legacy/arch_msm7k/
Android.mk 8 clock.c \
  /ndk/sources/cxx-stl/system/include/
ctime 50 using ::clock;
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
ctime 48 using ::clock;
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
ctime 48 using ::clock;
  /frameworks/base/include/utils/
StopWatch.h 33 int clock = SYSTEM_TIME_MONOTONIC,
Timers.h 78 SYSTEM_TIME_REALTIME = 0, // system-wide realtime clock
80 SYSTEM_TIME_PROCESS = 2, // high-resolution per-process clock
81 SYSTEM_TIME_THREAD = 3 // high-resolution per-thread clock
84 // return the system-time according to the specified clock
86 nsecs_t systemTime(int clock = SYSTEM_TIME_MONOTONIC);
88 nsecs_t systemTime(int clock);
  /external/dropbear/libtommath/etc/
2kprime.c 25 t1 = clock();
35 if (clock() - t1 > CLOCKS_PER_SEC) {
37 // sleep((clock() - t1 + CLOCKS_PER_SEC/2)/CLOCKS_PER_SEC);
38 t1 = clock();
mersenne.c 115 tt = clock ();
125 tt = clock () - tt;
  /external/qemu/
qemu-timer.h 9 /* The real time clock should be used only for stuff which does not
11 machine is stopped. The real time clock has a frequency of 1000
15 /* The virtual clock is only run during the emulation. It is stopped
17 precision clock, usually cpu cycles (use ticks_per_sec). */
20 /* The host clock should be use for device models that emulate accurate
23 undergo (e.g. due to NTP). The host clock has the same precision as
24 the virtual clock. */
27 int64_t qemu_get_clock(QEMUClock *clock);
28 int64_t qemu_get_clock_ns(QEMUClock *clock);
30 QEMUTimer *qemu_new_timer(QEMUClock *clock, QEMUTimerCB *cb, void *opaque)
    [all...]
  /system/extras/tests/bionic/libc/common/
test_pthread_getcpuclockid.c 43 clockid_t clock; local
48 e = pthread_getcpuclockid( self, &clock );
59 clock_gettime( clock, &ts );
  /bionic/libc/unistd/
time.c 47 clock(void) function
  /external/stlport/stlport/stl/
_ctime.h 38 using _STLP_VENDOR_CSTD::clock;
  /ndk/sources/android/stlport/stlport/stl/
_ctime.h 38 using _STLP_VENDOR_CSTD::clock;
  /external/dbus/dbus/
dbus-mempool.c 415 start = clock ();
441 end = clock ();
450 start = clock ();
480 end = clock ();
487 start = clock ();
513 end = clock ();
520 start = clock ();
550 end = clock ();
  /frameworks/base/libs/utils/
StopWatch.cpp 32 StopWatch::StopWatch(const char *name, int clock, uint32_t flags)
33 : mName(name), mClock(clock), mFlags(flags)
Timers.cpp 34 nsecs_t systemTime(int clock)
45 clock_gettime(clocks[clock], &t);
  /external/qemu/distrib/sdl-1.2.12/src/timer/amigaos/
SDL_systimer.c 65 start=clock();
72 ticks=clock()-start;
91 clock_t to_wait=clock();
98 while(clock()<to_wait);
  /external/qemu/distrib/sdl-1.2.12/src/timer/riscos/
SDL_systimer.c 58 start = clock();
65 ticks=clock()-start;
  /bionic/libc/bionic/
time64.c 60 # define LOCALTIME_R(clock, result) localtime_r(clock, result)
62 # define LOCALTIME_R(clock, result) fake_localtime_r(clock, result)
65 # define GMTIME_R(clock, result) gmtime_r(clock, result)
67 # define GMTIME_R(clock, result) fake_gmtime_r(clock, result)
432 struct tm * fake_localtime_r(const time_t *clock, struct tm *result) {
433 const struct tm *static_result = localtime(clock);
    [all...]
  /external/srec/srec/crec/
comp_stats.c 73 if (clock() == (clock_t) - 1)
75 pfprintf(fp, "***WARNING: clock overrun!\n");
124 /* Should use a portable clock() */
125 /* WxWorks: clock() always returns -1. VxWorks does not track per-task time or system idle time.
128 clock_gettime( ) can be used to get the current clock time.
132 c->last = clock();
153 curr = clock();
154 if (curr == -1) return; /* clock overrun */
  /external/expat/tests/benchmark/
benchmark.c 83 tstart = clock();
102 tend = clock();
  /external/srec/srec/include/
comp_stats.h 95 void reset_cs_clock(CS_CLOCK *clock);
104 void start_cs_clock(CS_CLOCK *clock);
  /bionic/libc/kernel/common/linux/mmc/
host.h 18 unsigned int clock; member in struct:mmc_ios

Completed in 398 milliseconds

1 2 3 4