vm_ssize          418 kern/kern_exec.c 	vm->vm_ssize = btoc(pack.ep_ssize);
vm_ssize          373 kern/kern_fork.c 		forkstat.sizfork += vm->vm_dsize + vm->vm_ssize;
vm_ssize          376 kern/kern_fork.c 		forkstat.sizvfork += vm->vm_dsize + vm->vm_ssize;
vm_ssize          379 kern/kern_fork.c 		forkstat.sizrfork += vm->vm_dsize + vm->vm_ssize;
vm_ssize          382 kern/kern_fork.c 		forkstat.sizkthread += vm->vm_dsize + vm->vm_ssize;
vm_ssize         1378 kern/kern_sig.c 	if (USPACE + ctob(vm->vm_dsize + vm->vm_ssize) >=
vm_ssize         1430 kern/kern_sig.c 	core.c_ssize = (u_long)round_page(ctob(vm->vm_ssize));
vm_ssize         1141 kern/kern_sysctl.c 		ep->e_vm.vm_ssize = 0;
vm_ssize         1150 kern/kern_sysctl.c 		ep->e_vm.vm_ssize = vm->vm_ssize;
vm_ssize         1282 kern/kern_sysctl.c 		ki->p_vm_ssize = vm->vm_ssize;
vm_ssize          589 miscfs/procfs/procfs_vnops.c 				    procp->p_vmspace->vm_ssize);
vm_ssize           77 sys/user.h     #define	U_ssize	u_kproc.kp_eproc.e_vm.vm_ssize
vm_ssize          397 uvm/uvm_extern.h 	segsz_t vm_ssize;	/* stack size (pages) */
vm_ssize          137 uvm/uvm_unix.c 	if (sp < USRSTACK + ctob(vm->vm_ssize))
vm_ssize          139 uvm/uvm_unix.c 	if (sp >= USRSTACK - ctob(vm->vm_ssize))
vm_ssize          147 uvm/uvm_unix.c 	si = btoc(sp - USRSTACK) - vm->vm_ssize;
vm_ssize          149 uvm/uvm_unix.c 	si = btoc(USRSTACK - sp) - vm->vm_ssize;
vm_ssize          151 uvm/uvm_unix.c 	if (vm->vm_ssize + si <= btoc(p->p_rlimit[RLIMIT_STACK].rlim_cur))
vm_ssize          152 uvm/uvm_unix.c 		vm->vm_ssize += si;
vm_ssize          225 uvm/uvm_unix.c 			end = round_page(USRSTACK + ctob(vm->vm_ssize));
vm_ssize          231 uvm/uvm_unix.c 			start = trunc_page(USRSTACK - ctob(vm->vm_ssize));