Searched refs:vsp (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/usr.sbin/rtadvd/
H A Dtimer_subr.h39 #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; \
43 if ((vsp)->tv_nsec >= 1000000000L) { \
44 (vsp)->tv_sec++; \
45 (vsp)->tv_nsec -= 1000000000L; \
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)->tv_nsec; \
52 if ((vsp)
[all...]
/freebsd-11-stable/lib/libnetbsd/sys/
H A Dtime.h46 #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; \
50 if ((vsp)->tv_nsec >= 1000000000L) { \
51 (vsp)->tv_sec++; \
52 (vsp)->tv_nsec -= 1000000000L; \
55 #define timespecsub(tsp, usp, vsp) \
57 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
58 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec; \
59 if ((vsp)
[all...]
/freebsd-11-stable/usr.sbin/rtsold/
H A Drtsold.h131 #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; \
135 if ((vsp)->tv_nsec >= 1000000000L) { \
136 (vsp)->tv_sec++; \
137 (vsp)->tv_nsec -= 1000000000L; \
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)->tv_nsec; \
144 if ((vsp)
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DArmUnwindInfo.cpp131 int32_t vsp = 0; local
139 // vsp = vsp + (xxxxxx << 2) + 4. Covers range 0x04-0x100 inclusive
140 vsp += ((byte1 & 0x3f) << 2) + 4;
143 // vsp = vsp ��� (xxxxxx << 2) - 4. Covers range 0x04-0x100 inclusive
144 vsp -= ((byte1 & 0x3f) << 2) + 4;
161 register_offsets.emplace_back(dwarf_r4 + i, vsp);
162 vsp += 4;
176 // Set vsp
[all...]
/freebsd-11-stable/lib/libc/xdr/
H A Dxdr_float.c102 struct vax_single vs, *vsp; local
133 vsp = (struct vax_single *)fp;
140 *vsp = lim->s;
144 vsp->exp = is.exp - IEEE_SNG_BIAS + VAX_SNG_BIAS;
145 vsp->mantissa2 = is.mantissa;
146 vsp->mantissa1 = (is.mantissa >> 16);
148 vsp->sign = is.sign;
/freebsd-11-stable/sys/arm/arm/
H A Dunwind.c219 uint32_t *vsp = (uint32_t *)state->registers[SP]; local
252 state->registers[reg] = *vsp++;
279 state->registers[reg] = *vsp++;
285 state->registers[14] = *vsp++;
305 state->registers[reg] = *vsp++;
327 state->registers[SP] = (uint32_t)vsp;
/freebsd-11-stable/sys/kern/
H A Dvfs_subr.c1171 int done, force, reclaim_nc_src, trigger, usevnodes, vsp; local
1199 vsp = vspace();
1200 if (vsp >= vlowat && force == 0) {
1268 vsp = vspace();
1269 force = vsp < vhiwat;
1346 int vsp; local
1348 vsp = vspace();
1349 if (vsp < vlowat && vnlruproc_sig == 0) {

Completed in 140 milliseconds