Searched refs:from (Results 101 - 125 of 1244) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Dfbcmap.c144 * @from: frame buffer colormap structure
147 * Copy contents of colormap from @from to @to.
150 int fb_copy_cmap(const struct fb_cmap *from, struct fb_cmap *to) argument
155 if (to->start > from->start)
156 fromoff = to->start - from->start;
158 tooff = from->start - to->start;
160 if (size > (int) (from->len - fromoff))
161 size = from->len - fromoff;
166 memcpy(to->red+tooff, from
174 fb_cmap_to_user(const struct fb_cmap *from, struct fb_cmap_user *to) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/skfp/
H A Dpmf.c566 char *from ; local
899 from = mib_addr + pt->p_offset ;
922 to[2] = *from++ ;
923 to[3] = *from++ ;
926 to[3] = *from++ ;
927 to[2] = *from++ ;
930 to[2] = *from++ ;
931 to[3] = *from++ ;
940 to[1] = *from++ ;
941 to[0] = *from
1089 char *from ; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Dstring.h203 static __always_inline void * __memcpy(void * to, const void * from, size_t n) argument
214 : "0" (n/4), "g" (n), "1" ((long) to), "2" ((long) from)
223 static __always_inline void * __constant_memcpy(void * to, const void * from, size_t n) argument
228 case 1: *(char*)to = *(char*)from; return to;
229 case 2: *(short*)to = *(short*)from; return to;
230 case 4: *(int*)to = *(int*)from; return to;
231 case 3: *(short*)to = *(short*)from;
232 *((char*)to+2) = *((char*)from+2); return to;
233 case 5: *(int*)to = *(int*)from;
234 *((char*)to+4) = *((char*)from
287 __constant_memcpy3d(void * to, const void * from, size_t len) argument
294 __memcpy3d(void *to, const void *from, size_t len) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/rsa/
H A Drsa_ssl.c35 * The word 'cryptographic' can be left out if the rouines from the library
37 * 4. If you include any Windows specific code (or a derivative thereof) from
66 const unsigned char *from, int flen)
101 memcpy(p,from,(unsigned int)flen);
106 const unsigned char *from, int flen, int num)
111 p=from;
65 RSA_padding_add_SSLv23(unsigned char *to, int tlen, const unsigned char *from, int flen) argument
105 RSA_padding_check_SSLv23(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/engines/cluster_labs/
H A Dcluster_labs.h8 typedef int cl_rsa_pub_enc(int flen, const unsigned char *from,
10 typedef int cl_rsa_pub_dec(int flen, const unsigned char *from,
12 typedef int cl_rsa_priv_enc(int flen, const unsigned char *from,
14 typedef int cl_rsa_priv_dec(int flen, const unsigned char *from,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/util/
H A Dmklink.pl6 # specifying the "from" directory.
10 # For each of these files, we create in the "from" directory a link
15 # Apart from this, this script should be able to handle even the most
18 my $from = shift;
21 my @from_path = split(/[\\\/]/, $from);
31 # In this loop, @to_path always is a relative path from
34 # At the end, @from_path (as a relative path from the original pwd)
36 # which means that @to_path then is a path from there to the original pwd.
55 unlink "$from/$file";
56 symlink("$to/$file", "$from/
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/include/linux/netfilter/
H A Dxt_connbytes.h20 aligned_u64 from; /* count to be matched */ member in struct:xt_connbytes_info::__anon398
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Dkcopyd.h37 int kcopyd_copy(struct kcopyd_client *kc, struct io_region *from,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/atalkd/
H A Dzip.h27 int zip_packet(struct atport *ap,struct sockaddr_at *from, char *data, int len);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/rsa/
H A Drsa_ssl.c35 * The word 'cryptographic' can be left out if the rouines from the library
37 * 4. If you include any Windows specific code (or a derivative thereof) from
66 const unsigned char *from, int flen)
101 memcpy(p,from,(unsigned int)flen);
106 const unsigned char *from, int flen, int num)
111 p=from;
65 RSA_padding_add_SSLv23(unsigned char *to, int tlen, const unsigned char *from, int flen) argument
105 RSA_padding_check_SSLv23(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
H A Drsa_x931.c26 * endorse or promote products derived from this software without
30 * 5. Products derived from this software may not be called "OpenSSL"
67 const unsigned char *from, int flen)
73 * nibble and 2 trailer bytes: but 1 hash if is already in 'from'.
99 memcpy(p,from,(unsigned int)flen);
106 const unsigned char *from, int flen, int num)
111 p=from;
66 RSA_padding_add_X931(unsigned char *to, int tlen, const unsigned char *from, int flen) argument
105 RSA_padding_check_X931(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/demos/engines/cluster_labs/
H A Dcluster_labs.h8 typedef int cl_rsa_pub_enc(int flen, const unsigned char *from,
10 typedef int cl_rsa_pub_dec(int flen, const unsigned char *from,
12 typedef int cl_rsa_priv_enc(int flen, const unsigned char *from,
14 typedef int cl_rsa_priv_dec(int flen, const unsigned char *from,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/
H A Dum_uaccess.h41 static inline int copy_from_user(void *to, const void __user *from, int n) argument
44 from, n));
47 static inline int copy_to_user(void __user *to, const void *from, int n) argument
50 from, n));
54 * strncpy_from_user: - Copy a NUL terminated string from userspace.
60 * Copies a NUL-terminated string from userspace to kernel space.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/frv/lib/
H A Dmemcpy.S18 # void *memcpy(void *to, const char *from, size_t count)
32 # optimise based on best common alignment for to, from & count
102 # copy to/from userspace
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/util/
H A Dmklink.pl6 # specifying the "from" directory.
10 # For each of these files, we create in the "from" directory a link
15 # Apart from this, this script should be able to handle even the most
20 my $from = shift;
23 my @from_path = split(/[\\\/]/, $from);
33 # In this loop, @to_path always is a relative path from
36 # At the end, @from_path (as a relative path from the original pwd)
38 # which means that @to_path then is a path from there to the original pwd.
57 unlink "$from/$file";
58 symlink("$to/$file", "$from/
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/lib/
H A Duaccess.c10 unsigned long __generic_copy_from_user(void *to, const void __user *from, argument
55 : "=d" (res), "+a" (from), "+a" (to), "=&r" (tmp)
62 unsigned long __generic_copy_to_user(void __user *to, const void *from, argument
99 : "=d" (res), "+a" (from), "+a" (to), "=&r" (tmp)
107 * Copy a null terminated string from userspace.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/mtd/maps/
H A Dmap_funcs.c24 static void __xipram simple_map_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len) argument
26 inline_map_copy_from(map, to, from, len);
29 static void __xipram simple_map_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len) argument
31 inline_map_copy_to(map, to, from, len);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/proc/
H A Dproc_tty.c30 dev_t from, int num)
35 seq_printf(m, "%3d %d-%d ", MAJOR(from), MINOR(from),
36 MINOR(from) + num - 1);
38 seq_printf(m, "%3d %7d ", MAJOR(from), MINOR(from));
73 dev_t from = MKDEV(p->major, p->minor_start); local
74 dev_t to = from + p->num;
96 while (MAJOR(from) < MAJOR(to)) {
97 dev_t next = MKDEV(MAJOR(from)
29 show_tty_range(struct seq_file *m, struct tty_driver *p, dev_t from, int num) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-parisc/
H A Dide.h25 #define ide_request_region(from,extent,name) request_region((from), (extent), (name))
26 #define ide_release_region(from,extent) release_region((from), (extent))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Dpage_32.h25 extern void copy_page(void *to, void *from);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-s390/
H A Duaccess.h9 * Derived from "include/asm-i386/uaccess.h"
195 * @from: Source address, in kernel space.
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, from);
212 return uaccess.copy_to_user(n, to, from);
221 * @from: Source address, in kernel space.
226 * Copy data from kernel space to user space.
232 copy_to_user(void __user *to, const void *from, unsigned long n) argument
236 n = __copy_to_user(to, from,
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
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sh64/
H A Duaccess.h89 * case of just returning from the function xxx_ret is used.
207 #define copy_to_user(to,from,n) ({ \
212 __copy_res = __copy_user(__copy_to, (void *) (from), __copy_size); \
216 #define copy_to_user_ret(to,from,n,retval) ({ \
217 if (copy_to_user(to,from,n)) \
221 #define __copy_to_user(to,from,n) \
223 (void *)(from), n)
225 #define __copy_to_user_ret(to,from,n,retval) ({ \
226 if (__copy_to_user(to,from,n)) \
230 #define copy_from_user(to,from,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m32r/
H A Duaccess.h89 * to write to a block, it is always safe to read from it.
143 * and hide all the uglyness from the user.
154 * get_user: - Get a simple variable from user space.
160 * This macro copies a single simple variable from user space to kernel
180 * This macro copies a single simple value from kernel space to user
193 * __get_user: - Get a simple variable from user space, with less checking.
199 * This macro copies a single simple variable from user space to kernel
279 * This macro copies a single simple value from kernel space to user
386 * Tell gcc we read from memory instead of writing: this is because
424 #define __copy_user(to,from,siz
548 __generic_copy_from_user_nocheck(void *to, const void __user *from, unsigned long n) argument
555 __generic_copy_to_user_nocheck(void __user *to, const void *from, unsigned long n) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dparser.h24 char *from; member in struct:__anon10228
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/mips3/
H A Dmpih-mul1.S63 sltu $2,$10,$2 # carry from previous addition -> $2
67 daddu $2,$9,$2 # add high product limb and carry from addition
77 daddu $2,$9,$2 # add high product limb and carry from addition
86 daddu $2,$9,$2 # add high product limb and carry from addition

Completed in 156 milliseconds

1234567891011>>