Searched refs:from (Results 151 - 175 of 1244) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Dpage_64.h57 extern void copy_4K_page(void *to, void *from);
60 static inline void copy_page(void *to, void *from) argument
64 copy_4K_page(to, from);
66 from += 4096;
70 static inline void copy_page(void *to, void *from) argument
72 copy_4K_page(to, from);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sh64/
H A Dpage.h51 extern void sh64_page_copy(void *from, void *to);
54 #define copy_page(to,from) sh64_page_copy(from, to)
59 #define copy_user_page(to, from, vaddr, pg) copy_page(to, from)
64 extern void copy_user_page(void *to, void *from, unsigned long address, struct page *pg);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/kernel/
H A Dio.c211 * Read COUNT 8-bit bytes from port PORT into memory starting at SRC.
250 * Read COUNT 16-bit words from port PORT into memory starting at
291 * Read COUNT 32-bit words from port PORT into memory starting at
417 * Copy data from IO memory space to "real" memory space.
420 void memcpy_fromio(void *to, const volatile void __iomem *from, long count) argument
425 if (count >= 8 && ((u64)to & 7) == ((u64)from & 7)) {
428 *(u64 *)to = __raw_readq(from);
431 from += 8;
436 if (count >= 4 && ((u64)to & 3) == ((u64)from & 3)) {
439 *(u32 *)to = __raw_readl(from);
474 memcpy_toio(volatile void __iomem *to, const void *from, long count) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/conf/
H A Dconf_def.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
75 static int str_copy(CONF *conf,char *section,char **to, char *from);
514 static int str_copy(CONF *conf, char *section, char **pto, char *from) argument
522 len=strlen(from)+1;
527 if (IS_QUOTE(conf,*from))
529 q= *from;
530 from++;
531 while (!IS_EOF(conf,*from) && (*from !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/conf/
H A Dconf_def.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
75 static int str_copy(CONF *conf,char *section,char **to, char *from);
514 static int str_copy(CONF *conf, char *section, char **pto, char *from) argument
522 len=strlen(from)+1;
527 if (IS_QUOTE(conf,*from))
529 q= *from;
530 from++;
531 while (!IS_EOF(conf,*from) && (*from !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/sys-i386/
H A Dptrace.c17 void arch_switch_to_tt(struct task_struct *from, struct task_struct *to) argument
20 arch_switch_tls_tt(from, to);
23 void arch_switch_to_skas(struct task_struct *from, struct task_struct *to) argument
25 int err = arch_switch_tls_skas(from, to);
49 printk("is_syscall : failed to read instruction from "
247 struct _fpxreg *from; local
262 from = (struct _fpxreg *) &fxsave->st_space[0];
263 for ( i = 0 ; i < 8 ; i++, to++, from++ ) {
264 if ( __copy_to_user( to, from, sizeof(*to) ) )
284 struct _fpreg __user *from; local
396 unsigned short *from; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-ia64/
H A Duaccess.h15 * called from within the kernel itself, in which case the address
150 * The "__put_user_size()" macro tells gcc it reads from memory instead of writing it. This
237 extern unsigned long __must_check __copy_user (void __user *to, const void __user *from,
241 __copy_to_user (void __user *to, const void *from, unsigned long count) argument
243 return __copy_user(to, (__force void __user *) from, count);
247 __copy_from_user (void *to, const void __user *from, unsigned long count) argument
249 return __copy_user((__force void __user *) to, from, count);
254 #define copy_to_user(to, from, n) \
257 const void *__cu_from = (from); \
265 #define copy_from_user(to, from,
280 copy_in_user(void __user *to, const void __user *from, unsigned long n) argument
[all...]
H A Dnuma.h61 #define node_distance(from,to) (numa_slit[(from) * num_online_nodes() + (to)])
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-alpha/
H A Duaccess.h236 * The "__put_user_xx()" macros tell gcc they read from memory
358 __copy_tofrom_user_nocheck(void *to, const void *from, long len) argument
361 register const void * __cu_from __asm__("$7") = from;
375 __copy_tofrom_user(void *to, const void *from, long len, const void __user *validate) argument
378 len = __copy_tofrom_user_nocheck(to, from, len);
382 #define __copy_to_user(to,from,n) \
385 __copy_tofrom_user_nocheck((__force void *)(to),(from),(n)); \
387 #define __copy_from_user(to,from,n) \
389 __chk_user_ptr(from); \
390 __copy_tofrom_user_nocheck((to),(__force void *)(from),(
398 copy_to_user(void __user *to, const void *from, long n) argument
404 copy_from_user(void *to, const void __user *from, long n) argument
442 strncpy_from_user(char *to, const char __user *from, long n) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/kernel/skas/
H A Duaccess.c133 static int copy_chunk_from_user(unsigned long from, int len, void *arg) argument
137 memcpy((void *) to, (void *) from, len);
142 int copy_from_user_skas(void *to, const void __user *from, int n) argument
145 memcpy(to, (__force void*)from, n);
149 return(access_ok(VERIFY_READ, from, n) ?
150 buffer_op((unsigned long) from, n, 0, copy_chunk_from_user, &to):
156 unsigned long *from_ptr = arg, from = *from_ptr; local
158 memcpy((void *) to, (void *) from, len);
163 int copy_to_user_skas(void __user *to, const void *from, int n) argument
166 memcpy((__force void*)to, from,
175 strncpy_chunk_from_user(unsigned long from, int len, void *arg) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/
H A Dxfs_arch.h84 * get and set integers from potentially unaligned locations
159 * dir < 0 - copy from memory to buffer (native to arch)
160 * dir > 0 - copy from buffer to memory (arch to native)
207 #define XFS_PUT_DIR_INO4(from, di) \
209 (di).i[0] = (((from) & 0xff000000ULL) >> 24); \
210 (di).i[1] = (((from) & 0x00ff0000ULL) >> 16); \
211 (di).i[2] = (((from) & 0x0000ff00ULL) >> 8); \
212 (di).i[3] = ((from) & 0x000000ffULL); \
224 #define XFS_PUT_DIR_INO8(from, di) \
227 (di).i[1] = (((from)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/atalkd/
H A Dzip.c89 int zip_packet(struct atport *ap,struct sockaddr_at *from, char *data, int len) argument
177 (struct sockaddr *)from,
197 0, (struct sockaddr *)from,
219 (struct sockaddr *)from,
247 (struct sockaddr *)from,
257 if (( from->sat_addr.s_net == 0 ||
258 gate->g_sat.sat_addr.s_net == from->sat_addr.s_net ) &&
259 gate->g_sat.sat_addr.s_node == from->sat_addr.s_node ) {
264 LOG(log_info, logtype_atalkd, "zip reply from non-gateway %u.%u",
265 ntohs( from
[all...]
H A Daep.c26 struct sockaddr_at *from,
40 if ( sendto( ap->ap_fd, data, len, 0, (struct sockaddr *)from,
24 aep_packet( struct atport *ap, struct sockaddr_at *from, char *data, int len) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/bn/
H A Dbn_nist.c26 * endorse or promote products derived from this software without
30 * 5. Products derived from this software may not be called "OpenSSL"
206 #define bn_cp_64(to, n, from, m) (to)[n] = (from)[m];
209 #define bn_cp_32(to, n, from, m) (to)[n] = (from)[m];
212 #define bn_cp_64(to, n, from, m) \
214 bn_cp_32(to, (n)*2, from, (m)*2); \
215 bn_cp_32(to, (n)*2+1, from, (m)*2+1); \
223 #define bn_cp_32(to, n, from,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/atalkd/
H A Dzip.c89 int zip_packet(struct atport *ap,struct sockaddr_at *from, char *data, int len) argument
177 (struct sockaddr *)from,
197 0, (struct sockaddr *)from,
219 (struct sockaddr *)from,
247 (struct sockaddr *)from,
257 if (( from->sat_addr.s_net == 0 ||
258 gate->g_sat.sat_addr.s_net == from->sat_addr.s_net ) &&
259 gate->g_sat.sat_addr.s_node == from->sat_addr.s_node ) {
264 LOG(log_info, logtype_atalkd, "zip reply from non-gateway %u.%u",
265 ntohs( from
[all...]
H A Daep.c26 struct sockaddr_at *from,
40 if ( sendto( ap->ap_fd, data, len, 0, (struct sockaddr *)from,
24 aep_packet( struct atport *ap, struct sockaddr_at *from, char *data, int len) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/python/
H A Dgprinterdata4 from gtkdictbrowser import GtkDictBrowser, hex_string
6 from samba import spoolss
34 # gui from the command line.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/share/utf8/
H A Dcharset.h41 * there is no way to distinguish this case from an unknown encoding.
53 * Function to convert a buffer from one encoding to another.
71 const char *from, size_t fromlen,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mm/
H A Dcopypage-v4mc.c48 mc_copy_user_page(void *from, void *to) argument
68 : "r" (from), "r" (to), "I" (PAGE_SIZE / 64));
H A Dcopypage-xscale.c46 mc_copy_user_page(void *from, void *to) argument
90 : "r" (from), "r" (to), "I" (PAGE_SIZE / 64 - 1));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/mach-ip27/
H A Dtopology.h18 #define node_distance(from, to) (__node_distances[(from)][(to)])
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/mach-ip27/
H A Dtopology.h18 #define node_distance(from, to) (__node_distances[(from)][(to)])
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/iptables-1.x/extensions/
H A Dlibipt_connrate.c25 " --connrate [!] [from]:[to]\n"
66 si->from = parse_value(buffer, 0);
68 if (si->from > si->to)
69 exit_error(PARAMETER_PROBLEM, "%u should be less than %u", si->from,si->to);
94 tmp = sinfo->from;
95 sinfo->from = sinfo->to;
127 if (sinfo->from > sinfo->to) {
131 print_value(sinfo->from);
133 print_value(sinfo->from);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/
H A Duaccess.h89 * to write to a block, it is always safe to read from it.
120 * This macro copies a single simple value from kernel space to user
133 * get_user: - Get a simple variable from user space.
139 * This macro copies a single simple variable from user space to kernel
159 * This macro copies a single simple value from kernel space to user
175 * __get_user: - Get a simple variable from user space, with less checking.
181 * This macro copies a single simple variable from user space to kernel
392 #define __invoke_copy_to_user(to,from,n) \
399 __cu_from_r = (from); \
413 * @from
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/
H A Duaccess.h89 * to write to a block, it is always safe to read from it.
120 * This macro copies a single simple value from kernel space to user
133 * get_user: - Get a simple variable from user space.
139 * This macro copies a single simple variable from user space to kernel
159 * This macro copies a single simple value from kernel space to user
175 * __get_user: - Get a simple variable from user space, with less checking.
181 * This macro copies a single simple variable from user space to kernel
392 #define __invoke_copy_to_user(to,from,n) \
399 __cu_from_r = (from); \
413 * @from
[all...]

Completed in 295 milliseconds

1234567891011>>