HomeSort by: relevance | last modified time | path
    Searched refs:usp (Results 1 - 25 of 39) sorted by relevancy

1 2

  /src/tests/usr.bin/xlint/lint1/
msg_135.c 57 unsigned short *usp; local in function:unsigned_char_to_unsigned_type
59 usp = (unsigned short *)ucp;
60 sink(usp);
72 unsigned short *usp; local in function:plain_char_to_unsigned_type
74 usp = (unsigned short *)cp;
75 sink(usp);
msg_247.c 192 unsigned short *usp; local in function:unsigned_char_to_unsigned_type
194 usp = (unsigned short *)ucp;
195 sink(usp);
207 unsigned short *usp; local in function:plain_char_to_unsigned_type
209 usp = (unsigned short *)cp;
210 sink(usp);
  /src/sys/kern/
subr_time_arith.c 221 * timespecaddok(tsp, usp)
223 * True if tsp + usp can be computed without overflow, i.e., if it
224 * is OK to do timespecadd(tsp, usp, ...).
227 timespecaddok(const struct timespec *tsp, const struct timespec *usp)
231 time_t b = usp->tv_sec;
240 KASSERT(usp->tv_nsec >= 0);
242 KASSERT(usp->tv_nsec < 1000000000L);
254 carry = (tsp->tv_nsec + usp->tv_nsec >= 1000000000L);
334 * timespecsubok(tsp, usp)
336 * True if tsp - usp can be computed without overflow, i.e., if i
    [all...]
  /src/sys/sys/
time.h 245 #define timespeccmp(tsp, usp, cmp) \
246 (((tsp)->tv_sec == (usp)->tv_sec) ? \
247 ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
248 ((tsp)->tv_sec cmp (usp)->tv_sec))
249 #define timespecadd(tsp, usp, vsp) \
251 (vsp)->tv_sec = (tsp)->tv_sec + (usp)->tv_sec; \
252 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
258 #define timespecsub(tsp, usp, vsp) \
260 (vsp)->tv_sec = (tsp)->tv_sec - (usp)->tv_sec; \
261 (vsp)->tv_nsec = (tsp)->tv_nsec - (usp)->tv_nsec;
    [all...]
  /src/sys/arch/m68k/m68k/
trap_subr.s 55 movl %usp,%a0 | get and save
64 movl %a0,%usp | user SP
79 movl %a0,%usp | from save area
167 movl %usp,%a0 | get and save
178 movl %usp,%a0 | get and save
reenter_syscall.s 26 | 16:l d0-d7/a0-a6/usp
53 movel %a0,%usp | user SP
compat_13_sigreturn13.s 59 movl %usp,%a0 | save the user SP
65 movl %a0,%usp | user SP
compat_16_sigreturn14.s 59 movl %usp,%a0 | save the user SP
65 movl %a0,%usp | user SP
switch_subr.s 97 movl %usp,%a2 | grab USP (a2 has been saved)
167 movl %a0,%usp | and USP
219 movl %usp,%a0 | grab USP
368 movl %a0,%usp | user SP
busaddrerr.s 64 movl %usp,%a0 | save the user SP
79 movl %usp,%a0 | save the user SP
129 movl %usp,%a0 | save the user SP
166 movl %usp,%a0 | save the user SP
  /src/sys/arch/mips/mips/
