Home | History | Annotate | Download | only in openbsd-compat

Lines Matching refs:tv_nsec

38 		(vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec;	\
39 if ((vsp)->tv_nsec >= 1000000000L) { \
41 (vsp)->tv_nsec -= 1000000000L; \
48 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
49 if ((vsp)->tv_nsec < 0) { \
51 (vsp)->tv_nsec += 1000000000L; \
57 ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \