| /f-stack/freebsd/sys/ |
| H A D | timeffc.h | 210 void ffclock_microtime(struct timeval *tvp); 218 void ffclock_microuptime(struct timeval *tvp); 240 void fbclock_microtime(struct timeval *tvp); 285 ffclock_microtime(tvp); in microtime_fromclock() 287 fbclock_microtime(tvp); in microtime_fromclock() 315 ffclock_getmicrotime(tvp); in getmicrotime_fromclock() 317 fbclock_getmicrotime(tvp); in getmicrotime_fromclock() 345 ffclock_microuptime(tvp); in microuptime_fromclock() 347 fbclock_microuptime(tvp); in microuptime_fromclock() 375 ffclock_getmicrouptime(tvp); in getmicrouptime_fromclock() [all …]
|
| H A D | time.h | 370 #define timespecclear(tvp) ((tvp)->tv_sec = (tvp)->tv_nsec = 0) argument 371 #define timespecisset(tvp) ((tvp)->tv_sec || (tvp)->tv_nsec) argument 400 #define timevalclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0) argument 401 #define timevalisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) argument 413 #define timerclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0) argument 414 #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) argument 415 #define timercmp(tvp, uvp, cmp) \ argument 419 #define timeradd(tvp, uvp, vvp) \ argument 428 #define timersub(tvp, uvp, vvp) \ argument 541 void microuptime(struct timeval *tvp); [all …]
|
| H A D | syscallsubr.h | 241 fd_set *ex, struct timeval *tvp, sigset_t *uset, int abi_nfdbits); 271 fd_set *fd_ex, struct timeval *tvp, int abi_nfdbits);
|
| H A D | vnode.h | 656 struct vnode *tvp, struct componentname *fcnp, struct componentname *tcnp);
|
| /f-stack/freebsd/kern/ |
| H A D | kern_ffclock.c | 265 ffclock_microtime(struct timeval *tvp) in ffclock_microtime() argument 270 bintime2timeval(&bt, tvp); in ffclock_microtime() 292 ffclock_getmicrotime(struct timeval *tvp) in ffclock_getmicrotime() argument 298 bintime2timeval(&bt, tvp); in ffclock_getmicrotime() 318 ffclock_microuptime(struct timeval *tvp) in ffclock_microuptime() argument 323 bintime2timeval(&bt, tvp); in ffclock_microuptime() 345 ffclock_getmicrouptime(struct timeval *tvp) in ffclock_getmicrouptime() argument 351 bintime2timeval(&bt, tvp); in ffclock_getmicrouptime() 371 ffclock_microdifftime(ffcounter ffdelta, struct timeval *tvp) in ffclock_microdifftime() argument 376 bintime2timeval(&bt, tvp); in ffclock_microdifftime()
|
| H A D | vfs_cache.c | 3299 vp = tvp; in vn_fullpath_any_smr() 3343 vp = tvp; in vn_fullpath_any_smr() 4173 tvp = fpl->tvp; in cache_fplookup_final_child() 4317 fpl->tvp = tvp; in cache_fplookup_final_modifying() 4418 tvp = fpl->tvp; in cache_fplookup_final_withparent() 4482 tvp = fpl->tvp; in cache_fplookup_final() 4681 fpl->tvp = tvp; in cache_fplookup_noentry() 4929 tvp = fpl->tvp; in cache_fplookup_symlink() 5021 fpl->tvp = tvp; in cache_fplookup_next() 5410 tvp = fpl->tvp; in cache_fplookup_trailingslash() [all …]
|
| H A D | kern_tc.c | 289 bintime2timeval(&bt, tvp); in fbclock_microuptime() 314 bintime2timeval(&bt, tvp); in fbclock_microtime() 339 bintime2timeval(&bt, tvp); in fbclock_getmicrouptime() 360 GETTHMEMBER(tvp, th_microtime); in fbclock_getmicrotime() 381 microuptime(struct timeval *tvp) in microuptime() argument 386 bintime2timeval(&bt, tvp); in microuptime() 406 microtime(struct timeval *tvp) in microtime() argument 411 bintime2timeval(&bt, tvp); in microtime() 436 bintime2timeval(&bt, tvp); in getmicrouptime() 457 GETTHMEMBER(tvp, th_microtime); in getmicrotime() [all …]
|
| H A D | sys_generic.c | 945 struct timeval tv, *tvp; in sys_pselect() local 954 tvp = &tv; in sys_pselect() 956 tvp = NULL; in sys_pselect() 1004 struct timeval tv, *tvp; in sys_select() local 1011 tvp = &tv; in sys_select() 1013 tvp = NULL; in sys_select() 1069 fd_set *fd_ex, struct timeval *tvp, int abi_nfdbits) in kern_select() argument 1175 if (tvp != NULL) { in kern_select() 1176 rtv = *tvp; in kern_select() 1688 if (tvp != NULL) { in selsocket() [all …]
|
| H A D | vfs_syscalls.c | 3058 tvp = usrtvp; in getutimes() 3062 tvp = tv; in getutimes() 3065 if (tvp[0].tv_usec < 0 || tvp[0].tv_usec >= 1000000 || in getutimes() 3066 tvp[1].tv_usec < 0 || tvp[1].tv_usec >= 1000000) in getutimes() 3631 tvp = tond.ni_vp; in kern_renameat() 3636 if (tvp != NULL) in kern_renameat() 3637 vput(tvp); in kern_renameat() 3638 if (tdvp == tvp) in kern_renameat() 3681 if (fvp == tvp) in kern_renameat() 3698 vput(tvp); in kern_renameat() [all …]
|
| H A D | kern_time.c | 675 struct timeval atv, *tvp; in sys_settimeofday() local 683 tvp = &atv; in sys_settimeofday() 685 tvp = NULL; in sys_settimeofday() 693 return (kern_settimeofday(td, tvp, tzp)); in sys_settimeofday()
|
| H A D | vnode_if.src | 340 IN WILLRELE struct vnode *tvp;
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | ae_ff_kqueue.c | 106 static int aeApiPoll(aeEventLoop *eventLoop, struct timeval *tvp) { in aeApiPoll() argument 110 if (tvp != NULL) { in aeApiPoll() 112 timeout.tv_sec = tvp->tv_sec; in aeApiPoll() 113 timeout.tv_nsec = tvp->tv_usec * 1000; in aeApiPoll()
|
| H A D | ae_epoll.c | 108 static int aeApiPoll(aeEventLoop *eventLoop, struct timeval *tvp) { in aeApiPoll() argument 113 tvp ? (tvp->tv_sec*1000 + tvp->tv_usec/1000) : -1); in aeApiPoll()
|
| H A D | ae_kqueue.c | 104 static int aeApiPoll(aeEventLoop *eventLoop, struct timeval *tvp) { in aeApiPoll() argument 108 if (tvp != NULL) { in aeApiPoll() 110 timeout.tv_sec = tvp->tv_sec; in aeApiPoll() 111 timeout.tv_nsec = tvp->tv_usec * 1000; in aeApiPoll()
|
| H A D | ae.c | 381 struct timeval tv, *tvp; in aeProcessEvents() local 389 tvp = &tv; in aeProcessEvents() 398 tvp->tv_sec = ms/1000; in aeProcessEvents() 399 tvp->tv_usec = (ms % 1000)*1000; in aeProcessEvents() 401 tvp->tv_sec = 0; in aeProcessEvents() 402 tvp->tv_usec = 0; in aeProcessEvents() 410 tvp = &tv; in aeProcessEvents() 413 tvp = NULL; /* wait forever */ in aeProcessEvents() 419 numevents = aeApiPoll(eventLoop, tvp); in aeProcessEvents()
|
| H A D | ae_evport.c | 243 static int aeApiPoll(aeEventLoop *eventLoop, struct timeval *tvp) { in aeApiPoll() argument 272 if (tvp != NULL) { in aeApiPoll() 273 timeout.tv_sec = tvp->tv_sec; in aeApiPoll() 274 timeout.tv_nsec = tvp->tv_usec * 1000; in aeApiPoll()
|
| H A D | ae_select.c | 77 static int aeApiPoll(aeEventLoop *eventLoop, struct timeval *tvp) { in aeApiPoll() argument 85 &state->_rfds,&state->_wfds,NULL,tvp); in aeApiPoll()
|
| /f-stack/freebsd/contrib/device-tree/Bindings/media/i2c/ |
| H A D | tvp5150.txt | 32 tvp-5150 port@0 (AIP1A) 35 tvp-5150 port@1 (AIP1B) | 38 tvp-5150 port@2
|
| /f-stack/freebsd/amd64/linux32/ |
| H A D | linux32_machdep.c | 629 struct timeval atv, *tvp; in linux_settimeofday() local 639 tvp = &atv; in linux_settimeofday() 641 tvp = NULL; in linux_settimeofday() 649 return (kern_settimeofday(td, tvp, tzp)); in linux_settimeofday()
|
| /f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/ |
| H A D | zfs_vnops_os.c | 3005 tvp = ZTOV(tzp); in zfs_rename_relock() 3007 tvp = NULL; in zfs_rename_relock() 3023 if (tvp != NULL) in zfs_rename_relock() 3024 vrele(tvp); in zfs_rename_relock() 3055 nvp = tvp; in zfs_rename_relock() 3144 if (tvp != NULL) in cache_vop_rename() 3462 tvp = NULL; in zfs_rename() 3472 if (tvp != NULL) in zfs_rename() 3473 vrele(tvp); in zfs_rename() 4950 if (tvp != NULL) in zfs_freebsd_rename() [all …]
|
| /f-stack/tools/ndp/ |
| H A D | ndp.c | 1478 ts_print(const struct timeval *tvp) in ts_print() argument 1483 sec = (tvp->tv_sec + thiszone) % 86400; in ts_print() 1485 sec / 3600, (sec % 3600) / 60, sec % 60, (u_int32_t)tvp->tv_usec); in ts_print()
|
| /f-stack/freebsd/netinet/ |
| H A D | tcp_hpts.c | 218 #define timersub(tvp, uvp, vvp) \ argument 220 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \ 221 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \
|
| H A D | ip_mroute.c | 1737 #define BW_TIMEVALCMP(tvp, uvp, cmp) timevalcmp((tvp), (uvp), cmp) argument
|
| /f-stack/freebsd/netinet/tcp_stacks/ |
| H A D | rack.c | 7403 #define timersub(tvp, uvp, vvp) \ in rack_do_decay() argument 7405 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \ in rack_do_decay() 7406 (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec; \ in rack_do_decay()
|