Searched refs:to (Results 76 - 100 of 1699) sorted by relevance

1234567891011>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-i386/
H A Duaccess.h51 * This is equivalent to the following test:
68 * to write to a block, it is always safe to read from it.
69 * @addr: User space pointer to start of block to check
70 * @size: Size of block to check
74 * Checks if a pointer to a block of memory in user space is valid.
87 * address of an instruction that is allowed to fault, and the second is
89 * modified, so it is entirely up to th
420 __copy_to_user_inatomic(void __user *to, const void *from, unsigned long n) argument
455 __copy_to_user(void __user *to, const void *from, unsigned long n) argument
462 __copy_from_user_inatomic(void *to, const void __user *from, unsigned long n) argument
510 __copy_from_user(void *to, const void __user *from, unsigned long n) argument
533 __copy_from_user_nocache(void *to, const void __user *from, unsigned long n) argument
556 __copy_from_user_inatomic_nocache(void *to, const void __user *from, unsigned long n) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/net/skfp/
H A Dpmf.c130 * only accessible locally to get/set passwd
219 * only accessible locally to get/set TMIN
567 char *to ; local
590 to = (char *) (pcon->pc_p) ; /* destination pointer */
593 pa = (struct smt_para *) to ; /* type/length pointer */
594 to += PARA_LEN ; /* skip smt_para */
603 to[0] = 0 ;
604 to[1] = 0 ;
605 to[2] = 0 ;
606 to[
1090 char *to ; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/alpha/kernel/
H A Dio.c252 * IDE driver to read disk sectors. Performance is important, but
253 * the interfaces seems to be slow: just using the inlined version
293 * but the interfaces seems to be slow: just using the inlined version
346 * driver to write disk sectors. Performance is important, but the
347 * interfaces seems to be slow: just using the inlined version of the
386 * driver to write disk sectors. Works with any alignment in SRC.
387 * Performance is important, but the interfaces seems to be slow:
417 * Copy data from IO memory space to "real" memory space.
418 * This needs to be optimized.
420 void memcpy_fromio(void *to, cons argument
474 memcpy_toio(volatile void __iomem *to, const void *from, long count) argument
527 _memset_c_io(volatile void __iomem *to, unsigned long c, long count) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/sh/mm/
H A Dpg-sh4.c20 * @to: P1 address
21 * @address: U0 address to be mapped
22 * @page: page (virt_to_page(to))
24 void clear_user_page(void *to, unsigned long address, struct page *page) argument
27 if (((address ^ (unsigned long)to) & CACHE_ALIAS) == 0)
28 clear_page(to);
30 unsigned long phys_addr = PHYSADDR(to);
46 __clear_user_page((void *)p3_addr, to);
54 * @to: P1 address
56 * @address: U0 address to b
59 copy_user_page(void *to, void *from, unsigned long address, struct page *page) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-s390/
H A Duaccess.h61 * 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
194 * @to: Destination address, in user space.
196 * @n: Number of bytes to copy.
200 * Copy data from kernel space to user space. Caller must check
207 __copy_to_user(void __user *to, const void *from, unsigned long n) argument
210 return uaccess.copy_to_user_small(n, to, fro
232 copy_to_user(void __user *to, const void *from, unsigned long n) argument
258 __copy_from_user(void *to, const void __user *from, unsigned long n) argument
283 copy_from_user(void *to, const void __user *from, unsigned long n) argument
294 __copy_in_user(void __user *to, const void __user *from, unsigned long n) argument
300 copy_in_user(void __user *to, const void __user *from, unsigned long n) argument
349 __clear_user(void __user *to, unsigned long n) argument
355 clear_user(void __user *to, unsigned long n) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-xtensa/
H A Duaccess.h6 * These routines provide basic accessing functions to the user memory
9 * This file is subject to the terms and conditions of the GNU General Public
55 * set_fs sets current->thread.current_ds to some value.
58 * <av> value to write
62 * <av> preserved, value to write
72 * On success, kernel_ok branches to a label indicated by parameter
73 * <success>. This implies that the macro falls through to the next
82 * <success> label to branch to on success; implies
98 * user_ok determines whether the access to use
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-m68knommu/
H A Duaccess.h28 * address of an instruction that is allowed to fault, and the second is
30 * modified, so it is entirely up to the continuation code to figure out
31 * what to do.
35 * we don't even have to jump over them. Further, they do not intrude
82 * we do not write to any memory gcc knows about, so there are no
127 #define copy_from_user(to, from, n) (memcpy(to, from, n), 0)
128 #define copy_to_user(to, from, n) (memcpy(to, fro
170 clear_user(void *to, unsigned long n) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/arm/mm/
H A Dcopypage-v6.c32 * Copy the user page. No aliasing to deal with so we can just
41 * Clear the user page. No aliasing to deal with so we can just
55 unsigned long from, to; local
77 to = to_address + (offset << PAGE_SHIFT);
80 flush_tlb_kernel_page(to);
82 copy_page((void *)to, (void *)from);
88 * Clear the user page. We need to deal with the aliasing issues,
95 unsigned long to = to_address + (offset << PAGE_SHIFT); local
110 flush_tlb_kernel_page(to);
111 clear_page((void *)to);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/jffs2/
H A Dwritev.c16 /* This ought to be in core MTD code. All registered MTD devices
20 unsigned long count, loff_t to, size_t *retlen)
29 ret = mtd->write(mtd, to, vecs[i].iov_len, &thislen, vecs[i].iov_base);
33 to += vecs[i].iov_len;
41 unsigned long count, loff_t to, size_t *retlen)
46 res = jffs2_sum_add_kvec(c, vecs, count, (uint32_t) to);
54 return c->mtd->writev(c->mtd, vecs, count, to, retlen);
56 return mtd_fake_writev(c->mtd, vecs, count, to, retlen);
19 mtd_fake_writev(struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen) argument
40 jffs2_flash_direct_writev(struct jffs2_sb_info *c, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen) argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/bin/ad/
H A Dad_cp.c6 * This code is derived from software contributed to Berkeley by
18 * may be used to endorse or promote products derived from this software
35 * Cp copies source files to target files.
37 * The global PATH_T structure "to" always contains the path to the
41 * The basic algorithm is to initialize "to" and use fts(3) to traverse
45 * path (relative to the root of the traversal) is appended to di
84 PATH_T to = { to.p_path, emptystring, "" }; variable
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/m68k/lib/
H A Dstring.c2 * This file is subject to the terms and conditions of the GNU General Public
79 void *memcpy(void *to, const void *from, size_t n) argument
81 void *xto = to;
86 if ((long)to & 1) {
87 char *cto = to;
90 to = cto;
94 if (n > 2 && (long)to & 2) {
95 short *sto = to;
98 to = sto;
104 long *lto = to;
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/arm/mach-s3c2443/
H A Ddma.c57 .hw_addr.to = S3C2410_PA_IIS + S3C2410_IISFIFO,
63 .hw_addr.to = S3C2410_PA_SPI + S3C2410_SPTDAT,
69 .hw_addr.to = S3C2410_PA_SPI + 0x20 + S3C2410_SPTDAT,
75 .hw_addr.to = S3C2410_PA_UART0 + S3C2410_UTXH,
81 .hw_addr.to = S3C2410_PA_UART1 + S3C2410_UTXH,
87 .hw_addr.to = S3C2410_PA_UART2 + S3C2410_UTXH,
93 .hw_addr.to = S3C2443_PA_UART3 + S3C2410_UTXH,
99 .hw_addr.to = S3C2410_PA_UART0 + S3C2410_UTXH,
105 .hw_addr.to = S3C2410_PA_UART1 + S3C2410_UTXH,
111 .hw_addr.to
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/mips/jazz/
H A Dio.c2 * This file is subject to the terms and conditions of the GNU General Public
17 * Map an 16mb segment of the EISA address space to 0xe3000000;
21 /* We've got an wired entry in the TLB. We just need to modify it.
22 fast and clean. But since we want to get rid of wired entries
98 static void jazz_memcpy_fromio(unsigned long to, unsigned long from, unsigned long len) argument
109 memcpy((void *)to, (void *)waddr, fraglen);
110 to += fraglen;
117 static void jazz_memcpy_toio(unsigned long to, unsigned long from, unsigned long len) argument
121 waddr = JAZZ_EISA_BASE | (to & 0xffffff);
125 fraglen = (~to
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-sh/
H A Ddma.h6 * This file is subject to the terms and conditions of the GNU General Public
20 /* The maximum address that we can perform a DMA transfer to on this platform */
124 unsigned long to, size_t size, unsigned int mode);
126 #define dma_write(chan, from, to, size) \
127 dma_xfer(chan, from, to, size, DMA_MODE_WRITE)
128 #define dma_write_page(chan, from, to) \
129 dma_write(chan, from, to, PAGE_SIZE)
131 #define dma_read(chan, from, to, size) \
132 dma_xfer(chan, from, to, size, DMA_MODE_READ)
133 #define dma_read_page(chan, from, to) \
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/um/kernel/tt/
H A Duaccess.c9 int copy_from_user_tt(void *to, const void __user *from, int n) argument
14 return(__do_copy_from_user(to, from, n, &current->thread.fault_addr,
18 int copy_to_user_tt(void __user *to, const void *from, int n) argument
20 if(!access_ok(VERIFY_WRITE, to, n))
23 return(__do_copy_to_user(to, from, n, &current->thread.fault_addr,
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/um/os-Linux/sys-x86_64/
H A Dregisters.c20 void init_thread_registers(union uml_pt_regs *to) argument
22 memcpy(to->skas.regs, exec_regs, sizeof(to->skas.regs));
23 memcpy(to->skas.fp, exec_fp_regs, sizeof(to->skas.fp));
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/um/include/tt/
H A Duaccess-tt.h30 extern int __do_copy_from_user(void *to, const void *from, int n,
39 extern int copy_from_user_tt(void *to, const void __user *from, int n);
40 extern int copy_to_user_tt(void __user *to, const void *from, int n);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/i386/lib/
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);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/iptables-1.x/extensions/
H A Dlibipt_connbytes.c1 /* Shared library add-on to iptables to add byte tracking support. */
17 " [!] --connbytes from:[to]\n"
38 si->count.to = strtoul(colon+1,&p,10);
41 si->count.to = 0xffffffff;
43 if (si->count.from > si->count.to)
45 si->count.from, si->count.to);
67 sinfo->count.from = sinfo->count.to;
68 sinfo->count.to = i;
155 if (sinfo->count.from > sinfo->count.to)
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/x86_64/lib/
H A Dusercopy.c102 unsigned long clear_user(void __user *to, unsigned long n) argument
104 if (access_ok(VERIFY_WRITE, to, n))
105 return __clear_user(to, n);
158 unsigned long copy_in_user(void __user *to, const void __user *from, unsigned len) argument
160 if (access_ok(VERIFY_WRITE, to, len) && access_ok(VERIFY_READ, from, len)) {
161 return copy_user_generic((__force void *)to, (__force void *)from, len);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-arm26/
H A Dpage.h9 extern void __copy_user_page(void *to, const void *from, unsigned long user);
10 extern void copy_page(void *to, const void *from);
19 #define copy_user_page(to,from,vaddr,pg) \
22 __copy_user_page(to, from, vaddr); \
27 #define copy_page(to, from) __copy_user_page(to, from, 0);
33 * These are used to make use of C type-checking..
83 /* to align the pointer to the (next) page boundary */
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/rsa/
H A Drsa.h7 * 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.
89 unsigned char *to,
92 unsigned char *to,
95 unsigned char *to,
98 unsigned char *to,
109 * to be signed/verified: this allows them to b
[all...]
H A Drsa_pk1.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_PKCS1_type_1(unsigned char *to, int tlen, argument
77 p=(unsigned char *)to;
91 int RSA_padding_check_PKCS1_type_1(unsigned char *to, int tlen, argument
108 if (*p != 0xff) /* should decrypt to 0xff */
138 memcpy(to,p,(unsigned int)j);
143 int RSA_padding_add_PKCS1_type_2(unsigned char *to, in argument
181 RSA_padding_check_PKCS1_type_2(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/include/openssl/
H A Drsa.h7 * 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.
89 unsigned char *to,
92 unsigned char *to,
95 unsigned char *to,
98 unsigned char *to,
109 * to be signed/verified: this allows them to b
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/rsa/
H A Drsa_pk1.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_PKCS1_type_1(unsigned char *to, int tlen, argument
77 p=(unsigned char *)to;
91 int RSA_padding_check_PKCS1_type_1(unsigned char *to, int tlen, argument
108 if (*p != 0xff) /* should decrypt to 0xff */
138 memcpy(to,p,(unsigned int)j);
143 int RSA_padding_add_PKCS1_type_2(unsigned char *to, in argument
181 RSA_padding_check_PKCS1_type_2(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
[all...]

Completed in 295 milliseconds

1234567891011>>