syscall.c 125 vaddr_t usp; local in function:EMULNAME
197 usp = reg->r_regs[_R_SP] + nsaved * sizeof(register_t);
198 error = copyin((register_t *)usp, &copyargs[nregs],
237 usp = reg->r_regs[_R_SP] + 4 * sizeof(int32_t);
238 error = copyin((int32_t *)usp, copy32args,
  /src/sys/arch/vax/boot/boot/
mfm.c 423 unsigned short *usp = (void *) io_buf; local in function:mfmopen
428 if (lp->d_nsectors != usp[13]) {
431 lp->d_nsectors, usp[13]);
433 lp->d_nsectors = usp[13];
435 if (lp->d_ntracks != usp[14]) {
438 lp->d_ntracks, usp[14]);
440 lp->d_ntracks = usp[14];
442 if (lp->d_ncylinders != usp[15]) {
445 lp->d_ncylinders, usp[15]);
447 lp->d_ncylinders = usp[15]
    [all...]
  /src/sys/compat/linux/arch/m68k/
linux_machdep.c 79 const sigset_t *mask, void *usp);
81 const sigset_t *mask, void *usp, struct lwp *l);
101 setup_linux_sigframe(struct frame *frame, int sig, const sigset_t *mask, void *usp)
112 fp = (struct linux_sigframe *) usp;
117 printf("setup_linux_sigframe(%d): sig %d ssp %p usp %p scp %p ft %d\n",
266 setup_linux_rt_sigframe(struct frame *frame, int sig, const sigset_t *mask, void *usp, struct lwp *l)
276 fp = (struct linux_rt_sigframe *) usp;
281 printf("setup_linux_rt_sigframe(%d): sig %d ssp %p usp %p ucp %p ft %d\n",
460 void *usp = getframe(l, sig, &onstack); local in function:linux_sendsig
465 setup_linux_rt_sigframe(frame, sig, mask, usp, l)
508 int usp; local in function:linux_sys_sigreturn
    [all...]
  /src/sys/dev/usb/
uirda.c 793 u_int usp; local in function:uirda_get_speeds
800 usp = UGETW(sc->sc_irdadesc.wBaudRate);
802 if (usp & UI_BR_4000000) isp |= IRDA_SPEED_4000000;
803 if (usp & UI_BR_1152000) isp |= IRDA_SPEED_1152000;
804 if (usp & UI_BR_576000) isp |= IRDA_SPEED_576000;
805 if (usp & UI_BR_115200) isp |= IRDA_SPEED_115200;
806 if (usp & UI_BR_57600) isp |= IRDA_SPEED_57600;
807 if (usp & UI_BR_38400) isp |= IRDA_SPEED_38400;
808 if (usp & UI_BR_19200) isp |= IRDA_SPEED_19200;
809 if (usp & UI_BR_9600) isp |= IRDA_SPEED_9600
    [all...]
  /src/sys/arch/luna68k/stand/boot/
locore.S 280 movl %usp,%a0 | save the user SP
345 movl %a0,%usp | from save area
420 movl %usp,%a0 | and save
441 movl %a0,%usp | user SP
450 movl %usp,%a0 | get and save
458 movl %a0,%usp | user SP
561 movl %usp,%a1 | including
569 movl %a0,%usp | user SP
611 movl %usp,%a1 | including
619 movl %a0,%usp | user S
    [all...]
  /src/sys/arch/alpha/include/
alpha_cpu.h 562 alpha_pal_wrusp(unsigned long usp)
564 register unsigned long a0 __asm("$16") = usp;
  /src/sys/arch/cesfic/cesfic/
locore.s 337 movl %a2,%usp | init user SP
447 movl %usp,%a0 | and save
483 movl %usp,%a0 | save the user SP
497 movl %a0,%usp | user SP
629 movl %usp,%a0 | and save
633 movl %a0,%usp | user SP
662 movl %usp,%a1 | including
672 movl %a0,%usp | from save area
703 movl %usp,%a1 | including
713 movl %a0,%usp | user S
    [all...]
  /src/sys/arch/sun3/sun3/
locore.s 158 movl %a2,%usp | init user SP
196 movl %usp,%a0 | save the user SP
297 movl %usp,%a0 | and save
332 movl %usp,%a0 | save the user SP
338 movl %a0,%usp | user SP
488 movl %usp,%a1 | including
497 movl %a0,%usp | from save area
  /src/sys/arch/sun3/sun3x/
locore.s 135 movl %a2,%usp | init user SP
173 movl %usp,%a0 | save the user SP
282 movl %usp,%a0 | and save
317 movl %usp,%a0 | save the user SP
323 movl %a0,%usp | user SP
473 movl %usp,%a1 | including
482 movl %a0,%usp | from save area
  /src/sys/arch/atari/atari/
locore.s 98 movl %usp,%a0 | save the user SP
110 movl %usp,%a0 | save the user SP
144 movl %usp,%a0 | save the user SP
167 movl %usp,%a0 | save the user SP
310 movl %usp,%a0 | and save
490 movl %usp,%a0 | save the user SP
496 movl %a0,%usp | user SP
790 movl %usp,%a1 | including
799 movl %a0,%usp | from save area
830 movl %usp,%a1 | includin
    [all...]
  /src/common/lib/libc/rpc/
xdr.c 352 xdr_u_short(XDR *xdrs, u_short *usp)
357 _DIAGASSERT(usp != NULL);
362 l = (u_long) *usp;
369 *usp = (u_short) l;
  /src/sys/arch/mac68k/mac68k/
locore.s 424 movl %a2,%usp | init %USP
530 movl %usp,%a0 | and save
570 movl %usp,%a0 | save %USP
584 movl %a0,%usp | %USP
642 | Save the system %sp rather than the user %usp.
762 movl %usp,%a0 | and save
766 movl %a0,%usp | %US
    [all...]
  /src/sys/arch/next68k/next68k/
locore.s 357 movl %a2,%usp | init user SP
457 movl %usp,%a0 | and save
497 movl %usp,%a0 | save the user SP
505 movl %a0,%usp | user SP
648 movl %usp,%a0 | and save
652 movl %a0,%usp | user SP
683 movl %usp,%a1 | including
693 movl %a0,%usp | from save area
  /src/sys/arch/x68k/x68k/
locore.s 335 movl %a2,%usp | init user SP
451 movl %usp,%a0 | and save
491 movl %usp,%a0 | save the user SP
499 movl %a0,%usp | user SP
688 movl %usp,%a0 | and save
692 movl %a0,%usp | user SP
731 movl %usp,%a1 | including
741 movl %a0,%usp | from save area
  /src/sys/arch/luna68k/luna68k/
locore.s 278 movl %a2,%usp | init user SP
382 movl %usp,%a0 | and save
422 movl %usp,%a0 | save the user SP
430 movl %a0,%usp | user SP
562 movl %usp,%a0 | and save
566 movl %a0,%usp | user SP
622 movl %usp,%a1 | including
632 movl %a0,%usp | from save area

Completed in 24 milliseconds

1 2