Searched refs:USPACE (Results 1 - 25 of 100) sorted by relevance

1234

/netbsd-6-1-5-RELEASE/sys/arch/usermode/include/
H A Dparam.h19 #undef USPACE macro
20 #define USPACE (PAGE_SIZE*UPAGES) macro
H A Dpcb.h37 #define TRAPSTACKSIZE (USPACE -2*sizeof(ucontext_t) - 3*sizeof(register_t))
/netbsd-6-1-5-RELEASE/sys/arch/mips/include/
H A Dproc.h55 #if USPACE > PAGE_SIZE
56 int md_upte[USPACE/4096]; /* ptes for mapping u page */
58 int md_dpte[USPACE/4096]; /* dummy ptes to keep the same */
H A Dmips_param.h56 #define USPACE (UPAGES*NBPG) /* size of u-area in bytes */ macro
59 #define USPACE (UPAGES*NBPG) /* size of u-area in bytes */ macro
63 #define USPACE_ALIGN USPACE /* make sure it starts on a even VA */
/netbsd-6-1-5-RELEASE/sys/arch/arm/include/arm32/
H A Dparam.h57 #define USPACE (UPAGES * NBPG) /* total size of u-area */ macro
70 /* Constants used to divide the USPACE area */
73 * The USPACE area contains :
94 #define USPACE_SVC_STACK_TOP (USPACE)
/netbsd-6-1-5-RELEASE/sys/arch/vax/include/
H A Dproc.h61 (USPACE - (REDZONEADDR + VAX_NBPG))
H A Dparam.h68 #define USPACE (NBPG*UPAGES) macro
/netbsd-6-1-5-RELEASE/sys/arch/sh3/include/
H A Dparam.h63 #define USPACE (UPAGES * NBPG) /* total size of u-area */ macro
/netbsd-6-1-5-RELEASE/sys/arch/i386/include/
H A Dproc.h68 #define UAREA_PCB_OFFSET (USPACE - ALIGN(sizeof(struct pcb)))
H A Dparam.h100 #define USPACE (UPAGES * NBPG) /* total size of u-area */ macro
/netbsd-6-1-5-RELEASE/sys/arch/acorn26/include/
H A Dparam.h55 #define USPACE (UPAGES * NBPG) /* total size of u-area */ macro
/netbsd-6-1-5-RELEASE/sys/arch/amd64/include/
H A Dproc.h69 #define UAREA_PCB_OFFSET (USPACE - ALIGN(sizeof(struct pcb)))
/netbsd-6-1-5-RELEASE/sys/arch/powerpc/include/
H A Dparam.h76 #define USPACE (UPAGES * NBPG) macro
/netbsd-6-1-5-RELEASE/sys/arch/hppa/include/
H A Dparam.h64 #define USPACE (UPAGES * NBPG) /* pages for user struct and kstack */ macro
/netbsd-6-1-5-RELEASE/sys/arch/ia64/include/
H A Dparam.h69 #define USPACE (UPAGES * NBPG) /* total size of u-area */ macro
/netbsd-6-1-5-RELEASE/sys/arch/m68k/include/
H A Dparam.h74 #define USPACE (UPAGES * NBPG) macro
/netbsd-6-1-5-RELEASE/sys/arch/arc/include/
H A Dparam.h76 #define USPACE (UPAGES*NBPG) /* size of u-area in bytes */ macro
/netbsd-6-1-5-RELEASE/sys/arch/alpha/include/
H A Dparam.h70 #define USPACE (UPAGES * NBPG) /* total size of u-area */ macro
/netbsd-6-1-5-RELEASE/sys/uvm/
H A Duvm_glue.c244 if (USPACE == PAGE_SIZE && USPACE_ALIGN == 0) {
278 if (USPACE == PAGE_SIZE && USPACE_ALIGN == 0) {
298 .pa_pagesz = USPACE,
328 .pa_pagesz = USPACE,
343 if ((USPACE_ALIGN == 0 && USPACE != PAGE_SIZE) ||
344 (USPACE_ALIGN % USPACE) != 0) {
348 uvm_uarea_cache = pool_cache_init(USPACE, USPACE_ALIGN, 0, flags,
351 uvm_uarea_system_cache = pool_cache_init(USPACE, USPACE_ALIGN,
/netbsd-6-1-5-RELEASE/sys/arch/sun3/sun3/
H A Dlocore2.c156 ((vaddr_t)maxsym > (KERNBASE3 + OBMEM_BW50_ADDR - USPACE))) {
204 memset((void *)nextva, 0, USPACE);
207 nextva += USPACE;
/netbsd-6-1-5-RELEASE/bin/ps/
H A Dnlist.c105 int uspace; /* kernel USPACE value */
188 #ifdef USPACE
189 uspace = USPACE;
/netbsd-6-1-5-RELEASE/sys/arch/sun3/sun3x/
H A Dlocore2.c171 memset((void *)nextva, 0, USPACE);
173 nextva += USPACE;
/netbsd-6-1-5-RELEASE/sys/arch/sparc64/sparc64/
H A Dvm_machdep.c148 #define TOPFRAMEOFF (USPACE-sizeof(struct trapframe)-CC64FSZ)
155 #define TOPFRAMEOFF (USPACE-sizeof(struct trapframe)-CC64FSZ)
254 ((long)npcb + USPACE - sizeof(*tf2));
257 *tf2 = *(struct trapframe *)((long)opcb + USPACE - sizeof(*tf2));
/netbsd-6-1-5-RELEASE/sys/arch/sparc/include/
H A Dparam.h95 #define USPACE 8192 macro
/netbsd-6-1-5-RELEASE/sys/arch/mips/mips/
H A Dvm_machdep.c109 tf = (struct trapframe *)(ua2 + USPACE) - 1;
117 #if USPACE > PAGE_SIZE
142 KASSERT(tf == (struct trapframe *)(uvm_lwp_getuarea(l) + USPACE) - 1);
196 error = uvm_pglistalloc(USPACE, mips_avail_start, high,
247 for (const paddr_t epa = pa + USPACE; pa < epa; pa += PAGE_SIZE) {

Completed in 477 milliseconds

1234