/external/chromium/third_party/libevent/ |
evutil.h | 123 #define evutil_timeradd(tvp, uvp, vvp) timeradd((tvp), (uvp), (vvp)) 124 #define evutil_timersub(tvp, uvp, vvp) timersub((tvp), (uvp), (vvp)) 126 #define evutil_timeradd(tvp, uvp, vvp) \ 128 (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \ 129 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \ 135 #define evutil_timersub(tvp, uvp, vvp) \ 137 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \ 138 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; [all...] |
/external/chromium_org/third_party/libevent/ |
evutil.h | 123 #define evutil_timeradd(tvp, uvp, vvp) timeradd((tvp), (uvp), (vvp)) 124 #define evutil_timersub(tvp, uvp, vvp) timersub((tvp), (uvp), (vvp)) 126 #define evutil_timeradd(tvp, uvp, vvp) \ 128 (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \ 129 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \ 135 #define evutil_timersub(tvp, uvp, vvp) \ 137 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \ 138 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; [all...] |
/external/chromium/third_party/libevent/compat/sys/ |
_libevent_time.h | 79 #define timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec = 0 80 #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) 81 #define timercmp(tvp, uvp, cmp) \ 82 (((tvp)->tv_sec == (uvp)->tv_sec) ? \ 83 ((tvp)->tv_usec cmp (uvp)->tv_usec) : \ 84 ((tvp)->tv_sec cmp (uvp)->tv_sec) [all...] |
_time.h | 79 #define timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec = 0 80 #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) 81 #define timercmp(tvp, uvp, cmp) \ 82 (((tvp)->tv_sec == (uvp)->tv_sec) ? \ 83 ((tvp)->tv_usec cmp (uvp)->tv_usec) : \ 84 ((tvp)->tv_sec cmp (uvp)->tv_sec) [all...] |
/external/chromium_org/third_party/libevent/compat/sys/ |
_libevent_time.h | 79 #define timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec = 0 80 #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) 81 #define timercmp(tvp, uvp, cmp) \ 82 (((tvp)->tv_sec == (uvp)->tv_sec) ? \ 83 ((tvp)->tv_usec cmp (uvp)->tv_usec) : \ 84 ((tvp)->tv_sec cmp (uvp)->tv_sec) [all...] |
_time.h | 79 #define timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec = 0 80 #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) 81 #define timercmp(tvp, uvp, cmp) \ 82 (((tvp)->tv_sec == (uvp)->tv_sec) ? \ 83 ((tvp)->tv_usec cmp (uvp)->tv_usec) : \ 84 ((tvp)->tv_sec cmp (uvp)->tv_sec) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
time.h | 137 /* Change the access time of FILE to TVP[0] and the modification time of 138 FILE to TVP[1]. If TVP is a null pointer, use the current time instead. 153 /* Change the access time of FILE relative to FD to TVP[0] and the 154 modification time of FILE to TVP[1]. If TVP is a null pointer, use 164 # define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) 165 # define timerclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0 [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
time.h | 137 /* Change the access time of FILE to TVP[0] and the modification time of 138 FILE to TVP[1]. If TVP is a null pointer, use the current time instead. 153 /* Change the access time of FILE relative to FD to TVP[0] and the 154 modification time of FILE to TVP[1]. If TVP is a null pointer, use 164 # define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) 165 # define timerclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0 [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
time.h | 137 /* Change the access time of FILE to TVP[0] and the modification time of 138 FILE to TVP[1]. If TVP is a null pointer, use the current time instead. 153 /* Change the access time of FILE relative to FD to TVP[0] and the 154 modification time of FILE to TVP[1]. If TVP is a null pointer, use 164 # define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) 165 # define timerclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0 [all...] |
/bionic/libc/upstream-netbsd/libc/gen/ |
utime.c | 52 struct timeval tv[2], *tvp; local 57 tvp = NULL; 62 tvp = tv; 64 return (utimes(path, tvp));
|
/external/dhcpcd/ |
common.h | 40 #define timernorm(tvp) \ 42 while ((tvp)->tv_usec >= 1000000) { \ 43 (tvp)->tv_sec++; \ 44 (tvp)->tv_usec -= 1000000; \
|
/external/openssh/openbsd-compat/ |
bsd-poll.c | 46 struct timeval tv, *tvp = NULL; local 85 tvp = &tv; 88 ret = select(maxfd + 1, readfds, writefds, exceptfds, tvp);
|
bsd-misc.c | 107 int utimes(char *filename, struct timeval *tvp) 111 ub.actime = tvp[0].tv_sec; 112 ub.modtime = tvp[1].tv_sec;
|
/external/tcpdump/ |
util.c | 145 ts_print(register const struct timeval *tvp) 156 s = (tvp->tv_sec + thiszone) % 86400; 159 (unsigned)tvp->tv_usec); 167 (unsigned)tvp->tv_sec, 168 (unsigned)tvp->tv_usec); 175 int d_usec = tvp->tv_usec - b_usec; 176 int d_sec = tvp->tv_sec - b_sec; 186 b_sec = tvp->tv_sec; 187 b_usec = tvp->tv_usec; 191 s = (tvp->tv_sec + thiszone) % 86400 [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ggi/ |
SDL_ggievents.c | 51 struct timeval *tvp, tv = { 0, 0 }; local 54 tvp = &tv; 58 while (ggiEventPoll(VIS, emAll, tvp)) 59 /* while (ggiEventPoll(VIS, (emKeyboard | emPointer | emCommand), tvp)) */
|
/external/chromium_org/third_party/WebKit/ManualTests/NPN_Invoke/ |
main.c | 235 FunctionPointer functionPointerForTVector(TransitionVector tvp) 240 if (tvp != NULL) { 245 newGlue[0] |= ((UInt32)tvp >> 16); 246 newGlue[1] |= ((UInt32)tvp & 0xFFFF);
|
/device/generic/goldfish/camera/ |
EmulatedCameraDevice.cpp | 350 struct timeval tv, *tvp = NULL; local 362 tvp = &tv; 364 int res = TEMP_FAILURE_RETRY(select(fd_num, fds, NULL, NULL, tvp));
|
/hardware/ril/libril/ |
ril_event.cpp | 38 #define timeradd(tvp, uvp, vvp) \ 40 (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \ 41 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \
|
/external/ppp/pppd/ |
main.c | [all...] |
/external/chromium_org/third_party/libxml/src/ |
testSAX.c | 80 my_gettimeofday(struct timeval *tvp, void *tzp) 85 if (tvp) { 86 tvp->tv_sec = timebuffer.time; 87 tvp->tv_usec = timebuffer.millitm * 1000L;
|
/external/kernel-headers/original/linux/ |
compat.h | 191 struct compat_timeval __user *tvp);
|
/external/mksh/src/ |
sh.h | 268 #define timerclear(tvp) \ 270 (tvp)->tv_sec = (tvp)->tv_usec = 0; \ 274 #define timeradd(tvp, uvp, vvp) \ 276 (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \ 277 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \ 285 #define timersub(tvp, uvp, vvp) \ 287 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \ 288 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \ [all...] |
/external/elfutils/src/ |
strip.c | 113 const char *fname, mode_t mode, struct timeval tvp[2]); 117 struct timeval tvp[2]); 377 mode_t mode, struct timeval tvp[2]) [all...] |
/external/openssh/ |
serverloop.c | 282 struct timeval tv, *tvp; local 354 tvp = NULL; 358 tvp = &tv; 362 ret = select((*maxfdp)+1, *readsetp, *writesetp, NULL, tvp); [all...] |
/external/valgrind/main/ |
darwin9.supp | 112 futimes(tvp[1])
|