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

1 2 3

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
_timeval.h 16 #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
17 #define timercmp(tvp,uvp,cmp) \
18 ((tvp)->tv_sec cmp (uvp)->tv_sec || \
19 ((tvp)->tv_sec == (uvp)->tv_sec && (tvp)->tv_usec cmp (uvp)->tv_usec))
20 #define timerclear(tvp) (tvp)->tv_sec = (tvp)->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...]
  /bionic/libc/upstream-netbsd/lib/libc/gen/
utime.c 52 struct timeval tv[2], *tvp; local
57 tvp = NULL;
62 tvp = tv;
64 return (utimes(path, tvp));
  /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...]
  /external/clang/test/CodeGenCXX/
debug-info-alias.cpp 33 tv<int> *tvp;
  /external/dhcpcd/
common.h 40 #define timernorm(tvp) \
42 while ((tvp)->tv_usec >= 1000000) { \
43 (tvp)->tv_sec++; \
44 (tvp)->tv_usec -= 1000000; \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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.11-4.8/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...]
  /external/tcpdump/
util.c 160 ts_print(register const struct timeval *tvp)
173 s = (tvp->tv_sec + thiszone) % 86400;
174 (void)printf("%s ", ts_format(s, tvp->tv_usec));
182 (unsigned)tvp->tv_sec,
183 (unsigned)tvp->tv_usec);
190 b_usec = tvp->tv_usec;
191 b_sec = tvp->tv_sec;
194 d_usec = tvp->tv_usec - b_usec;
195 d_sec = tvp->tv_sec - b_sec;
205 b_sec = tvp->tv_sec
    [all...]
  /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));
  /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)) */
  /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/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_os_userspace.h 273 #define timeradd(tvp, uvp, vvp) \
275 (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \
276 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \
283 #define timersub(tvp, uvp, vvp) \
285 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \
286 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \
    [all...]
  /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/0.153/src/
strip.c 121 const char *fname, mode_t mode, struct timeval tvp[2]);
125 struct timeval tvp[2]);
403 mode_t mode, struct timeval tvp[2])
    [all...]
  /bionic/libc/dns/resolv/
res_send.c 1331 struct timeval tv, *tvp; local
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/sys/
linux-unistd.h 136 int utimes (const char*, const struct timeval tvp[2]);

Completed in 1450 milliseconds

1 2 3