HomeSort by relevance Sort by last modified time
    Searched full:timespec (Results 1 - 25 of 1705) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/bench/
BenchSysTimer_posix.cpp 13 static double intervalInMSec(const timespec start_clock
14 , const timespec end_clock)
30 timespec none = {0, 0};
36 timespec none = {0, 0};
42 timespec end_cpu;
44 timespec none = {0, 0};
51 timespec end_wall;
53 timespec none = {0, 0};
BenchSysTimer_posix.h 21 timespec fCpu;
22 timespec fWall;
  /external/skia/tools/timer/
SysTimer_posix.cpp 9 static double interval_in_ms(timespec start_clock, timespec end_clock)
24 timespec none = {0, 0};
30 timespec none = {0, 0};
36 timespec end_cpu;
38 timespec none = {0, 0};
45 timespec end_wall;
47 timespec none = {0, 0};
SysTimer_posix.h 19 timespec fCpu;
20 timespec fWall;
  /external/chromium_org/components/nacl/loader/nonsfi/
abi_conversion.h 9 struct timespec;
16 // Converts the timespec struct from NaCl's to host's ABI.
18 struct timespec* host_timespec);
20 // Converts the timespec struct from host's to NaCl's ABI.
21 void TimeSpecToNaClAbiTimeSpec(const struct timespec& host_timespec,
irt_futex.cc 19 // Converts a pair of NaCl's timespec of absolute time and host's timespec of
20 // the current time to host's timespec of the relative time between them.
25 const struct timespec& now,
26 struct timespec* reltime) {
37 struct timespec timeout;
38 struct timespec* timeout_ptr = NULL;
42 struct timespec now;
68 // the definition uses its host type, struct timespec. So, here we need to cast
71 reinterpret_cast<int(*)(volatile int*, int, const struct timespec*)>(
    [all...]
irt_clock.cc 43 struct timespec host_res;
58 struct timespec host_tp;
70 reinterpret_cast<int(*)(nacl_irt_clockid_t, struct timespec*)>(
72 reinterpret_cast<int(*)(nacl_irt_clockid_t, struct timespec*)>(
  /external/fio/os/windows/
posix.h 7 extern int clock_gettime(clockid_t clock_id, struct timespec *tp);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
ostime.h 16 int clock_gettime(clockid_t clock_id, struct timespec* tp);
17 int clock_settime(clockid_t clock_id, const struct timespec* tp);
  /bionic/libc/upstream-netbsd/lib/libc/include/isc/
eventlib.h 60 struct timespec, struct timespec));
166 struct timespec evConsTime __P((time_t sec, long nsec));
167 struct timespec evAddTime __P((struct timespec, struct timespec));
168 struct timespec evSubTime __P((struct timespec, struct timespec));
169 struct timespec evNowTime __P((void))
    [all...]
  /system/core/include/log/
log_read.h 23 /* struct log_time is a wire-format variant of struct timespec */
39 log_time(const timespec &T)
49 static const timespec EPOCH;
55 timespec T;
67 // timespec
68 bool operator== (const timespec &T) const
73 bool operator!= (const timespec &T) const
77 bool operator< (const timespec &T) const
83 bool operator>= (const timespec &T) const
87 bool operator> (const timespec &T) cons
    [all...]
  /system/extras/tests/timetest/
timetest.c 15 struct timespec t;
26 static struct timespec ts_sub(struct timespec a, struct timespec b)
28 struct timespec r;
42 static struct timespec ts_min(struct timespec a, struct timespec b)
50 static struct timespec ts_max(struct timespec a, struct timespec b
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/isc/
ev_timers.c 58 static void idle_timeout(evContext, void *, struct timespec, struct timespec);
65 struct timespec lastTouched;
66 struct timespec max_idle;
73 struct timespec
75 struct timespec x;
82 struct timespec
83 evAddTime(struct timespec addend1, struct timespec addend2) {
84 struct timespec x
    [all...]
  /bionic/libc/bionic/
poll.cpp 35 extern "C" int __ppoll(pollfd*, unsigned int, timespec*, const kernel_sigset_t*, size_t);
36 extern "C" int __pselect6(int, fd_set*, fd_set*, fd_set*, timespec*, void*);
39 timespec ts;
40 timespec* ts_ptr = NULL;
48 int ppoll(pollfd* fds, nfds_t fd_count, const timespec* ts, const sigset_t* ss) {
49 timespec mutable_ts;
50 timespec* mutable_ts_ptr = NULL;
67 timespec ts;
68 timespec* ts_ptr = NULL;
84 const timespec* ts, const sigset_t* ss)
    [all...]
  /frameworks/base/include/androidfw/
ZipUtils.h 64 * Utility function to convert ZIP's time format to a timespec struct.
66 static inline void zipTimeToTimespec(long when, struct tm* timespec) {
68 timespec->tm_year = ((date >> 9) & 0x7F) + 80; // Zip is years since 1980
69 timespec->tm_mon = (date >> 5) & 0x0F;
70 timespec->tm_mday = date & 0x1F;
72 timespec->tm_hour = (when >> 11) & 0x1F;
73 timespec->tm_min = (when >> 5) & 0x3F;
74 timespec->tm_sec = (when & 0x1F) << 1;
  /development/ndk/platforms/android-3/include/linux/
android_alarm.h 41 #define ANDROID_ALARM_SET(type) _IOW('a', 2 | ((type) << 4), struct timespec)
42 #define ANDROID_ALARM_SET_AND_WAIT(type) _IOW('a', 3 | ((type) << 4), struct timespec)
43 #define ANDROID_ALARM_GET_TIME(type) _IOW('a', 4 | ((type) << 4), struct timespec)
44 #define ANDROID_ALARM_SET_RTC _IOW('a', 5, struct timespec)
  /external/kernel-headers/original/uapi/asm-generic/
sockios.h 11 #define SIOCGSTAMPNS 0x8907 /* Get stamp (timespec) */
  /external/kernel-headers/original/uapi/linux/
android_alarm.h 55 #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)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm-generic/
sockios.h 11 #define SIOCGSTAMPNS 0x8907 /* Get stamp (timespec) */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/
sockios.h 11 #define SIOCGSTAMPNS 0x8907 /* Get stamp (timespec) */
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
android_alarm.h 41 #define ANDROID_ALARM_SET(type) _IOW('a', 2 | ((type) << 4), struct timespec)
42 #define ANDROID_ALARM_SET_AND_WAIT(type) _IOW('a', 3 | ((type) << 4), struct timespec)
43 #define ANDROID_ALARM_GET_TIME(type) _IOW('a', 4 | ((type) << 4), struct timespec)
44 #define ANDROID_ALARM_SET_RTC _IOW('a', 5, struct timespec)
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
android_alarm.h 41 #define ANDROID_ALARM_SET(type) _IOW('a', 2 | ((type) << 4), struct timespec)
42 #define ANDROID_ALARM_SET_AND_WAIT(type) _IOW('a', 3 | ((type) << 4), struct timespec)
43 #define ANDROID_ALARM_GET_TIME(type) _IOW('a', 4 | ((type) << 4), struct timespec)
44 #define ANDROID_ALARM_SET_RTC _IOW('a', 5, struct timespec)
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
android_alarm.h 41 #define ANDROID_ALARM_SET(type) _IOW('a', 2 | ((type) << 4), struct timespec)
42 #define ANDROID_ALARM_SET_AND_WAIT(type) _IOW('a', 3 | ((type) << 4), struct timespec)
43 #define ANDROID_ALARM_GET_TIME(type) _IOW('a', 4 | ((type) << 4), struct timespec)
44 #define ANDROID_ALARM_SET_RTC _IOW('a', 5, struct timespec)
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
android_alarm.h 41 #define ANDROID_ALARM_SET(type) _IOW('a', 2 | ((type) << 4), struct timespec)
42 #define ANDROID_ALARM_SET_AND_WAIT(type) _IOW('a', 3 | ((type) << 4), struct timespec)
43 #define ANDROID_ALARM_GET_TIME(type) _IOW('a', 4 | ((type) << 4), struct timespec)
44 #define ANDROID_ALARM_SET_RTC _IOW('a', 5, struct timespec)
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
android_alarm.h 41 #define ANDROID_ALARM_SET(type) _IOW('a', 2 | ((type) << 4), struct timespec)
42 #define ANDROID_ALARM_SET_AND_WAIT(type) _IOW('a', 3 | ((type) << 4), struct timespec)
43 #define ANDROID_ALARM_GET_TIME(type) _IOW('a', 4 | ((type) << 4), struct timespec)
44 #define ANDROID_ALARM_SET_RTC _IOW('a', 5, struct timespec)

Completed in 495 milliseconds

1 2 3 4 5 6 7 8 91011>>