Lines Matching defs:nargs
448 Psyscall_setup(struct ps_prochandle *P, int nargs, int sysindex, uintptr_t sp)
454 sp -= (nargs > 6)?
455 WINDOWSIZE64 + sizeof (int64_t) * nargs :
460 sp -= (nargs > 6)?
461 WINDOWSIZE32 + sizeof (int32_t) * (1 + nargs) :
479 Psyscall_copyinargs(struct ps_prochandle *P, int nargs, argdes_t *argp,
488 for (i = 0, adp = argp; i < nargs; i++, adp++) {
497 if (nargs > 6 &&
498 Pwrite(P, &arglist64[0], sizeof (int64_t) * nargs,
499 (uintptr_t)ap) != sizeof (int64_t) * nargs)
502 if (nargs > 6 &&
503 Pwrite(P, &arglist32[0], sizeof (int32_t) * nargs,
504 (uintptr_t)ap) != sizeof (int32_t) * nargs)
513 Psyscall_copyoutargs(struct ps_prochandle *P, int nargs, argdes_t *argp,