Searched refs:to (Results 1 - 25 of 888) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/rio/
H A Driopcicopy.c4 void rio_pcicopy( char *from, char *to, int amount) argument
7 *to++ = *from++;
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/m68k/lib/
H A Dmemcpy.c3 void * memcpy(void * to, const void * from, size_t n) argument
5 void *xto = to;
10 if ((long) to & 1)
12 char *cto = to;
15 to = cto;
19 if (n > 2 && (long) to & 2)
21 short *sto = to;
24 to = sto;
31 long *lto = to;
57 to
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/pcmcia/
H A Dmem_op.h4 * The contents of this file are subject to the Mozilla Public License
21 * above. If you wish to allow the use of your version of this file
22 * only under the terms of the GPL and not to allow others to use
37 to copy between a card and kernel memory. These routines do 32-bit
47 static inline void copy_pc_to_user(void *to, const void *from, size_t n) argument
52 put_user(__raw_readl(from), (int *)to);
53 (char *)from += 4; (char *)to += 4; n -= 4;
56 put_user(readb((char *)from++), (char *)to++);
59 static inline void copy_user_to_pc(void *to, cons argument
78 copy_from_pc(void *to, const void *from, size_t n) argument
90 copy_to_pc(void *to, const void *from, size_t n) argument
102 copy_pc_to_user(void *to, const void *from, size_t n) argument
114 copy_user_to_pc(void *to, const void *from, size_t n) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/pcmcia/
H A Dmem_op.h4 * The contents of this file are subject to the Mozilla Public License
21 * above. If you wish to allow the use of your version of this file
22 * only under the terms of the GPL and not to allow others to use
37 to copy between a card and kernel memory. These routines do 32-bit
47 static inline void copy_pc_to_user(void *to, const void *from, size_t n) argument
52 put_user(__raw_readl(from), (int *)to);
53 (char *)from += 4; (char *)to += 4; n -= 4;
56 put_user(readb((char *)from++), (char *)to++);
59 static inline void copy_user_to_pc(void *to, cons argument
78 copy_from_pc(void *to, const void *from, size_t n) argument
90 copy_to_pc(void *to, const void *from, size_t n) argument
102 copy_pc_to_user(void *to, const void *from, size_t n) argument
114 copy_user_to_pc(void *to, const void *from, size_t n) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-m68k/
H A Duaccess.h23 * address of an instruction that is allowed to fault, and the second is
25 * modified, so it is entirely up to the continuation code to figure out
26 * what to do.
30 * we don't even have to jump over them. Further, they do not intrude
77 * we do not write to any memory gcc knows about, so there are no
144 __generic_copy_from_user(void *to, const void *from, unsigned long n) argument
192 : "=a"(to), "=a"(from), "=d"(n), "=&d"(tmp)
193 : "d"(n & 3), "0"(to), "1"(from), "2"(n/4)
199 __generic_copy_to_user(void *to, cons argument
274 __constant_copy_from_user(void *to, const void *from, unsigned long n) argument
527 __constant_copy_to_user(void *to, const void *from, unsigned long n) argument
849 clear_user(void *to, unsigned long n) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-m68k/
H A Duaccess.h23 * address of an instruction that is allowed to fault, and the second is
25 * modified, so it is entirely up to the continuation code to figure out
26 * what to do.
30 * we don't even have to jump over them. Further, they do not intrude
77 * we do not write to any memory gcc knows about, so there are no
144 __generic_copy_from_user(void *to, const void *from, unsigned long n) argument
192 : "=a"(to), "=a"(from), "=d"(n), "=&d"(tmp)
193 : "d"(n & 3), "0"(to), "1"(from), "2"(n/4)
199 __generic_copy_to_user(void *to, cons argument
274 __constant_copy_from_user(void *to, const void *from, unsigned long n) argument
527 __constant_copy_to_user(void *to, const void *from, unsigned long n) argument
849 clear_user(void *to, unsigned long n) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-cris/
H A Duaccess.h38 * copying inline to/from user for constant length 0..16, 20, 24, and
64 /* Asm:s have been tweaked (within the domain of correctness) to give
70 first in line to be used (notably for local blocks), not colliding with
96 * the KERNEL_DS and USER_DS values to both assign and compare the
123 * address of an instruction that is allowed to fault, and the second is
125 * modified, so it is entirely up to the continuation code to figure out
126 * what to do.
130 * we don't even have to jump over them. Further, they do not intrude
147 * This gets kind of ugly. We want to retur
406 __generic_copy_to_user(void *to, const void *from, unsigned long n) argument
414 __generic_copy_from_user(void *to, const void *from, unsigned long n) argument
422 __generic_clear_user(void *to, unsigned long n) argument
896 __constant_copy_from_user(void *to, const void *from, unsigned long n) argument
946 __constant_copy_to_user(void *to, const void *from, unsigned long n) argument
996 __constant_clear_user(void *to, unsigned long n) argument
1051 __generic_copy_from_user_nocheck(void *to, const void *from, unsigned long n) argument
1057 __generic_copy_to_user_nocheck(void *to, const void *from, unsigned long n) argument
1063 __generic_clear_user_nocheck(void *to, unsigned long n) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-cris/
H A Duaccess.h35 * copying inline to/from user for constant length 0..16, 20, 24, and
61 /* Asm:s have been tweaked (within the domain of correctness) to give
67 first in line to be used (notably for local blocks), not colliding with
93 * the KERNEL_DS and USER_DS values to both assign and compare the
120 * address of an instruction that is allowed to fault, and the second is
122 * modified, so it is entirely up to the continuation code to figure out
123 * what to do.
127 * we don't even have to jump over them. Further, they do not intrude
144 * This gets kind of ugly. We want to retur
403 __generic_copy_to_user(void *to, const void *from, unsigned long n) argument
411 __generic_copy_from_user(void *to, const void *from, unsigned long n) argument
419 __generic_clear_user(void *to, unsigned long n) argument
893 __constant_copy_from_user(void *to, const void *from, unsigned long n) argument
943 __constant_copy_to_user(void *to, const void *from, unsigned long n) argument
993 __constant_clear_user(void *to, unsigned long n) argument
1048 __generic_copy_from_user_nocheck(void *to, const void *from, unsigned long n) argument
1054 __generic_copy_to_user_nocheck(void *to, const void *from, unsigned long n) argument
1060 __generic_clear_user_nocheck(void *to, unsigned long n) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/arm/kernel/
H A Dio.c7 * Copy data from IO memory space to "real" memory space.
8 * This needs to be optimized.
10 void _memcpy_fromio(void * to, unsigned long from, size_t count) argument
14 *(char *) to = readb(from);
15 ((char *) to)++;
21 * Copy data from "real" memory space to IO memory space.
22 * This needs to be optimized.
24 void _memcpy_toio(unsigned long to, const void * from, size_t count) argument
28 writeb(*(char *) from, to);
30 to
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/rpc_server/
H A Dsrv_samr_util.c21 along with this program; if not, write to the Free Software
39 Copies a SAM_USER_INFO_20 to a SAM_ACCOUNT
42 void copy_id20_to_sam_passwd(SAM_ACCOUNT *to, SAM_USER_INFO_20 *from) argument
48 if (from == NULL || to == NULL)
52 old_string = pdb_get_munged_dial(to);
58 pdb_set_munged_dial(to , new_string, PDB_CHANGED);
65 Copies a SAM_USER_INFO_21 to a SAM_ACCOUNT
68 void copy_id21_to_sam_passwd(SAM_ACCOUNT *to, SAM_USER_INFO_21 *from) argument
74 if (from == NULL || to == NULL)
78 stored_time = pdb_get_logon_time(to);
285 copy_id23_to_sam_passwd(SAM_ACCOUNT *to, SAM_USER_INFO_23 *from) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-i386/
H A Dmmx.h10 extern void *_mmx_memcpy(void *to, const void *from, size_t size);
12 extern void mmx_copy_page(void *to, void *from);
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-x86_64/
H A Dmmx.h10 extern void *_mmx_memcpy(void *to, const void *from, size_t size);
12 extern void mmx_copy_page(void *to, void *from);
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/netfilter_ipv4/
H A Dip_autofw.h9 u_int16_t to[2]; /* Port range to map related destination port range to */ member in struct:ip_autofw_info
14 u_int16_t to[2]; /* Port range to map related destination port range to */ member in struct:ip_autofw_expect
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-x86_64/
H A Dmmx.h10 extern void *_mmx_memcpy(void *to, const void *from, size_t size);
12 extern void mmx_copy_page(void *to, void *from);
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/netfilter_ipv4/
H A Dip_autofw.h9 u_int16_t to[2]; /* Port range to map related destination port range to */ member in struct:ip_autofw_info
14 u_int16_t to[2]; /* Port range to map related destination port range to */ member in struct:ip_autofw_expect
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-i386/
H A Dmmx.h10 extern void *_mmx_memcpy(void *to, const void *from, size_t size);
12 extern void mmx_copy_page(void *to, void *from);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/galileo-boards/ev64120/compressed/
H A Dgalileo_port.h8 void *memcpy(void *to, const void *from, unsigned int);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/i386/lib/
H A Dmmx.c18 * We also want to clobber the filler register so we dont get any
29 void *_mmx_memcpy(void *to, const void *from, size_t len) argument
35 return __memcpy(to, from, len);
37 p = to;
88 : : "r" (from), "r" (to) : "memory");
90 to+=64;
112 : : "r" (from), "r" (to) : "memory");
114 to+=64;
119 __memcpy(to, from, len&63);
155 /* since movntq is weakly-ordered, a "sfence" is needed to becom
164 fast_copy_page(void *to, void *from) argument
296 fast_copy_page(void *to, void *from) argument
381 slow_copy_page(void *to, void *from) argument
393 mmx_copy_page(void *to, void *from) argument
[all...]
H A Dusercopy.c15 __generic_copy_to_user(void *to, const void *from, unsigned long n) argument
17 if (access_ok(VERIFY_WRITE, to, n))
20 __copy_user(to,from,n);
22 mmx_copy_user(to,from,n);
28 __generic_copy_from_user(void *to, const void *from, unsigned long n) argument
33 __copy_user_zeroing(to,from,n);
35 mmx_copy_user_zeroing(to, from, n);
38 memset(to, 0, n);
45 __generic_copy_to_user(void *to, const void *from, unsigned long n) argument
48 if (access_ok(VERIFY_WRITE, to,
54 __generic_copy_from_user(void *to, const void *from, unsigned long n) argument
142 clear_user(void *to, unsigned long n) argument
150 __clear_user(void *to, unsigned long n) argument
[all...]
H A Dmemcpy.c7 void * memcpy(void * to, const void * from, size_t n) argument
10 return __memcpy3d(to, from, n);
12 return __memcpy(to, from, n);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/arm/lib/
H A Dio-shark.c23 void insl(unsigned int port, void *to, int len) argument
28 void insb(unsigned int port, void *to, int len) argument
46 * Purpose: read a block of data from a hardware register to memory.
47 * Proto : insw(int from_port, void *to, int len_in_words);
48 * Proto : inswb(int from_port, void *to, int len_in_bytes);
49 * Notes : increment to
52 void insw(unsigned int port, void *to, int len) argument
57 ((unsigned short *) to)[i] = inw(port);
60 void inswb(unsigned int port, void *to, int len) argument
62 insw(port, to, le
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ia64/lib/
H A Dio.c7 * Copy data from IO memory space to "real" memory space.
8 * This needs to be optimized.
11 __ia64_memcpy_fromio (void * to, unsigned long from, long count) argument
15 *(char *) to = readb(from);
16 ((char *) to)++;
22 * Copy data from "real" memory space to IO memory space.
23 * This needs to be optimized.
26 __ia64_memcpy_toio (unsigned long to, void * from, long count) argument
30 writeb(*(char *) from, to);
32 to
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/m68k/fpsp040/
H A Dx_bsun.S6 | Copy the PC to FPIAR to maintain 881/882 compatibility
8 | The real_bsun handler will need to perform further corrective
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-mips64/
H A Dpage.h2 * This file is subject to the terms and conditions of the GNU General Public
31 void sb1_copy_page(void * to, void * from);
34 extern void (*_copy_page)(void * to, void * from);
47 extern void mips64_copy_page_dc(unsigned long to, unsigned long from);
48 extern void mips64_copy_page_sc(unsigned long to, unsigned long from);
49 void r4k_copy_page_d16(void * to, void * from);
50 void r4k_copy_page_d32(void * to, void * from);
51 void r4k_copy_page_r4600_v1(void * to, void * from);
52 void r4k_copy_page_r4600_v2(void * to, void * from);
53 void r4k_copy_page_s16(void * to, voi
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-mips64/
H A Dpage.h2 * This file is subject to the terms and conditions of the GNU General Public
31 void sb1_copy_page(void * to, void * from);
34 extern void (*_copy_page)(void * to, void * from);
47 extern void mips64_copy_page_dc(unsigned long to, unsigned long from);
48 extern void mips64_copy_page_sc(unsigned long to, unsigned long from);
49 void r4k_copy_page_d16(void * to, void * from);
50 void r4k_copy_page_d32(void * to, void * from);
51 void r4k_copy_page_r4600_v1(void * to, void * from);
52 void r4k_copy_page_r4600_v2(void * to, void * from);
53 void r4k_copy_page_s16(void * to, voi
[all...]

Completed in 314 milliseconds

1234567891011>>