DFLSTKSZ          508 sys/kern/task.c 		sp = (char *)stack + DFLSTKSZ - (sizeof(int) * 3);
DFLSTKSZ          719 sys/mem/vm.c   	error = do_allocate(map, stack, DFLSTKSZ, 0);
DFLSTKSZ          485 sys/mem/vm_nommu.c 	return do_allocate(map, stack, DFLSTKSZ, 1);
DFLSTKSZ          178 usr/server/exec/exec_execve.c 	error = vm_allocate(new_task, &stack, DFLSTKSZ, 1);
DFLSTKSZ          332 usr/server/exec/exec_execve.c 	error = vm_map(task, stack, DFLSTKSZ, (void *)&mapped);
DFLSTKSZ          335 usr/server/exec/exec_execve.c 	memset((void *)mapped, 0, DFLSTKSZ);
DFLSTKSZ          336 usr/server/exec/exec_execve.c 	sp = mapped + DFLSTKSZ - sizeof(int) * 3;
DFLSTKSZ          955 usr/server/fs/vfs/main.c 	if ((error = vm_allocate(self, &stack, DFLSTKSZ, 1)) != 0)
DFLSTKSZ          958 usr/server/fs/vfs/main.c 	sp = (void *)((u_long)stack + DFLSTKSZ - sizeof(u_long) * 3);
DFLSTKSZ          276 usr/server/pow/pow.c 	if ((error = vm_allocate(self, &stack, DFLSTKSZ, 1)) != 0)
DFLSTKSZ          279 usr/server/pow/pow.c 	sp = (void *)((u_long)stack + DFLSTKSZ - sizeof(u_long) * 3);
DFLSTKSZ          187 usr/server/proc/proc_fork.c 	if (vm_allocate(p->p_task, &stack, DFLSTKSZ, 1) != 0) {
DFLSTKSZ          192 usr/server/proc/proc_fork.c 	memcpy(stack, p->p_stackbase, DFLSTKSZ);
DFLSTKSZ          208 usr/server/proc/proc_fork.c 	memcpy(p->p_stackbase, p->p_stacksaved, DFLSTKSZ);