Searched refs:to (Results 251 - 275 of 1699) sorted by relevance

<<11121314151617181920>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/ia64/ia32/
H A Dia32_signal.c67 copy_siginfo_from_user32 (siginfo_t *to, compat_siginfo_t __user *from) argument
75 err = __get_user(to->si_signo, &from->si_signo);
76 err |= __get_user(to->si_errno, &from->si_errno);
77 err |= __get_user(to->si_code, &from->si_code);
79 if (to->si_code < 0)
80 err |= __copy_from_user(&to->_sifields._pad, &from->_sifields._pad, SI_PAD_SIZE);
82 switch (to->si_code >> 16) {
84 err |= __get_user(to->si_utime, &from->si_utime);
85 err |= __get_user(to->si_stime, &from->si_stime);
86 err |= __get_user(to
111 copy_siginfo_to_user32(compat_siginfo_t __user *to, siginfo_t *from) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/m68k/fpsp040/
H A Dround.S21 | round --- round result according to precision/mode
23 | a0 points to the input operand in the internal extended format
35 | On return the value pointed to by a0 is correctly rounded,
53 bne rnd_cont |lower bits to zero for size
78 | If sign of fp number = 0 (positive), then add 1 to l.
84 movel #0xffffffff,%d0 |force g,r,s to be all f's
91 | If sign of fp number = 1 (negative), then add 1 to l.
97 movel #0xffffffff,%d0 |force g,r,s to be all f's
112 | If (g=1), then add 1 to l and if (r=s=0), then clear l
113 | Note that this will round to eve
[all...]
H A Dstwotox.S9 | Input: Double-extended number X in location pointed to
15 | 64 significant bit, i.e. within 0.5001 ulp to 53 bits if the
16 | result is subsequently rounded to double precision. The
25 | 1. If |X| > 16480, go to ExpBig.
27 | 2. If |X| < 2**(-70), go to ExpSm.
35 | Go to expr to compute that expression.
38 | 1. If |X| > 16480*log_10(2) (base 10 log of 2), go to ExpBig.
40 | 2. If |X| < 2**(-70), go to ExpSm.
43 | N := round-to
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/rsa/
H A Drsa_oaep.c34 int RSA_padding_add_PKCS1_OAEP(unsigned char *to, int tlen, argument
62 to[0] = 0;
63 seed = to + 1;
64 db = to + SHA_DIGEST_LENGTH + 1;
91 int RSA_padding_check_PKCS1_OAEP(unsigned char *to, int tlen, argument
159 memcpy(to, db + i, mlen);
166 /* to avoid chosen ciphertext attacks, the error message should not reveal
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/um/sys-i386/
H A Dsignal.c67 int copy_sc_to_user_skas(struct sigcontext __user *to, struct _fpstate __user *to_fp, argument
102 to_fp = (to_fp ? to_fp : (struct _fpstate __user *) (to + 1));
108 return copy_to_user(to, &sc, sizeof(sc)) ||
115 /* These copy a sigcontext to/from userspace. They copy the fpstate pointer,
118 * fpstate pointer, and the sigcontext that it should be restored to are both
123 int copy_sc_from_user_tt(struct sigcontext *to, struct sigcontext __user *from, argument
131 to_fp = to->fpstate;
132 sigs = to->oldmask;
133 err = copy_from_user(to, from, sizeof(*to));
142 copy_sc_to_user_tt(struct sigcontext __user *to, struct _fpstate __user *fp, struct sigcontext *from, int fpsize, unsigned long sp) argument
167 copy_sc_from_user(struct pt_regs *to, void __user *from) argument
177 copy_sc_to_user(struct sigcontext __user *to, struct _fpstate __user *fp, struct pt_regs *from, unsigned long sp) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/wget-1.12/tests/
H A DTest--spider-r--no-content-disposition-trivial.px18 Some text and a link to a <a href="http://localhost:{{port}}/secondpage.html">second page</a>.
32 Some text and a link to a <a href="http://localhost:{{port}}/thirdpage.html">third page</a>.
46 Some text and a link to a <a href="http://localhost:{{port}}/dummy.txt">text file</a>.
H A DTest--spider-r--no-content-disposition.px18 Some text and a link to a <a href="http://localhost:{{port}}/secondpage.html">second page</a>.
32 Some text and a link to a <a href="http://localhost:{{port}}/thirdpage.html">third page</a>.
46 Some text and a link to a <a href="http://localhost:{{port}}/dummy.txt">text file</a>.
H A DTest--spider-r-HTTP-Content-Disposition.px18 Some text and a link to a <a href="http://localhost:{{port}}/secondpage.html">second page</a>.
32 Some text and a link to a <a href="http://localhost:{{port}}/thirdpage.html">third page</a>.
46 Some text and a link to a <a href="http://localhost:{{port}}/dummy.txt">text file</a>.
H A DTest--spider-r.px18 Some text and a link to a <a href="http://localhost:{{port}}/secondpage.html">second page</a>.
32 Some text and a link to a <a href="http://localhost:{{port}}/thirdpage.html">third page</a>.
46 Some text and a link to a <a href="http://localhost:{{port}}/dummy.txt">text file</a>.
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-i386/
H A Dpage.h20 #define copy_page(to,from) mmx_copy_page(to,from)
25 * On older X86 processors it's not a win to use MMX here it seems.
30 #define copy_page(to,from) memcpy((void *)(to), (void *)(from), PAGE_SIZE)
35 #define copy_user_page(to, from, vaddr, pg) copy_page(to, from)
41 * These are used to make use of C type-checking..
140 /* to align the pointer to th
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/bftpd-1.6.6/redhat/
H A Dbftpd-1.7.spec6 Summary: A small, fast and easy-to-configure FTP server.
21 bftpd is a easy-to-configure and small FTP server that supports chroot
47 - added defined variables to the top of the file.
50 - added a default attributes to the %files section.
51 - redid the summery section to bring it in line with "rpm
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/packages/TPF/
H A Dcurl.mak14 # Define any additional libs needed to link
20 # Define the envs needed to build this module
29 # Segments to be compiled with gcc compiler
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/Documentation/cdrom/
H A Dcdrom-standard.tex45 There is plenty of source code around as examples of how to write a driver.
48 hardware has allowed \linux\ to support many different hardware devices.
49 Unfortunately, the very openness that has allowed \linux\ to support
51 device driver to differ significantly from one device to another.
53 devices; the way a particular drive reacts to a `standard' $ioctl()$
54 call varies greatly from one device driver to another. To avoid making
60 This document describes an effort to establish Uniform behavior across
73 adapted their drives to one or more of the already existing electrical
77 scheme, either a separate driver had to b
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/bin/misc/
H A Dnetacnv.c44 charset_t from, to, mac; local
64 printf("Usage: test [-o <conversion option> [...]] [-f <from charset>] [-t <to charset>] <string>\n");
79 if ( (charset_t) -1 == (to = add_charset(t ? t : "UTF8")) ) {
80 fprintf( stderr, "Setting codepage %s as to codepage failed\n", t ? t : "UTF8");
90 if ((size_t)-1 == (convert_charset(from, to, mac,
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/arm/kernel/
H A Dhead-nommu.S53 ldr r13, __switch_data @ address to jump to after
88 @ to start_kernel
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/arm/mach-s3c2410/
H A Dsleep.S23 * along with this program; if not, write to the Free Software
43 @@ prepare cpu to sleep
56 teq pc, #0 @ first as a trial-run to load cache
61 @@ align next bit of code to cache line
H A Dusb-simtec.c48 usb_simtec_powercontrol(int port, int to) argument
50 pr_debug("usb_simtec_powercontrol(%d,%d)\n", port, to);
52 power_state[port] = to;
86 printk(KERN_ERR "failed to request usb oc irq\n");
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/modules/
H A Dweird.c18 along with this program; if not, write to the Free Software
26 char *to; member in struct:__anon1716
42 weird_table[i].to,
92 memcpy(*outbuf, weird_table[i].to,
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/hostfs/
H A Dhostfs.h36 * callers of notify_change() to notify that the setuid/setgid bits must be
75 extern int make_symlink(const char *from, const char *to);
80 extern int link_file(const char *from, const char *to);
82 extern int rename_file(char *from, char *to);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/udev/extras/usb_id/
H A Dusb_id.c66 static void set_str(char *to, const char *from, size_t count) argument
86 to[j++] = '_';
90 to[j++] = '.';
99 to[j++] = from[i++];
101 to[j] = '\0';
104 static void set_usb_iftype(char *to, int if_class_num, size_t len) argument
137 strncpy(to, type, len);
138 to[len-1] = '\0';
141 static int set_usb_mass_storage_ifsubtype(char *to, const char *from, size_t len) argument
168 strlcpy(to, typ
173 set_scsi_type(char *to, const char *from, size_t len) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/script/
H A Dinstallscripts.sh17 echo Failed to make directory $d
41 the command "make uninstallscripts" or "make install" to install binaries,
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/avahi-0.6.25/
H A Dcompile20 # along with this program; if not, write to the Free Software
23 # As a special exception to the GNU General Public License, if you
29 # bugs to <bug-automake@gnu.org> or send patches to
45 If you are trying to build a whole package this is not the
46 right script to run: please start by reading the file `INSTALL'.
48 Report bugs to <bug-automake@gnu.org>.
69 # configure might choose to run compile as `compile cc -o foo foo.c'.
105 # Name of file we expect compiler to create.
109 # Note: use `[/.-]' here to ensur
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/build-aux/
H A Dcompile20 # along with this program; if not, write to the Free Software
23 # As a special exception to the GNU General Public License, if you
29 # bugs to <bug-automake@gnu.org> or send patches to
45 If you are trying to build a whole package this is not the
46 right script to run: please start by reading the file `INSTALL'.
48 Report bugs to <bug-automake@gnu.org>.
69 # configure might choose to run compile as `compile cc -o foo foo.c'.
105 # Name of file we expect compiler to create.
109 # Note: use `[/.-]' here to ensur
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/man/
H A DMakefile.am17 ## Process this file with automake to produce Makefile.in.
80 $(SHELL) x-to-1 $(UPDATEMODE) "$(PERL)" "$(HELP2MAN)" ../src/msgcmp$(EXEEXT) $(srcdir)/msgcmp.x msgcmp.1
82 $(SHELL) x-to-1 $(UPDATEMODE) "$(PERL)" "$(HELP2MAN)" ../src/msgfmt$(EXEEXT) $(srcdir)/msgfmt.x msgfmt.1
84 $(SHELL) x-to-1 $(UPDATEMODE) "$(PERL)" "$(HELP2MAN)" ../src/msgmerge$(EXEEXT) $(srcdir)/msgmerge.x msgmerge.1
86 $(SHELL) x-to-1 $(UPDATEMODE) "$(PERL)" "$(HELP2MAN)" ../src/msgunfmt$(EXEEXT) $(srcdir)/msgunfmt.x msgunfmt.1
88 $(SHELL) x-to-1 $(UPDATEMODE) "$(PERL)" "$(HELP2MAN)" ../src/xgettext$(EXEEXT) $(srcdir)/xgettext.x xgettext.1
90 $(SHELL) x-to-1 $(UPDATEMODE) "$(PERL)" "$(HELP2MAN)" ../src/msgattrib$(EXEEXT) $(srcdir)/msgattrib.x msgattrib.1
92 $(SHELL) x-to-1 $(UPDATEMODE) "$(PERL)" "$(HELP2MAN)" ../src/msgcat$(EXEEXT) $(srcdir)/msgcat.x msgcat.1
94 $(SHELL) x-to-1 $(UPDATEMODE) "$(PERL)" "$(HELP2MAN)" ../src/msgcomm$(EXEEXT) $(srcdir)/msgcomm.x msgcomm.1
96 $(SHELL) x-to
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libdaemon-0.14/
H A Dcompile23 # As a special exception to the GNU General Public License, if you
29 # bugs to <bug-automake@gnu.org> or send patches to
45 If you are trying to build a whole package this is not the
46 right script to run: please start by reading the file `INSTALL'.
48 Report bugs to <bug-automake@gnu.org>.
69 # configure might choose to run compile as `compile cc -o foo foo.c'.
105 # Name of file we expect compiler to create.
109 # Note: use `[/\\:.-]' here to ensure that we don't use the same name

Completed in 319 milliseconds

<<11121314151617181920>>