Lines Matching refs:usp
111 #define timespeccmp(tsp, usp, cmp) \
112 (((tsp)->tv_sec == (usp)->tv_sec) ? \
113 ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
114 ((tsp)->tv_sec cmp (usp)->tv_sec))
116 #define timespecadd(tsp, usp, vsp) \
118 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \
119 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
126 #define timespecsub(tsp, usp, vsp) \
128 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
129 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \