Symbol: copy_page
arch/arc/include/asm/page.h
26
#define copy_page(to, from) memcpy((to), (from), PAGE_SIZE)
arch/arm/include/asm/page-nommu.h
12
#define copy_page(to,from) memcpy((to), (from), PAGE_SIZE)
arch/arm/lib/copy_page.S
24
ENTRY(copy_page)
arch/csky/include/asm/page.h
40
#define copy_page(to, from) memcpy((to), (from), PAGE_SIZE)
arch/hexagon/include/asm/page.h
111
#define copy_page(to, from) memcpy((to), (from), PAGE_SIZE)
arch/m68k/include/asm/page_mm.h
14
static inline void copy_page(void *to, void *from)
arch/m68k/include/asm/page_mm.h
52
#define copy_page(to,from) memcpy((to), (from), PAGE_SIZE)
arch/m68k/include/asm/page_no.h
11
#define copy_page(to,from) memcpy((to), (from), PAGE_SIZE)
arch/microblaze/include/asm/page.h
45
# define copy_page(to, from) memcpy((to), (from), PAGE_SIZE)
arch/mips/mm/page.c
643
void copy_page(void *to, void *from)
arch/nios2/include/asm/page.h
44
#define copy_page(to, from) memcpy((to), (from), PAGE_SIZE)
arch/openrisc/include/asm/page.h
31
#define copy_page(to, from) memcpy((to), (from), PAGE_SIZE)
arch/parisc/include/asm/page.h
17
#define copy_page(to, from) copy_page_asm((void *)(to), (void *)(from))
arch/riscv/include/asm/page.h
51
#define copy_page(to, from) memcpy((to), (from), PAGE_SIZE)
arch/s390/include/asm/page.h
53
static inline void copy_page(void *to, void *from)
arch/sh/lib/copy_page.S
27
ENTRY(copy_page)
arch/sh/mm/nommu.c
22
void copy_page(void *to, void *from)
arch/sparc/include/asm/page_32.h
19
#define copy_page(to,from) memcpy((void *)(to), (void *)(from), PAGE_SIZE)
arch/sparc/include/asm/page_64.h
47
#define copy_page(X,Y) memcpy((void *)(X), (void *)(Y), PAGE_SIZE)
arch/um/include/asm/page.h
27
#define copy_page(to,from) memcpy((void *)(to), (void *)(from), PAGE_SIZE)
arch/x86/include/asm/page_32.h
31
static inline void copy_page(void *to, void *from)
arch/xtensa/mm/misc.S
59
ENTRY(copy_page)
tools/testing/selftests/mm/uffd-common.c
659
int copy_page(uffd_global_test_opts_t *gopts, unsigned long offset, bool wp)