Searched refs:PAGE_SIZE (Results 151 - 175 of 3548) sorted by path

1234567891011>>

/linux-master/arch/arc/include/asm/
H A Dthread_info.h24 #define THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER)
/linux-master/arch/arc/include/uapi/asm/
H A Dpage.h29 #define PAGE_SIZE _BITUL(PAGE_SHIFT) /* Default 8K */ macro
32 #define PAGE_MASK (~(PAGE_SIZE-1))
/linux-master/arch/arc/kernel/
H A Dsetup.c588 seq_printf(m, arc_cpu_mumbojumbo(cpu_id, &info, str, PAGE_SIZE));
H A Dvmlinux.lds.S33 . = ALIGN(PAGE_SIZE);
59 . = ALIGN(PAGE_SIZE);
80 . = ALIGN(PAGE_SIZE);
99 RO_DATA(PAGE_SIZE)
105 RW_DATA(L1_CACHE_BYTES, PAGE_SIZE, THREAD_SIZE)
112 . = ALIGN(PAGE_SIZE);
122 . = ALIGN(PAGE_SIZE);
/linux-master/arch/arc/mm/
H A Dcache.c120 p_ic->colors = p_ic->sz_k/assoc/TO_KB(PAGE_SIZE);
137 p_dc->colors = p_dc->sz_k/assoc/TO_KB(PAGE_SIZE);
463 const int full_page = __builtin_constant_p(sz) && sz == PAGE_SIZE;
499 const int full_page = __builtin_constant_p(sz) && sz == PAGE_SIZE;
797 if (tot_sz > PAGE_SIZE) {
819 * (2) Despite @tot_sz being < PAGE_SIZE (bigger cases handled already),
827 off = kstart % PAGE_SIZE;
830 sz = min_t(unsigned int, tot_sz, PAGE_SIZE - off);
857 __ic_line_inv_vaddr(paddr, vaddr, nr * PAGE_SIZE);
866 __dc_line_op(paddr, vaddr & PAGE_MASK, nr * PAGE_SIZE, OP_FLUSH_N_IN
[all...]
H A Dhighmem.c55 pte_k = (pte_t *)memblock_alloc_low(PAGE_SIZE, PAGE_SIZE);
58 __func__, PAGE_SIZE, PAGE_SIZE);
H A Dinit.c21 pgd_t swapper_pg_dir[PTRS_PER_PGD] __aligned(PAGE_SIZE);
22 char empty_zero_page[PAGE_SIZE] __aligned(PAGE_SIZE);
189 BUILD_BUG_ON((PTRS_PER_PGD * sizeof(pgd_t)) > PAGE_SIZE);
190 BUILD_BUG_ON((PTRS_PER_PUD * sizeof(pud_t)) > PAGE_SIZE);
191 BUILD_BUG_ON((PTRS_PER_PMD * sizeof(pmd_t)) > PAGE_SIZE);
192 BUILD_BUG_ON((PTRS_PER_PTE * sizeof(pte_t)) > PAGE_SIZE);
H A Dtlb.c221 if (unlikely((end - start) >= PAGE_SIZE * 32)) {
238 start += PAGE_SIZE;
257 if (unlikely((end - start) >= PAGE_SIZE * 32)) {
267 start += PAGE_SIZE;
646 if (mmu->pg_sz_k != TO_KB(PAGE_SIZE))
647 panic("MMU pg size != PAGE_SIZE (%luk)\n", TO_KB(PAGE_SIZE));
/linux-master/arch/arm/common/
H A Dlocomo.c380 lchip->base = ioremap(mem->start, PAGE_SIZE);
H A Dsa1111.c824 sachip->base = ioremap(mem->start, PAGE_SIZE * 2);
/linux-master/arch/arm/include/asm/
H A Dcacheflush.h241 __cpuc_flush_user_range(addr, addr + nr * PAGE_SIZE,
H A Dfixmap.h7 #define FIXADDR_TOP (FIXADDR_END - PAGE_SIZE)
H A Dhighmem.h72 __cpuc_flush_dcache_area((void *)vaddr, PAGE_SIZE); \
H A Dkfence.h34 addr += PAGE_SIZE) {
H A Dpage.h12 #define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT) macro
161 #define clear_page(page) memset((void *)(page), 0, PAGE_SIZE)
H A Dpgalloc.h32 #define PGD_SIZE (PAGE_SIZE << 2)
H A Dpgtable.h70 #define FIRST_USER_ADDRESS (PAGE_SIZE * 2)
H A Dthread_info.h25 #define THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER)
H A Dtlb.h52 __tlb_adjust_range(tlb, addr - PAGE_SIZE, 2 * PAGE_SIZE);
/linux-master/arch/arm/kernel/
H A Dasm-offsets.c113 DEFINE(PAGE_SZ, PAGE_SIZE);
H A Datags_parse.c47 { 1, PAGE_SIZE, 0xff },
H A Dcrash_dump.c27 vaddr = ioremap(__pfn_to_phys(pfn), PAGE_SIZE);
H A Dhibernate.c92 static u64 resume_stack[PAGE_SIZE/2/sizeof(u64)] __nosavedata;
H A Dpatch.c79 twopage = (uintaddr & ~PAGE_MASK) == PAGE_SIZE - 2;
H A Dprocess.c316 gate_vma.vm_end = 0xffff0000 + PAGE_SIZE;
421 vma = _install_special_mapping(mm, addr, PAGE_SIZE,
436 arm_install_vdso(mm, addr + PAGE_SIZE);

Completed in 379 milliseconds

1234567891011>>