Searched refs:usp (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/usr.sbin/rtadvd/
H A Dtimer_subr.h35 #define TS_CMP(tsp, usp, cmp) \
36 (((tsp)->tv_sec == (usp)->tv_sec) ? \
37 ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
38 ((tsp)->tv_sec cmp (usp)->tv_sec))
39 #define TS_ADD(tsp, usp, vsp) \
41 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \
42 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
48 #define TS_SUB(tsp, usp, vsp) \
50 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
51 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)
[all...]
/freebsd-11-stable/lib/libnetbsd/sys/
H A Dtime.h42 #define timespeccmp(tsp, usp, cmp) \
43 (((tsp)->tv_sec == (usp)->tv_sec) ? \
44 ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
45 ((tsp)->tv_sec cmp (usp)->tv_sec))
46 #define timespecadd(tsp, usp, vsp) \
48 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \
49 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
55 #define timespecsub(tsp, usp, vsp) \
57 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
58 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)
[all...]
/freebsd-11-stable/sys/sparc64/sparc64/
H A Drwindow.c46 u_long usp; local
59 usp = tf->tf_out[6];
61 CTR1(KTR_TRAP, "rwindow_load: usp=%#lx", usp);
62 usp += SPOFF;
63 if ((error = (usp & 0x7)) != 0)
65 error = copyin((void *)usp, &rw, sizeof rw);
66 usp = rw.rw_in[6];
78 u_long usp; local
95 usp
[all...]
/freebsd-11-stable/usr.sbin/rtsold/
H A Drtsold.h127 #define TS_CMP(tsp, usp, cmp) \
128 (((tsp)->tv_sec == (usp)->tv_sec) ? \
129 ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
130 ((tsp)->tv_sec cmp (usp)->tv_sec))
131 #define TS_ADD(tsp, usp, vsp) \
133 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \
134 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
140 #define TS_SUB(tsp, usp, vsp) \
142 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
143 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)
[all...]
/freebsd-11-stable/sys/xdr/
H A Dxdr.c284 xdr_u_short(XDR *xdrs, u_short *usp) argument
291 l = (u_long) *usp;
298 *usp = (u_short) l;
/freebsd-11-stable/lib/libc/xdr/
H A Dxdr.c314 xdr_u_short(XDR *xdrs, u_short *usp) argument
321 l = (u_long) *usp;
328 *usp = (u_short) l;
/freebsd-11-stable/contrib/binutils/include/opcode/
H A Dcr16.h63 usp = uspl, enumerator in enum:__anon579
/freebsd-11-stable/sys/net/altq/
H A Daltq_cdnr.c1130 struct tce_stats tce, *usp; local
1141 usp = ap->tce_stats;
1142 if (nelements <= 0 || usp == NULL)
1178 if ((error = copyout((caddr_t)&tce, (caddr_t)usp++,
H A Daltq_cbq.c874 class_stats_t stats, *usp; local
879 usp = gsp->stats;
894 if ((error = copyout((caddr_t)&stats, (caddr_t)usp++,
H A Daltq_priq.c1035 struct priq_classstats stats, *usp; local
1044 usp = ap->stats;
1051 if ((error = copyout((caddr_t)&stats, (caddr_t)usp++,
H A Daltq_hfsc.c2190 struct hfsc_classstats stats, *usp; local
2211 usp = ap->stats;
2216 if ((error = copyout((caddr_t)&stats, (caddr_t)usp++,
/freebsd-11-stable/contrib/gdb/gdb/
H A Dlynx-nat.c84 offsetof (st_t, usp) - offsetof (st_t, ec), /* sp */
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dcr16-opc.c534 REG(usp, 14, CR16_P_REGTYPE),

Completed in 1203 milliseconds