Home
last modified time | relevance | path

Searched refs:vsp (Results 1 – 9 of 9) sorted by relevance

/dragonfly/usr.sbin/rtadvd/
H A Dtimer_subr.h39 #define TS_ADD(tsp, usp, vsp) \ argument
41 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \
42 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
43 if ((vsp)->tv_nsec >= 1000000000L) { \
44 (vsp)->tv_sec++; \
45 (vsp)->tv_nsec -= 1000000000L; \
48 #define TS_SUB(tsp, usp, vsp) \ argument
50 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
52 if ((vsp)->tv_nsec < 0) { \
53 (vsp)->tv_sec--; \
[all …]
/dragonfly/sys/sys/
H A Dtime.h77 #define timespecadd(tsp, usp, vsp) \ argument
79 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \
80 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
81 if ((vsp)->tv_nsec >= 1000000000L) { \
82 (vsp)->tv_sec++; \
83 (vsp)->tv_nsec -= 1000000000L; \
86 #define timespecsub(tsp, usp, vsp) \ argument
88 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
90 if ((vsp)->tv_nsec < 0) { \
91 (vsp)->tv_sec--; \
[all …]
/dragonfly/crypto/libressl/apps/openssl/
H A Dapps_posix.c126 #define timespecsub(tsp, usp, vsp) \ argument
128 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
129 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
130 if ((vsp)->tv_nsec < 0) { \
131 (vsp)->tv_sec--; \
132 (vsp)->tv_nsec += 1000000000L; \
/dragonfly/lib/librecrypto/
H A Ddfly_config.txt101 #define timespecsub(tsp, usp, vsp) \
103 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
104 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
105 if ((vsp)->tv_nsec < 0) { \
106 (vsp)->tv_sec--; \
107 (vsp)->tv_nsec += 1000000000L; \
/dragonfly/crypto/openssh/
H A Ddefines.h548 #define timespecadd(tsp, usp, vsp) \ argument
550 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \
551 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
552 if ((vsp)->tv_nsec >= 1000000000L) { \
553 (vsp)->tv_sec++; \
554 (vsp)->tv_nsec -= 1000000000L; \
559 #define timespecsub(tsp, usp, vsp) \ argument
561 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
563 if ((vsp)->tv_nsec < 0) { \
564 (vsp)->tv_sec--; \
[all …]
/dragonfly/sys/dev/drm/radeon/
H A Dni_dpm.h158 u32 vsp; member
H A Dni_dpm.c3355 reg |= (VSP(ni_pi->cac_weights->vsp) | in ni_initialize_hardware_cac_manager()
/dragonfly/sys/kern/
H A Dvfs_syscalls.c1769 struct statvfs *vsp; in getvfsstat_callback() local
1779 vsp = &mp->mnt_vstat; in getvfsstat_callback()
1799 (error = VFS_STATVFS(mp, vsp, info->td->td_ucred))) { in getvfsstat_callback()
1802 vsp->f_flag = 0; in getvfsstat_callback()
1804 vsp->f_flag |= ST_RDONLY; in getvfsstat_callback()
1806 vsp->f_flag |= ST_NOSUID; in getvfsstat_callback()
1819 error = copyout(vsp, info->vsfsp, sizeof(*vsp)); in getvfsstat_callback()
/dragonfly/nrelease/gui/root/.vim/plugin/
H A Dminibufexpl.vim828 exec 'bo vsp '.a:bufName
834 exec 'to vsp '.a:bufName
844 exec 'rightb vsp '.a:bufName
846 exec 'vsp '.a:bufName