PAGE_SIZE         169 bsp/hal/arm/arch/mmu.c 		pa += PAGE_SIZE;
PAGE_SIZE         170 bsp/hal/arm/arch/mmu.c 		va += PAGE_SIZE;
PAGE_SIZE         171 bsp/hal/arm/arch/mmu.c 		size -= PAGE_SIZE;
PAGE_SIZE         202 bsp/hal/arm/arch/mmu.c 	mmu_map(pgd, 0, 0, PAGE_SIZE, PG_SYSTEM);
PAGE_SIZE         260 bsp/hal/arm/arch/mmu.c 	for (pg = start; pg <= end; pg += PAGE_SIZE) {
PAGE_SIZE         323 bsp/hal/arm/arch/mmu.c 	if (mmu_map(boot_pgd, 0, CONFIG_ARM_VECTORS, PAGE_SIZE, PG_SYSTEM))
PAGE_SIZE         129 bsp/hal/x86/arch/mmu.c 			if ((pg = page_alloc(PAGE_SIZE)) == 0) {
PAGE_SIZE         135 bsp/hal/x86/arch/mmu.c 			memset(pte, 0, PAGE_SIZE);
PAGE_SIZE         141 bsp/hal/x86/arch/mmu.c 		pa += PAGE_SIZE;
PAGE_SIZE         142 bsp/hal/x86/arch/mmu.c 		va += PAGE_SIZE;
PAGE_SIZE         143 bsp/hal/x86/arch/mmu.c 		size -= PAGE_SIZE;
PAGE_SIZE         165 bsp/hal/x86/arch/mmu.c 	if ((pg = page_alloc(PAGE_SIZE)) == 0)
PAGE_SIZE         168 bsp/hal/x86/arch/mmu.c 	memset(pgd, 0, PAGE_SIZE);
PAGE_SIZE         192 bsp/hal/x86/arch/mmu.c 				  PAGE_SIZE);
PAGE_SIZE         195 bsp/hal/x86/arch/mmu.c 	page_free(kvtop(pgd), PAGE_SIZE);
PAGE_SIZE         230 bsp/hal/x86/arch/mmu.c 	for (pg = start; pg <= end; pg += PAGE_SIZE) {
PAGE_SIZE         118 include/sys/param.h #define USRSTACK	(0 + PAGE_SIZE)	/* base address of user stack */
PAGE_SIZE         142 include/sys/param.h #define PAGE_MASK	(PAGE_SIZE-1)
PAGE_SIZE          94 sys/mem/kmem.c #define NR_BLOCK_LIST	(PAGE_SIZE / ALIGN_SIZE)
PAGE_SIZE         101 sys/mem/kmem.c #define MAX_ALLOC_SIZE	(size_t)(PAGE_SIZE - PGHDR_SIZE)
PAGE_SIZE         104 sys/mem/kmem.c #define MAX_BLOCK_SIZE	(u_short)(PAGE_SIZE - (PGHDR_SIZE - BLKHDR_SIZE))
PAGE_SIZE         108 sys/mem/kmem.c 			    ((vaddr_t)(n) & (vaddr_t)~(PAGE_SIZE - 1))
PAGE_SIZE         206 sys/mem/kmem.c 		if ((pa = page_alloc(PAGE_SIZE)) == 0) {
PAGE_SIZE         304 sys/mem/kmem.c 		page_free(kvtop(pg), PAGE_SIZE);
PAGE_SIZE         799 sys/mem/vm.c   	seg->addr = PAGE_SIZE;
PAGE_SIZE         801 sys/mem/vm.c   	seg->size = USERLIMIT - PAGE_SIZE;
PAGE_SIZE          35 usr/lib/libc/gen/getpagesize.c 	return PAGE_SIZE;