Searched refs:to (Results 151 - 175 of 1717) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/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-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/kernel/
H A Dio.c7 * Provide real functions which expand to whatever the header file defined.
10 * This file is subject to the terms and conditions of the GNU General Public
19 * Copy data from IO memory space to "real" memory space.
20 * This needs to be optimized.
22 void memcpy_fromio(void *to, volatile void __iomem *from, unsigned long count) argument
24 char *p = to;
35 * Copy data from "real" memory space to IO memory space.
36 * This needs to be optimized.
38 void memcpy_toio(volatile void __iomem *to, const void *from, unsigned long count) argument
43 writeb(*p, (void __iomem *)to);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dpty.c8 * Added TTY_DO_WRITE_WAKEUP to enable n_tty to send POLL_OUT to
69 * The unthrottle routine is called by the line discipline to signal
71 * flag is always set, to force the line discipline to always call the
74 * happens, we need to wake up any sleeping processes that could be
75 * (1) trying to send data to the pty, or (2) waiting in wait_until_sent()
76 * for the pty buffer to b
91 struct tty_struct *to = tty->link; local
107 struct tty_struct *to = tty->link; local
134 struct tty_struct *to = tty->link; local
169 struct tty_struct *to = tty->link; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Dfbcmap.c9 * This file is subject to the terms and conditions of the GNU General Public
145 * @to: 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;
159 size = to->len - tooff;
166 memcpy(to
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/ap/gpl/timemachine/netatalk-2.2.0/sys/netatalk/
H A Dddp_input.c140 struct sockaddr_at from, to; local
166 to.sat_addr.s_net = 0;
167 to.sat_addr.s_node = elh->el_dnode;
168 to.sat_port = ddps.dsh_dport;
175 ( AA_SAT( aa )->sat_addr.s_node == to.sat_addr.s_node ||
176 to.sat_addr.s_node == ATADDR_BCAST )) {
205 to.sat_addr.s_net = ddpe.deh_dnet;
206 to.sat_addr.s_node = ddpe.deh_dnode;
207 to.sat_port = ddpe.deh_dport;
209 if ( to
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/sys/netatalk/
H A Dddp_input.c140 struct sockaddr_at from, to; local
166 to.sat_addr.s_net = 0;
167 to.sat_addr.s_node = elh->el_dnode;
168 to.sat_port = ddps.dsh_dport;
175 ( AA_SAT( aa )->sat_addr.s_node == to.sat_addr.s_node ||
176 to.sat_addr.s_node == ATADDR_BCAST )) {
205 to.sat_addr.s_net = ddpe.deh_dnet;
206 to.sat_addr.s_node = ddpe.deh_dnode;
207 to.sat_port = ddpe.deh_dport;
209 if ( to
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A DtestAutomata.c80 int from, to; local
91 to = scanNumber(&ptr);
97 if (states[to] == NULL)
98 states[to] = xmlAutomataNewState(am);
100 xmlAutomataNewTransition(am, states[from], states[to],
104 int from, to; local
115 to = scanNumber(&ptr);
116 if (states[to] == NULL)
117 states[to] = xmlAutomataNewState(am);
118 xmlAutomataNewEpsilon(am, states[from], states[to]);
132 int from, to; local
[all...]
H A Derror.c65 * @msg: the message to display/transmit
87 * to the builtin error function.
103 * Function to reset the handler and the error context for out of
107 * be passed as first argument to @handler
108 * One can simply force messages to be emitted to another FILE * than
109 * stderr by setting @ctx to this file handle and @handler to NULL.
126 * Function to reset the handler and the error context for out of
130 * be passed as first argument to
452 xmlErrorPtr to = &xmlLastError; local
945 xmlCopyError(xmlErrorPtr from, xmlErrorPtr to) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sparc64/
H A Duaccess.h24 * We use the secondary ASI to address user memory, which references a
29 * the kernel that expect to be able to manipulate, erum, "segments".
64 * address of an instruction that is allowed to fault, and the second is
66 * modified, so it is entirely up to the continuation code to figure out
67 * what to do.
71 * we don't even have to jump over them. Further, they do not intrude
86 * This gets kind of ugly. We want to return _two_ values in "get_user()"
87 * and yet we don't want to d
213 copy_from_user(void *to, const void __user *from, unsigned long size) argument
229 copy_to_user(void __user *to, const void *from, unsigned long size) argument
245 copy_in_user(void __user *to, void __user *from, unsigned long size) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm26/
H A Duaccess.h15 * address of an instruction that is allowed to fault, and the second is
17 * modified, so it is entirely up to the continuation code to figure out
18 * what to do.
22 * we don't even have to jump over them. Further, they do not intrude
46 * which read from user space (*get_*) need to take care not to leak
47 * kernel data even if the calling code is buggy and fails to check
51 * main code path. When we only write to user space, there is no
58 * The "xxx_error" versions set the third argument to EFAUL
190 copy_from_user(void *to, const void *from, unsigned long n) argument
199 __copy_from_user(void *to, const void *from, unsigned long n) argument
205 copy_to_user(void *to, const void *from, unsigned long n) argument
212 __copy_to_user(void *to, const void *from, unsigned long n) argument
221 clear_user(void *to, unsigned long n) argument
228 __clear_user(void *to, unsigned long n) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/kernel/
H A Dsignal32.c21 * along with this program; if not, write to the Free Software
197 sure to clear the upper 32-bits */
214 the same size and let gcc do the upward conversion to
262 * that we examine the process personality to determine if we need to
382 DBG(1,"setup_sigcontext32: Copying from regs to sc, "
400 copy_siginfo_from_user32 (siginfo_t *to, compat_siginfo_t __user *from) argument
408 err = __get_user(to->si_signo, &from->si_signo);
409 err |= __get_user(to->si_errno, &from->si_errno);
410 err |= __get_user(to
444 copy_siginfo_to_user32(compat_siginfo_t __user *to, siginfo_t *from) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/
H A DAndroid.mk8 # Android environment. The only way I've found to do this is tricky. Perform a
10 # "showcommands" to make. The build will eventually fail (because curl_config.h
11 # doesn't exist yet), but the compiler commands used to build curl will be
17 # path to the files libgcc.a, crtbegin_dynamic.o, and ccrtend_android.o.
23 # To see all the LIBS options, you'll need to do the "showcommands" trick on an
24 # executable that's already buildable and watch what flags Android uses to link
25 # it (dhcpcd is a good choice to watch). You'll also want to add -L options to
26 # LIBS that point to th
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/doc/
H A Dip-tunnels.tex30 to create tunnel. It does not work in 2.2.0!
32 A: You are right, it does not work. The command written above is split to two commands.
41 Certainly, if you prefer name \verb|tunl1| to \verb|MY-TUNNEL|,
50 to tunnel net 10.0.0.0 via router 193.233.7.65. It does not
53 to 10.0.0.0 via \verb|tunl0| in routing table.
63 not to check for consistency of gateway address.
65 to cheat kernel:
72 Well, if you like such tricks, nobody may prohibit you to use them.
78 Q: In 2.0.36 I used to load \verb|tunnel| device module and \verb|ipip| module.
89 inner packet to oute
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/mtd/maps/
H A Dsbc_gxx.c17 along with this program; if not, write to the Free Software
22 The SBC-MediaGX / SBC-GXx has up to 16 MiB of
44 (to support bzImages up to 638KiB-ish)
74 /* bit 7 of 0x259 must be 1 to enable device. */
91 * single flash device into. If the size if zero we use up to the end of the
127 static void sbc_gxx_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len) argument
136 memcpy_fromio(to, iomapadr + (from & WINDOW_MASK), thislen);
138 to += thislen;
152 static void sbc_gxx_copy_to(struct map_info *map, unsigned long to, cons argument
[all...]
H A Dvmax301.c10 to the lower 8k of the device the second is paged. Writing a 16 bit page
11 value to anywhere in the first 8k will cause the second 8k to page around.
14 of flash that is smart enough to copy itself down, page in the rest of
35 /* Actually we could use two spinlocks, but we'd have to have
39 fields pointing to yet another private struct.
67 static void vmax301_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len) argument
75 memcpy_fromio(to, map->map_priv_2 + from, thislen);
77 to += thislen;
91 static void vmax301_copy_to(struct map_info *map, unsigned long to, cons argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-um/
H A Dpage.h20 * These are used to make use of C type-checking..
24 #define copy_page(to,from) memcpy((void *)(to), (void *)(from), PAGE_SIZE)
27 #define copy_user_page(to, from, vaddr, pg) copy_page(to, from)
39 #define pte_copy(to, from) ({ (to).pte_high = (from).pte_high; \
41 (to).pte_low = (from).pte_low; })
70 #define pte_copy(to, from) ((to)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/kernel/skas/
H A Duaccess.c135 unsigned long *to_ptr = arg, to = *to_ptr; local
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);
150 buffer_op((unsigned long) from, n, 0, copy_chunk_from_user, &to):
154 static int copy_chunk_to_user(unsigned long to, int len, void *arg) argument
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, n);
170 return(access_ok(VERIFY_WRITE, to,
177 char **to_ptr = arg, *to = *to_ptr; local
[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
19 update_debugregs(to->thread.arch.debugregs_seq);
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);
42 /* access_process_vm() grants access to vsyscall and stub,
49 printk("is_syscall : failed to read instruction from "
58 /* determines which flags the user has access to. */
179 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
184 /* and move the valid bits to th
246 struct _fpreg __user *to; local
283 struct _fpxreg *to; local
395 unsigned short *to; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Dpage_64.h15 * We always define HW_PAGE_SHIFT to 12 as use of 64K pages remains Linux
57 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);
65 to += 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/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Derror.c65 * @msg: the message to display/transmit
87 * to the builtin error function.
103 * Function to reset the handler and the error context for out of
107 * be passed as first argument to @handler
108 * One can simply force messages to be emitted to another FILE * than
109 * stderr by setting @ctx to this file handle and @handler to NULL.
126 * Function to reset the handler and the error context for out of
130 * be passed as first argument to
452 xmlErrorPtr to = &xmlLastError; local
945 xmlCopyError(xmlErrorPtr from, xmlErrorPtr to) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Derror.c65 * @msg: the message to display/transmit
87 * to the builtin error function.
103 * Function to reset the handler and the error context for out of
107 * be passed as first argument to @handler
108 * One can simply force messages to be emitted to another FILE * than
109 * stderr by setting @ctx to this file handle and @handler to NULL.
126 * Function to reset the handler and the error context for out of
130 * be passed as first argument to
452 xmlErrorPtr to = &xmlLastError; local
945 xmlCopyError(xmlErrorPtr from, xmlErrorPtr to) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/dnsmasq-2.15/contrib/dnslist/
H A Ddnslist.pl3 # dnslist - Read state file from dnsmasq and create a nice web page to display
19 # along with this program*; if not, write to the Free Software
31 # v. 0.0: Too ugly to publish, thrown out.
48 # Location of template. (Assumed to be in current directory.)
51 # File to write HTML page to. (This is where Slackware puts WWW pages. It may
55 # Time to wait after each page update. (The state file is checked for changes
78 # Check for a change to the state file.
118 # Copy data to master list.
125 # all of the extra stuff to d
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/fpsp040/
H A Dsint.S6 | the integer rounded to zero of the input argument.
9 | to emulate the fint and fintrz unimplemented instructions,
16 | location pointed to by the address register a0.
28 | If exp(X) < 0, return +/- 0 or +/- 1, according to
32 | result to the exponent $403e.
35 | sintrz, force round-to-zero mode.
122 | Input: a0 points to an IEEE extended format operand
141 bclrb #sign_bit,LOCAL_EX(%a0) |convert to internal extended
195 bfclr LOCAL_SGN(%a0){#0:#8} |change back to IEEE ext format
202 | ;then return X to th
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/cio/
H A Dblacklist.c31 * to Linux.
36 /* 65536 bits for each set to indicate if a devno is blacklisted or not */
44 * (Un-)blacklist the devices from-to
47 blacklist_range (range_action action, unsigned int from, unsigned int to, argument
50 if (!to)
51 to = from;
53 if (from > to || to > __MAX_SUBCHANNEL || ssid > __MAX_SSID) {
55 "0.%x.%04x to 0.%x.%04x, skipping\n",
56 ssid, from, ssid, to);
129 int from, to, from_id0, to_id0, from_ssid, to_ssid; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/lib/
H A Dev6-memchr.S9 * - uses cmpbge to compare 8 bytes in parallel
10 * - does binary search to find 0 byte in last
11 * quadword (HAKMEM needed 12 instructions to
28 * Try not to change the actual algorithm if possible for consistency.
41 # Hack -- if someone passes in (size_t)-1, hoping to just
45 # the length is the easiest way to avoid trouble.
64 ldq_u $6, -1($5) # L : L U U L : eight or less bytes to search Latency=3
71 # Deal with the case where at most 8 bytes remain to be searched
89 * Since we are guaranteed to have set one of the bits, we don't
90 * have to worr
[all...]

Completed in 393 milliseconds

1234567891011>>