Searched defs:csize (Results 1 - 13 of 13) sorted by relevance

/arch/arm/kernel/
H A Dcrash_dump.c25 * @csize: number of bytes to copy
34 size_t csize, unsigned long offset,
39 if (!csize)
47 if (copy_to_user(buf, vaddr + offset, csize)) {
52 memcpy(buf, vaddr + offset, csize);
56 return csize;
33 copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, unsigned long offset, int userbuf) argument
/arch/ia64/kernel/
H A Dcrash_dump.c21 * @csize: number of bytes to copy
35 size_t csize, unsigned long offset, int userbuf)
39 if (!csize)
43 if (copy_to_user(buf, (vaddr + offset), csize)) {
47 memcpy(buf, (vaddr + offset), csize);
48 return csize;
34 copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, unsigned long offset, int userbuf) argument
/arch/sh/kernel/
H A Dcrash_dump.c17 * @csize: number of bytes to copy
26 size_t csize, unsigned long offset, int userbuf)
30 if (!csize)
36 if (copy_to_user(buf, (vaddr + offset), csize)) {
41 memcpy(buf, (vaddr + offset), csize);
44 return csize;
25 copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, unsigned long offset, int userbuf) argument
/arch/x86/kernel/
H A Dcrash_dump_64.c18 * @csize: number of bytes to copy
27 size_t csize, unsigned long offset, int userbuf)
31 if (!csize)
39 if (copy_to_user(buf, vaddr + offset, csize)) {
44 memcpy(buf, vaddr + offset, csize);
48 return csize;
26 copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, unsigned long offset, int userbuf) argument
H A Dcrash_dump_32.c38 * @csize: number of bytes to copy
51 size_t csize, unsigned long offset, int userbuf)
55 if (!csize)
64 memcpy(buf, (vaddr + offset), csize);
75 if (copy_to_user(buf, (kdump_buf_page + offset), csize))
79 return csize;
50 copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, unsigned long offset, int userbuf) argument
/arch/mips/kernel/
H A Dcrash_dump.c14 * @csize: number of bytes to copy
27 size_t csize, unsigned long offset, int userbuf)
31 if (!csize)
37 memcpy(buf, (vaddr + offset), csize);
47 if (copy_to_user(buf, (kdump_buf_page + offset), csize))
51 return csize;
26 copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, unsigned long offset, int userbuf) argument
/arch/powerpc/kernel/
H A Dcrash_dump.c73 static size_t copy_oldmem_vaddr(void *vaddr, char *buf, size_t csize, argument
77 if (copy_to_user((char __user *)buf, (vaddr + offset), csize))
80 memcpy(buf, (vaddr + offset), csize);
82 return csize;
90 * @csize: number of bytes to copy
99 size_t csize, unsigned long offset, int userbuf)
104 if (!csize)
107 csize = min_t(size_t, csize, PAGE_SIZE);
110 if (memblock_is_region_memory(paddr, csize)) {
98 copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, unsigned long offset, int userbuf) argument
[all...]
/arch/m68k/atari/
H A Ddebug.c170 int csize = ((cflag & CSIZE) == CS7) ? 0x20 : 0x00; local
179 st_mfp.usart_ctr = parity | csize | 0x88; /* 1:16 clk mode, 1 stop bit */
266 int csize = ((cflag & CSIZE) == CS8) ? 0x10 : 0x00; local
283 acia.mid_ctrl = div | csize | parity |
/arch/cris/include/arch-v32/mach-a3/mach/hwregs/
H A Dl2cache_defs.h97 unsigned int csize : 10; member in struct:__anon1130
/arch/s390/kernel/
H A Dcrash_dump.c120 static ssize_t copy_oldmem_page_zfcpdump(char *buf, size_t csize, argument
126 rc = memcpy_hsa(buf, src, csize, userbuf);
130 (void *) src, csize);
132 rc = memcpy_real(buf, (void *) src, csize);
134 return rc ? rc : csize;
144 static ssize_t copy_oldmem_page_kdump(char *buf, size_t csize, argument
157 (void *) src, csize);
159 rc = copy_from_realmem(buf, (void *) src, csize);
160 return (rc == 0) ? rc : csize;
166 ssize_t copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, argument
[all...]
/arch/mips/include/asm/octeon/
H A Dcvmx-dpi-defs.h212 uint64_t csize:14; member in struct:cvmx_dpi_dmax_ibuff_saddr::cvmx_dpi_dmax_ibuff_saddr_s
222 uint64_t csize:14;
229 uint64_t csize:14; member in struct:cvmx_dpi_dmax_ibuff_saddr::cvmx_dpi_dmax_ibuff_saddr_cn61xx
241 uint64_t csize:14;
H A Dcvmx-npi-defs.h544 uint64_t csize:14; member in struct:cvmx_npi_dma_control::cvmx_npi_dma_control_s
546 uint64_t csize:14;
H A Dcvmx-npei-defs.h1119 uint64_t csize:14; member in struct:cvmx_npei_dma_control::cvmx_npei_dma_control_s
1121 uint64_t csize:14;
1157 uint64_t csize:14; member in struct:cvmx_npei_dma_control::cvmx_npei_dma_control_cn52xxp1
1159 uint64_t csize:14;
1194 uint64_t csize:14; member in struct:cvmx_npei_dma_control::cvmx_npei_dma_control_cn56xxp1
1196 uint64_t csize:14;

Completed in 1526 milliseconds