Home
last modified time | relevance | path

Searched refs:timespec (Results 1 – 25 of 212) sorted by relevance

123456789

/external/skia/tools/timer/
DSysTimer_posix.cpp9 static double interval_in_ms(timespec start_clock, timespec end_clock) in interval_in_ms()
24 timespec none = {0, 0}; in startWall()
30 timespec none = {0, 0}; in startCpu()
36 timespec end_cpu; in endCpu()
38 timespec none = {0, 0}; in endCpu()
45 timespec end_wall; in endWall()
47 timespec none = {0, 0}; in endWall()
DSysTimer_posix.h19 timespec fCpu;
20 timespec fWall;
/external/bison/lib/
Dtime.in.h72 # undef timespec
73 # define timespec rpl_timespec
74 struct timespec
110 (struct timespec const *__rqtp, struct timespec *__rmtp)
113 (struct timespec const *__rqtp, struct timespec *__rmtp));
117 (struct timespec const *__rqtp, struct timespec *__rmtp)
121 (struct timespec const *__rqtp, struct timespec *__rmtp));
Dsys_stat.in.h396 _GL_FUNCDECL_RPL (futimens, int, (int fd, struct timespec const times[2]));
397 _GL_CXXALIAS_RPL (futimens, int, (int fd, struct timespec const times[2]));
400 _GL_FUNCDECL_SYS (futimens, int, (int fd, struct timespec const times[2]));
402 _GL_CXXALIAS_SYS (futimens, int, (int fd, struct timespec const times[2]));
701 struct timespec const times[2], int flag)
704 struct timespec const times[2], int flag));
708 struct timespec const times[2], int flag)
712 struct timespec const times[2], int flag));
/external/lldb/source/Utility/
DTimeSpecTimeout.h47 const struct timespec *
63 const struct timespec *
75 const struct timespec *
84 struct timespec m_timespec;
DTimeSpecTimeout.cpp14 const struct timespec *
31 const struct timespec *
/external/bison/linux-lib/
Dtime.h384 # undef timespec
385 # define timespec rpl_timespec macro
386 struct timespec struct
422 (struct timespec const *__rqtp, struct timespec *__rmtp)
425 (struct timespec const *__rqtp, struct timespec *__rmtp));
429 (struct timespec const *__rqtp, struct timespec *__rmtp)
433 (struct timespec const *__rqtp, struct timespec *__rmtp));
/external/bison/darwin-lib/
Dtime.h384 # undef timespec
385 # define timespec rpl_timespec macro
386 struct timespec struct
422 (struct timespec const *__rqtp, struct timespec *__rmtp)
425 (struct timespec const *__rqtp, struct timespec *__rmtp));
429 (struct timespec const *__rqtp, struct timespec *__rmtp)
433 (struct timespec const *__rqtp, struct timespec *__rmtp));
/external/kernel-headers/original/uapi/linux/
Dandroid_alarm.h55 #define ANDROID_ALARM_SET(type) ALARM_IOW(2, type, struct timespec)
56 #define ANDROID_ALARM_SET_AND_WAIT(type) ALARM_IOW(3, type, struct timespec)
57 #define ANDROID_ALARM_GET_TIME(type) ALARM_IOW(4, type, struct timespec)
58 #define ANDROID_ALARM_SET_RTC _IOW('a', 5, struct timespec)
Dtime.h9 struct timespec { struct
35 struct timespec it_interval; /* timer period */
36 struct timespec it_value; /* timer expiration */
/external/bison/m4/
Dtime_h.m428 dnl Check whether 'struct timespec' is declared
34 AC_CACHE_CHECK([for struct timespec in <time.h>],
40 [[static struct timespec x; x.tv_sec = x.tv_nsec;]])],
50 AC_CACHE_CHECK([for struct timespec in <sys/time.h>],
56 [[static struct timespec x; x.tv_sec = x.tv_nsec;]])],
62 AC_CACHE_CHECK([for struct timespec in <pthread.h>],
68 [[static struct timespec x; x.tv_sec = x.tv_nsec;]])],
/external/lldb/tools/debugserver/source/
DPThreadEvent.h36 …uint32_t WaitForSetEvents (const uint32_t mask, const struct timespec *timeout_abstime = NUL…
37 …uint32_t WaitForEventsToReset(const uint32_t mask, const struct timespec *timeout_abstime = NUL…
41 …uint32_t WaitForResetAck (const uint32_t mask, const struct timespec *timeout_abstime = NULL) c…
DPThreadEvent.cpp133 PThreadEvent::WaitForSetEvents(const uint32_t mask, const struct timespec *timeout_abstime) const in WaitForSetEvents()
181 PThreadEvent::WaitForEventsToReset(const uint32_t mask, const struct timespec *timeout_abstime) con… in WaitForEventsToReset()
219 PThreadEvent::WaitForResetAck (const uint32_t mask, const struct timespec *timeout_abstime) const in WaitForResetAck()
DDNBTimer.h119 …static void OffsetTimeOfDay (struct timespec* ts, __darwin_time_t sec_offset = 0, long nsec_offset…
139 static bool TimeOfDayLaterThan (struct timespec &ts) in TimeOfDayLaterThan()
141 struct timespec now; in TimeOfDayLaterThan()
/external/squashfs-tools/squashfs-tools/
Dunsquashfs_info.c100 struct timespec timespec = { .tv_sec = 1, .tv_nsec = 0 }; in info_thrd() local
109 sig = sigtimedwait(&sigmask, NULL, &timespec); in info_thrd()
Dinfo.c137 struct timespec timespec = { .tv_sec = 1, .tv_nsec = 0 }; in info_thrd() local
146 sig = sigtimedwait(&sigmask, NULL, &timespec); in info_thrd()
/external/openssh/openbsd-compat/
Dbsd-misc.h75 struct timespec { struct
80 int nanosleep(const struct timespec *, struct timespec *); argument
/external/kernel-headers/original/uapi/sound/
Dasound.h411 struct timespec trigger_tstamp; /* time when stream was started/stopped/paused */
412 struct timespec tstamp; /* reference timestamp */
421 struct timespec audio_tstamp; /* from sample counter or wall clock */
422 unsigned char reserved[56-sizeof(struct timespec)]; /* must be filled with zero */
429 struct timespec tstamp; /* Timestamp */
431 struct timespec audio_tstamp; /* from sample counter or wall clock */
599 struct timespec tstamp; /* Timestamp */
711 struct timespec tstamp; /* Timestamp - last update */
761 struct timespec tstamp;
904 struct timespec tstamp;
[all …]
/external/fio/engines/
Dposixaio.c20 static int fill_timespec(struct timespec *ts) in fill_timespec()
43 static unsigned long long ts_utime_since_now(struct timespec *t) in ts_utime_since_now()
46 struct timespec now; in ts_utime_since_now()
94 unsigned int max, const struct timespec *t) in fio_posixaio_getevents()
98 struct timespec start; in fio_posixaio_getevents()
/external/vboot_reference/tests/
Dtimer_utils.h14 struct timespec start_time;
15 struct timespec end_time;
/external/v8/src/base/platform/
Dtime.cc124 TimeDelta TimeDelta::FromTimespec(struct timespec ts) { in FromTimespec()
133 struct timespec TimeDelta::ToTimespec() const { in ToTimespec()
134 struct timespec ts; in ToTimespec()
267 Time Time::FromTimespec(struct timespec ts) { in FromTimespec()
282 struct timespec Time::ToTimespec() const { in ToTimespec()
283 struct timespec ts; in ToTimespec()
559 struct timespec ts; in HighResolutionNow()
600 struct timespec ts; in Now()
Dtime.h17 struct timespec;
69 static TimeDelta FromTimespec(struct timespec ts);
70 struct timespec ToTimespec() const;
212 static Time FromTimespec(struct timespec ts);
213 struct timespec ToTimespec() const;
/external/webrtc/src/system_wrappers/source/
Dsleep.cc28 struct timespec short_wait; in SleepMs()
29 struct timespec remainder; in SleepMs()
Devent_posix.h48 EventTypeWrapper Wait(timespec& tPulse);
57 timespec _tCreate;
/external/jemalloc/test/include/test/
Dtimer.h11 struct timespec tv0;
12 struct timespec tv1;

123456789