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

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/share/
H A Dutf8.h11 * environment variable CHARSET, or assumed to be US-ASCII.
22 int utf8_encode(const char *from, char **to);
23 int utf8_decode(const char *from, char **to);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/plugin_common/
H A Dcharset.h1 /* plugin_common - Routines common to several plugins
20 * along with this program; if not, write to the Free Software
34 char *FLAC_plugin__charset_convert_string(const char *string, char *from, char *to);
37 int FLAC_plugin__charset_test_conversion(char *from, char *to);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/include/arch-v32/arch/
H A Duaccess.h10 * because we do not write to any memory gcc knows about, so there
156 /* A few copy asms to build up the more complex ones from.
162 #define __asm_copy_user_cont(to, from, ret, COPY, FIXUP, TENTRY) \
172 : "=b" (to), "=b" (from), "=r" (ret) \
173 : "0" (to), "1" (from), "2" (ret) \
176 #define __asm_copy_from_user_1(to, from, ret) \
177 __asm_copy_user_cont(to, from, ret, \
185 #define __asm_copy_from_user_2x_cont(to, from, ret, COPY, FIXUP, TENTRY) \
186 __asm_copy_user_cont(to, from, ret, \
197 #define __asm_copy_from_user_2(to, fro
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/include/arch-v10/arch/
H A Duaccess.h11 * because we do not write to any memory gcc knows about, so there
150 /* A few copy asms to build up the more complex ones from.
156 #define __asm_copy_user_cont(to, from, ret, COPY, FIXUP, TENTRY) \
167 : "=r" (to), "=r" (from), "=r" (ret) \
168 : "0" (to), "1" (from), "2" (ret) \
171 #define __asm_copy_from_user_1(to, from, ret) \
172 __asm_copy_user_cont(to, from, ret, \
179 #define __asm_copy_from_user_2x_cont(to, from, ret, COPY, FIXUP, TENTRY) \
180 __asm_copy_user_cont(to, from, ret, \
187 #define __asm_copy_from_user_2(to, fro
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/dhcp6/
H A Dserver6_addr.conf4 range 2000::1 to 2000::5/64;
5 range fecc::1 to fecc::3/64;
7 range fe30:ffff::26 to fe30:ffff::21/25;
8 range 3000:ffff::200 to 3000:ffff::201/32;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/dhcp6/
H A Dserver6_addr.conf4 range 2000::1 to 2000::5/64;
5 range fecc::1 to fecc::3/64;
7 range fe30:ffff::26 to fe30:ffff::21/25;
8 range 3000:ffff::200 to 3000:ffff::201/32;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/cris/include/asm/
H A Duaccess.h6 /* Asm:s have been tweaked (within the domain of correctness) to give
12 first in line to be used (notably for local blocks), not colliding with
38 * the KERNEL_DS and USER_DS values to both assign and compare the
61 * address of an instruction that is allowed to fault, and the second is
63 * modified, so it is entirely up to the continuation code to figure out
64 * what to do.
68 * we don't even have to jump over them. Further, they do not intrude
81 * This gets kind of ugly. We want to return _two_ values in "get_user()"
82 * and yet we don't want to d
180 __generic_copy_to_user(void __user *to, const void *from, unsigned long n) argument
188 __generic_copy_from_user(void *to, const void __user *from, unsigned long n) argument
196 __generic_clear_user(void __user *to, unsigned long n) argument
223 __constant_copy_from_user(void *to, const void __user *from, unsigned long n) argument
273 __constant_copy_to_user(void __user *to, const void *from, unsigned long n) argument
323 __constant_clear_user(void __user *to, unsigned long n) argument
373 __generic_copy_from_user_nocheck(void *to, const void __user *from, unsigned long n) argument
380 __generic_copy_to_user_nocheck(void __user *to, const void *from, unsigned long n) argument
387 __generic_clear_user_nocheck(void __user *to, unsigned long n) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/kernel/
H A Duaccess.c9 * order to do SIGBUS recovery when a tmpfs mount runs out of room.
15 static void __do_copy(void *to, const void *from, int n) argument
17 memcpy(to, from, n);
21 int __do_copy_to_user(void *to, const void *from, int n, argument
27 fault = __do_user_copy(to, from, n, fault_addr, fault_catcher,
32 return n - (fault - (unsigned long) to);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/kernel/
H A Dio.c7 * This file is subject to the terms and conditions of the GNU General Public
17 * Copy data from IO memory space to "real" memory space.
19 void memcpy_fromio(void *to, const volatile void __iomem *from, unsigned long count) argument
23 * to try and get aligned?
27 (((u32)to & 0x1f) == 0) && (((u32)from & 0x3) == 0)) {
53 : "=&r" (to), "=&r" (count),
56 : "7"(from), "0" (to), "1" (count)
61 if ((((u32)to | (u32)from) & 0x3) == 0) {
63 *(u32 *)to = *(volatile u32 *)from;
64 to
82 memcpy_toio(volatile void __iomem *to, const void *from, unsigned long count) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68knommu/lib/
H A Dmemcpy.c4 void * memcpy(void * to, const void * from, size_t n) argument
7 void *xto = to;
12 if ((long) to & 1)
14 char *cto = to;
17 to = cto;
21 if (n > 2 && (long) to & 2)
23 short *sto = to;
26 to = sto;
33 long *lto = to;
37 to
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/lib/
H A Dusercopy_64.c2 * Functions which are too large to be inlined.
12 unsigned long copy_from_user(void *to, const void __user *from, unsigned long n) argument
15 n = __copy_from_user(to, from, n);
17 memset(to, 0, n);
21 unsigned long copy_to_user(void __user *to, const void *from, unsigned long n) argument
23 if (likely(access_ok(VERIFY_WRITE, to, n)))
24 n = __copy_to_user(to, from, n);
28 unsigned long copy_in_user(void __user *to, const void __user *from, argument
33 access_ok(VERIFY_WRITE, to, n)))
34 n =__copy_tofrom_user(to, fro
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/include/asm/
H A Duaccess_32.h15 (void __user *to, const void *from, unsigned long n);
17 (void *to, const void __user *from, unsigned long n);
19 (void *to, const void __user *from, unsigned long n);
21 (void *to, const void __user *from, unsigned long n);
23 (void *to, const void __user *from, unsigned long n);
27 * @to: Destination address, in user space.
29 * @n: Number of bytes to copy.
33 * Copy data from kernel space to user space. Caller must check
45 __copy_to_user_inatomic(void __user *to, const void *from, unsigned long n) argument
52 __put_user_size(*(u8 *)from, (u8 __user *)to,
83 __copy_to_user(void __user *to, const void *from, unsigned long n) argument
90 __copy_from_user_inatomic(void *to, const void __user *from, unsigned long n) argument
138 __copy_from_user(void *to, const void __user *from, unsigned long n) argument
159 __copy_from_user_nocache(void *to, const void __user *from, unsigned long n) argument
182 __copy_from_user_inatomic_nocache(void *to, const void __user *from, unsigned long n) argument
203 copy_from_user(void *to, const void __user *from, unsigned long n) argument
[all...]
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);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/man/
H A Dmsgfmt.x2 msgfmt \- compile message catalog to binary format
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/netfilter_ipv4/
H A Dip_autofw.h4 * Permission to use, copy, modify, and/or distribute this software for any
27 u_int16_t to[2]; /* Port range to map related destination port range to */ member in struct:ip_autofw_info
32 u_int16_t to[2]; /* Port range to map related destination port range to */ member in struct:ip_autofw_expect
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/lib/
H A Dmmx_32.c9 * We also want to clobber the filler register so we don't get any
28 void *_mmx_memcpy(void *to, const void *from, size_t len) argument
34 return __memcpy(to, from, len);
36 p = to;
79 : : "r" (from), "r" (to) : "memory");
82 to += 64;
103 : : "r" (from), "r" (to) : "memory");
106 to += 64;
111 __memcpy(to, from, len & 63);
150 * Since movntq is weakly-ordered, a "sfence" is needed to becom
158 fast_copy_page(void *to, void *from) argument
280 fast_copy_page(void *to, void *from) argument
358 slow_copy_page(void *to, void *from) argument
370 mmx_copy_page(void *to, void *from) argument
[all...]
H A Dusercopy_32.c70 * @count: Maximum number of bytes to copy, including the trailing NUL.
72 * Copies a NUL-terminated string from userspace to kernel space.
79 * If access to userspace fails, returns -EFAULT (some data may have been
99 * @count: Maximum number of bytes to copy, including the trailing NUL.
101 * Copies a NUL-terminated string from userspace to kernel space.
106 * If access to userspace fails, returns -EFAULT (some data may have been
147 * @to: Destination address, in user space.
148 * @n: Number of bytes to zero.
156 clear_user(void __user *to, unsigned long n) argument
159 if (access_ok(VERIFY_WRITE, to,
177 __clear_user(void __user *to, unsigned long n) argument
230 __copy_user_intel(void __user *to, const void *from, unsigned long size) argument
337 __copy_user_zeroing_intel(void *to, const void __user *from, unsigned long size) argument
436 __copy_user_zeroing_intel_nocache(void *to, const void __user *from, unsigned long size) argument
533 __copy_user_intel_nocache(void *to, const void __user *from, unsigned long size) argument
717 __copy_to_user_ll(void __user *to, const void *from, unsigned long n) argument
785 __copy_from_user_ll(void *to, const void __user *from, unsigned long n) argument
796 __copy_from_user_ll_nozero(void *to, const void __user *from, unsigned long n) argument
808 __copy_from_user_ll_nocache(void *to, const void __user *from, unsigned long n) argument
823 __copy_from_user_ll_nocache_nozero(void *to, const void __user *from, unsigned long n) argument
852 copy_to_user(void __user *to, const void *from, unsigned long n) argument
877 _copy_from_user(void *to, const void __user *from, unsigned long n) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/rsa/
H A Drsa_none.c7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
65 int RSA_padding_add_none(unsigned char *to, int tlen, argument
78 memcpy(to, from, (unsigned int)flen);
82 int RSA_padding_check_none(unsigned char *to, int tlen, argument
91 memset(to, 0, tlen - flen);
92 memcpy(to + tlen - flen, from, flen);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/rsa/
H A Drsa_none.c7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
65 int RSA_padding_add_none(unsigned char *to, int tlen, argument
80 memcpy(to,from,(unsigned int)flen);
84 int RSA_padding_check_none(unsigned char *to, int tlen, argument
94 memset(to,0,tlen-flen);
95 memcpy(to+tlen-flen,from,flen);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/rsa/
H A Drsa_none.c7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
65 int RSA_padding_add_none(unsigned char *to, int tlen, argument
78 memcpy(to, from, (unsigned int)flen);
82 int RSA_padding_check_none(unsigned char *to, int tlen, argument
91 memset(to, 0, tlen - flen);
92 memcpy(to + tlen - flen, from, flen);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/include/asm/
H A Duaccess_mm.h25 * address of an instruction that is allowed to fault, and the second is
27 * modified, so it is entirely up to the continuation code to figure out
28 * what to do.
32 * we don't even have to jump over them. Further, they do not intrude
186 unsigned long __generic_copy_from_user(void *to, const void __user *from, unsigned long n);
187 unsigned long __generic_copy_to_user(void __user *to, const void *from, unsigned long n);
189 #define __constant_copy_from_user_asm(res, to, from, tmp, n, s1, s2, s3)\
219 : "+d" (res), "+&a" (to), "+a" (from), "=&d" (tmp) \
223 __constant_copy_from_user(void *to, cons argument
304 __constant_copy_to_user(void __user *to, const void *from, unsigned long n) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/lib/
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))
18 __copy_user(to, from, n);
23 __generic_copy_from_user(void *to, const void *from, unsigned long n) argument
26 __copy_user_zeroing(to, from, n);
116 __clear_user(void *to, unsigned long n) argument
118 __do_clear_user(to, n);
123 clear_user(void *to, unsigned long n) argument
125 if (access_ok(VERIFY_WRITE, to, n))
126 __do_clear_user(to,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/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 struct samu
42 void copy_id20_to_sam_passwd(struct samu *to, SAM_USER_INFO_20 *from) argument
48 if (from == NULL || to == NULL)
52 old_string = pdb_get_munged_dial(to);
60 pdb_set_munged_dial(to , new_string, PDB_CHANGED);
67 Copies a SAM_USER_INFO_21 to a struct samu
70 void copy_id21_to_sam_passwd(struct samu *to, SAM_USER_INFO_21 *from) argument
76 if (from == NULL || to == NULL)
81 stored_time = pdb_get_logon_time(to);
293 copy_id23_to_sam_passwd(struct samu *to, SAM_USER_INFO_23 *from) argument
506 copy_id25_to_sam_passwd(struct samu *to, SAM_USER_INFO_25 *from) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/os-Linux/
H A Duaccess.c10 unsigned long __do_user_copy(void *to, const void *from, int n, argument
12 void (*op)(void *to, const void *from,
20 (*op)(to, from, n);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/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

Completed in 269 milliseconds

1234567891011>>