Home
last modified time | relevance | path

Searched refs:USPACE (Results 1 – 25 of 67) sorted by relevance

123

/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/riscv/include/
H A Dproc.h54 #if USPACE > PAGE_SIZE
55 int md_upte[USPACE/4096]; /* ptes for mapping u page */
57 int md_dpte[USPACE/4096]; /* dummy ptes to keep the same */
H A Dparam.h86 #define USPACE (UPAGES << PGSHIFT) macro
/dports/misc/rump/buildrump.sh-b914579/src/sys/uvm/
H A Duvm_glue.c244 if (USPACE == PAGE_SIZE && USPACE_ALIGN == 0) { in uarea_poolpage_alloc()
278 if (USPACE == PAGE_SIZE && USPACE_ALIGN == 0) { in uarea_poolpage_free()
298 .pa_pagesz = USPACE,
328 .pa_pagesz = USPACE,
343 if ((USPACE_ALIGN == 0 && USPACE != PAGE_SIZE) || in uvm_uarea_init()
344 (USPACE_ALIGN % USPACE) != 0) { in uvm_uarea_init()
348 uvm_uarea_cache = pool_cache_init(USPACE, USPACE_ALIGN, 0, flags, in uvm_uarea_init()
351 uvm_uarea_system_cache = pool_cache_init(USPACE, USPACE_ALIGN, in uvm_uarea_init()
/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/arm/include/arm32/
H A Dparam.h62 #define USPACE 8192 /* total size of u-area */ macro
63 #define UPAGES (USPACE / NBPG) /* pages of u-area */
95 #define USPACE_SVC_STACK_TOP (USPACE)
/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/aarch64/include/
H A Dvmparam.h54 #define USPACE 16384 macro
56 #define USPACE 65536 macro
58 #define UPAGES (USPACE >> PAGE_SHIFT)
/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/riscv/riscv/
H A Dvm_machdep.c93 tf = (struct trapframe *)(ua2 + USPACE) - 1; in cpu_lwp_fork()
145 error = uvm_pglistalloc(USPACE, pmap_limits.avail_start, in cpu_uarea_alloc()
160 KASSERTMSG(pa + USPACE <= pmap_limits.avail_end, in cpu_uarea_alloc()
181 for (const paddr_t epa = pa + USPACE; pa < epa; pa += PAGE_SIZE) { in cpu_uarea_free()
/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/mips/mips/
H A Dvm_machdep.c110 tf = (struct trapframe *)(ua2 + USPACE) - 1; in cpu_lwp_fork()
118 #if (USPACE > PAGE_SIZE) || !defined(_LP64) in cpu_lwp_fork()
186 error = uvm_pglistalloc(USPACE, pmap_limits.avail_start, high, in cpu_uarea_alloc()
239 mips_dcache_inv_range((vaddr_t)va, USPACE); in cpu_uarea_free()
242 for (const paddr_t epa = pa + USPACE; pa < epa; pa += PAGE_SIZE) { in cpu_uarea_free()
H A Dlocore.S191 PTR_ADDU sp, USPACE - TF_SIZ - CALLFRAME_SIZ
310 PTR_L a1, (USPACE - TF_SIZ - CALLFRAME_SIZ + TF_REG_EPC)(s5)
314 PTR_S v0, (USPACE - TF_SIZ - CALLFRAME_SIZ + TF_REG_EPC)(s5)
458 PTR_ADDU sp, t2, USPACE - TF_SIZ - CALLFRAME_SIZ
/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/sparc64/sparc64/
H A Dvm_machdep.c147 #define TOPFRAMEOFF (USPACE-sizeof(struct trapframe)-CC64FSZ)
154 #define TOPFRAMEOFF (USPACE-sizeof(struct trapframe)-CC64FSZ)
238 ((long)npcb + USPACE - sizeof(*tf2)); in cpu_lwp_fork()
241 *tf2 = *(struct trapframe *)((long)opcb + USPACE - sizeof(*tf2)); in cpu_lwp_fork()
/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/mips/include/
H A Dmips_param.h122 #define USPACE (UPAGES*NBPG) /* size of u-area in bytes */ macro
123 #define USPACE_ALIGN USPACE /* make sure it starts on a even VA */
/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/x86/x86/
H A Dvm_machdep.c177 pcb2->pcb_rsp0 = (uv + USPACE - 16) & ~0xf; in cpu_lwp_fork()
180 pcb2->pcb_esp0 = (uv + USPACE - 16); in cpu_lwp_fork()
355 error = uvm_pglistalloc(USPACE, 0, ptoa(physmem), 0, 0, &pglist, 1, 1); in cpu_uarea_alloc()
H A Dcpu.c957 tss->tss_esp0 = tss->tss_esp = (int)((char *)stack + USPACE - 16); in tss_init()
965 tss->tss_esp = (int)((char *)stack + USPACE - 16); in tss_init()
985 ci->ci_doubleflt_stack = (char *)uvm_km_alloc(kernel_map, USPACE, 0, in cpu_set_tss_gates()
1003 ci->ci_ddbipi_stack = (char *)uvm_km_alloc(kernel_map, USPACE, 0, in cpu_set_tss_gates()
/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/sparc/sparc/
H A Dvm_machdep.c167 #define TOPFRAMEOFF (USPACE-sizeof(struct trapframe)-sizeof(struct frame))
252 ((int)npcb + USPACE - sizeof(*tf2)); in cpu_lwp_fork()
255 *tf2 = *(struct trapframe *)((int)opcb + USPACE - sizeof(*tf2)); in cpu_lwp_fork()
/dports/lang/python27/Python-2.7.18/Lib/email/
H A Dheader.py24 USPACE = u' ' variable
215 uchunks.append(USPACE)
218 uchunks.append(USPACE)
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/email/
H A DHeader.py24 USPACE = u' ' variable
215 uchunks.append(USPACE)
218 uchunks.append(USPACE)
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
H A Dheader.py24 USPACE = u' ' variable
215 uchunks.append(USPACE)
218 uchunks.append(USPACE)
/dports/lang/python-legacy/Python-2.7.18/Lib/email/
H A Dheader.py24 USPACE = u' ' variable
215 uchunks.append(USPACE)
218 uchunks.append(USPACE)
/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/powerpc/include/
H A Dparam.h76 #define USPACE (UPAGES * NBPG) macro
/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/sparc/include/
H A Dparam.h95 #define USPACE 8192 macro
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/StdLib/Include/Ipf/machine/
H A Dparam.h70 #define USPACE (UPAGES * NBPG) /* total size of u-area */ macro
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/StdLib/Include/X64/machine/
H A Dparam.h57 #define USPACE (UPAGES * NBPG) /* total size of u-area */ macro
/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/i386/include/
H A Dparam.h100 #define USPACE (UPAGES * NBPG) /* total size of u-area */ macro
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/StdLib/Include/Ia32/machine/
H A Dparam.h92 #define USPACE (UPAGES * NBPG) /* total size of u-area */ macro
/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/amd64/include/
H A Dparam.h58 #define USPACE (UPAGES * NBPG) /* total size of u-area */ macro
/dports/misc/rump/buildrump.sh-b914579/src/sys/arch/sparc64/include/
H A Dparam.h121 #define USPACE (SSIZE*8192) macro

123