Lines Matching refs:nargs
429 Psyscall_setup(struct ps_prochandle *P, int nargs, int sysindex, uintptr_t sp)
435 sp -= (nargs > 6)?
436 WINDOWSIZE64 + sizeof (int64_t) * nargs :
441 sp -= (nargs > 6)?
442 WINDOWSIZE32 + sizeof (int32_t) * (1 + nargs) :
460 Psyscall_copyinargs(struct ps_prochandle *P, int nargs, argdes_t *argp,
469 for (i = 0, adp = argp; i < nargs; i++, adp++) {
478 if (nargs > 6 &&
479 Pwrite(P, &arglist64[0], sizeof (int64_t) * nargs,
480 (uintptr_t)ap) != sizeof (int64_t) * nargs)
483 if (nargs > 6 &&
484 Pwrite(P, &arglist32[0], sizeof (int32_t) * nargs,
485 (uintptr_t)ap) != sizeof (int32_t) * nargs)
494 Psyscall_copyoutargs(struct ps_prochandle *P, int nargs, argdes_t *argp,