Searched refs:to (Results 651 - 675 of 1175) sorted by relevance

<<21222324252627282930>>

/freebsd-9.3-release/crypto/openssh/
H A Dpacket.c111 * descriptor, in which case it is assumed to be a socket.
128 /* Buffer for raw output data going to the socket. */
153 /* Set to true if the connection is interactive. */
156 /* Set to true if we are the server side. */
159 /* Set to true if we are authenticated. */
164 /* The maximum time that we will wait to send or receive a packet */
183 /* roundup current message to extra_pad bytes */
304 struct sockaddr_storage from, to; local
315 tolen = sizeof(to);
316 memset(&to,
439 struct sockaddr_storage to; local
[all...]
H A Dkey.c130 /* no need to prealloc */
178 /* no need to prealloc */
369 /* XXX switch to DIGEST_* directly? */
498 * "Hash Visualization: a New Technique to improve Real-World Security",
517 * Field sizes for the random art. Have to be odd, so the starting point
529 * Chars to be used after each other every time the worm
634 * permitted to modify the buffer. This leaves *cpp to point just beyond the
1286 struct KeyCert *to; local
1296 to
[all...]
/freebsd-9.3-release/contrib/gcc/cp/
H A Dtypeck.c19 along with GCC; see the file COPYING. If not, write to
25 It contains routines to build C++ expressions given their operands,
62 /* Do `exp = require_complete_type (exp);' to make sure exp
93 /* Try to complete TYPE, if it is incomplete. For example, if TYPE is
102 /* Rather than crash, we return something sure to cause an error
267 as to deal with `long long' and `complex'. First, merge the
319 /* The types are the same; no need to do anything fancy. */
331 /* If one is unsigned long long, then convert the other to unsigned
339 convert to a long long. Otherwise, convert to a
5933 get_delta_difference(tree from, tree to, bool allow_inverse_p, bool c_cast_p) argument
6726 comp_ptr_ttypes_real(tree to, tree from, int constp) argument
6774 comp_ptr_ttypes(tree to, tree from) argument
6783 ptr_reasonably_similar(tree to, tree from) argument
6824 comp_ptr_ttypes_const(tree to, tree from) argument
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dtree-ssa-forwprop.c17 along with GCC; see the file COPYING. If not, write to
45 code. One day we'll want to generalize this code.
107 In addition to eliminating the variable and the statement which assigns
108 a value to the variable, we may be able to later thread the jump without
112 a worklist of COND_EXPR statements to examine. As we make a change to
113 a statement, we put it back on the worklist to examine on the next
146 We also propagate casts into SWITCH_EXPR and COND_EXPR conditions to
147 allow us to remov
913 tree def, to, ti; local
[all...]
H A Dregclass.c19 along with GCC; see the file COPYING. If not, write to the Free
26 and a function init_reg_sets to initialize the tables. */
56 reloads, we are not allowed to use classes requiring secondary
58 /* We leave it to target hooks to decide if we have secondary reloads, so
69 These are the registers that cannot be used to allocate
84 These are the registers that cannot be used to allocate
86 to save/restore them across the calls. */
94 /* HARD_REG_SET of registers we want to avoid caller saving. */
101 /* This is much like call_used_regs, except it doesn't have to
2631 enum machine_mode to; local
2657 enum machine_mode to; local
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp27 /// A Range represents the closed range [from, to]. The caller must
28 /// guarantee that from <= to. Note that Range is immutable, so as not
29 /// to subvert RangeSet's immutability.
34 Range(const llvm::APSInt &from, const llvm::APSInt &to) argument
35 : std::pair<const llvm::APSInt*, const llvm::APSInt*>(&from, &to) {
36 assert(from <= to);
63 // be used to speed up some of the operations in RangeSet.
75 PrimRangeSet ranges; // no need to make const, since it is an
77 // to work.
89 /// Construct a new RangeSet representing '{ [from, to] }'
90 RangeSet(Factory &F, const llvm::APSInt &from, const llvm::APSInt &to) argument
[all...]
/freebsd-9.3-release/contrib/sendmail/src/
H A Derr.c8 * By using this file, you agree to the terms and conditions set
33 ** that we create. Its job is to handle exceptions that are not
40 ** exits the process when it fails due to lack of memory:
84 ** Prints an error message via sm_io_printf to the diagnostic output.
92 ** then syserr knows that the process is about to be terminated,
93 ** so the SMTP reply code defaults to 421. Otherwise, the
94 ** reply code defaults to 451 or 554, depending on errno.
486 ** Just like "message" except it never puts the to... tag on.
538 ** PUTOUTMSG -- output error message to transcript and channel
541 ** msg -- message to outpu
[all...]
/freebsd-9.3-release/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus_new_helpers.c28 * writes to another recursively
29 * @from: iterator to read from
30 * @to: iterator to write to
32 * Copies one iterator's elements to another. If any element in
35 static void recursive_iter_copy(DBusMessageIter *from, DBusMessageIter *to) argument
41 /* iterate over iterator to copy */
49 * According to DBus documentation all
50 * fixed-length types are guaranteed to fi
[all...]
/freebsd-9.3-release/contrib/tzcode/zic/
H A Dzdump.c14 ** conversion package to increase confidence in the verification it provides.
15 ** You can use this code to help in verifying other implementations.
131 ** The default is to use gettext if available, and use MSGID otherwise.
309 register int to; local
320 to = 0;
321 (void) strcpy(fakeenv[to++], "TZ=");
324 fakeenv[to++] = environ[from];
325 fakeenv[to] = NULL;
381 /* If exit fails to exit... */
468 Report bugs to t
[all...]
/freebsd-9.3-release/sys/compat/linux/
H A Dlinux_socket.c14 * 3. The name of the author may not be used to endorse or promote products
81 * Copy the osockaddr structure pointed to by osa to kernel, adjust
82 * family and convert to sockaddr.
127 * the situation, reject the address and write a message to system log.
392 * native syscall will fault. Thus, we don't really need to check the
553 struct sockaddr *to; local
557 error = linux_getsockaddr(&to, mp->msg_name, mp->msg_namelen);
560 mp->msg_name = to;
562 to
592 l_uintptr_t to; member in struct:linux_sendto_args
[all...]
/freebsd-9.3-release/contrib/cvs/
H A Dconfigure5 # Report bugs to <bug-cvs@nongnu.org>.
10 # gives unlimited permission to copy, distribute and modify it.
21 # is contrary to our usage. Disable this feature.
65 # there to prevent editors from complaining about space-tab.
67 # splitting by setting IFS to empty value.)
87 # in which case we are not to be found in the path.
117 # Required to use basename.
239 # Try only shells that exist, to save several forks.
246 # is contrary to our usage. Disable this feature.
267 # is contrary to ou
[all...]
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dcplus-dem.c14 In addition to the permissions in the GNU Library General Public
16 to link the compiled version of this file into combinations with other
17 programs, and to distribute those combinations without any restriction
30 not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
40 try not to break either. */
75 /* In order to allow a single demangler executable to demangle strings
78 commonly used ones, and check to see if the marker we are looking for
82 current defined CPLUS_MARKER first (which defaults to '$'), followed
86 We could avoid this if we could just get g++ to tel
1094 work_stuff_copy_to_from(struct work_stuff *to, struct work_stuff *from) argument
[all...]
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dcplus-dem.c14 In addition to the permissions in the GNU Library General Public
16 to link the compiled version of this file into combinations with other
17 programs, and to distribute those combinations without any restriction
30 not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
40 try not to break either. */
75 /* In order to allow a single demangler executable to demangle strings
78 commonly used ones, and check to see if the marker we are looking for
82 current defined CPLUS_MARKER first (which defaults to '$'), followed
86 We could avoid this if we could just get g++ to tel
1094 work_stuff_copy_to_from(struct work_stuff *to, struct work_stuff *from) argument
[all...]
/freebsd-9.3-release/contrib/gdb/
H A Dltmain.sh19 # along with this program; if not, write to the Free Software
22 # As a special exception to the GNU General Public License, if you
76 # Only set LANG and LC_ALL to C if already set.
79 # We save the old values to restore during execute mode.
94 echo "$modename: not configured to build any kind of library" 1>&2
298 # Only execute mode is allowed to have -dlopen flags.
305 # Change the help message to a mode-specific one.
340 # Add the previous argument to base_compile.
400 # Add the arguments to base_compile.
444 # Add the previous argument to base_compil
[all...]
/freebsd-9.3-release/sys/mips/mips/
H A Dexception.S6 * This code is derived from software contributed to Berkeley by
18 * may be used to endorse or promote products derived from this software
34 * Permission to use, copy, modify, and distribute this software and
84 * This code is copied to the TLB exception vector address to
85 * which the CPU jumps in response to an exception or a TLB miss.
104 * 'segbase' points to the base of the segment table for user processes.
107 * let the processor trap to load the correct value after service.
144 tlbwr #1a: write to tlb
154 * This code is copied to th
[all...]
/freebsd-9.3-release/contrib/binutils/gas/
H A Dmacro.c21 along with GAS; see the file COPYING. If not, write to the Free
81 /* Function to use to parse an expression. */
119 /* Read input lines till we get to a TO string.
123 Add a new input line to an sb using GET_LINE.
127 buffer_and_nest (const char *from, const char *to, sb *ptr, argument
131 int to_len = strlen (to);
137 if (to_len == 4 && strcasecmp(to, "ENDR") == 0)
147 /* Try to find the first pseudo op on the line. */
151 to th
[all...]
/freebsd-9.3-release/contrib/bsnmp/lib/
H A Dasn1.c55 * is restricted to a 32-bit value.
107 * Write a length field (restricted to values < 2^32-1) and return the
145 * Tags are restricted to one byte tags (value <= 0x30) and the
146 * lenght field to 16-bit. All errors stop the encoding.
180 * length field (three byte). Set the pointer that ptr points to to the
181 * start of the encoded header. This is used for a later call to
226 * BER integer. This may be used to get a signed 64 bit integer at maximum.
275 * Write a signed integer with the given type. The caller has to ensure
394 * The ASN.1 INTEGER type is restricted to 3
882 asn_slice_oid(struct asn_oid *dest, const struct asn_oid *src, u_int from, u_int to) argument
897 asn_append_oid(struct asn_oid *to, const struct asn_oid *from) argument
[all...]
/freebsd-9.3-release/contrib/texinfo/info/
H A Decho-area.c1 /* echo-area.c -- how to read a line in the echo area.
18 along with this program; if not, write to the Free Software
33 /* Non-zero means that C-g was used to quit reading input. */
36 /* Non-zero means that the echo area is being used to read input. */
46 /* Variables which hold on to the current state of the input line. */
61 static void ea_kill_text (int from, int to);
63 /* Non-zero means we force the user to complete. */
67 /* If non-null, this is a window which was specifically created to display
72 /* Variables which keep track of the window which was active prior to
96 on entry to info_read_xxx_echo_are
674 ea_kill_text(int from, int to) argument
[all...]
/freebsd-9.3-release/sbin/routed/
H A Drdisc.c14 * may be used to endorse or promote products derived from this software
99 * without driving it to infinity */
112 naddr to,
128 " from %s to %s via %s life=%d\n",
129 act, naddr_ntoa(from), naddr_ntoa(to),
145 trace_act("%s Router Solic. from %s to %s via %s value=%#x",
146 act, naddr_ntoa(from), naddr_ntoa(to),
204 /* stop listening to advertisements
216 /* start listening to advertisements
230 /* stop listening to solicitation
110 trace_rdisc(const char *act, naddr from, naddr to, struct interface *ifp, union ad_u *p, u_int len) argument
896 ck_icmp(const char *act, naddr from, struct interface *ifp, naddr to, union ad_u *p, u_int len) argument
[all...]
/freebsd-9.3-release/sys/dev/drm2/
H A Ddrm_ioc32.c5 * Permission is hereby granted, free of charge, to any person obtaining a
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
85 u32 date; /**< User-space buffer to hold date */
87 u32 desc; /**< User-space buffer to hold desc */
154 enum drm_map_type type; /**< Type of memory to ma
339 drm_buf_desc32_t *to; local
[all...]
/freebsd-9.3-release/sys/fs/coda/
H A Dcoda_venus.c8 * Permission to use, copy, modify and distribute this software and its
13 * that credit is given to Carnegie Mellon University in all documents
14 * and publicity pertaining to direct or indirect use of this code or its
24 * Carnegie Mellon encourages users of this software to return any
25 * improvements or extensions that they make, and to grant Carnegie
26 * Mellon the rights to redistribute these changes without encumbrance.
126 #define CNV_OFLAG(to, from) do { \
127 to = 0; \
128 if (from & FREAD) to |= C_O_READ; \
129 if (from & FWRITE) to |
[all...]
/freebsd-9.3-release/tools/test/netfibs/
H A Dinitiator.sh6 # This software was developed by Bjoern Zeeb under contract to
37 # Set IFACE to the real interface you want to run the test on.
40 # Number of seconds to wait for peer node to synchronize for test.
43 # Control port we use to exchange messages between nodes to sync. tests, etc.
118 print_debug "Waiting 4 seconds for things to settle"
158 print_debug "Waiting 4 seconds for things to settle"
199 print_debug "Waiting 4 seconds for things to settl
[all...]
/freebsd-9.3-release/usr.sbin/dconschat/
H A Ddconschat.c19 * may be used to endorse or promote products derived from this software
121 struct timespec to; member in struct:dcons_state
688 error = kevent(dc->kq, &kev, 1, NULL, 0, &dc->to);
799 buf = "\r\n[Are you sure to reset target? (y/N)]";
894 n = kevent(dc->kq, NULL, 0, elist, NEVENT, &dc->to);
975 "\t-b translate ctrl-C to CR+~+ctrl-B on gdb port\n"
1139 dc->to.tv_sec = 1;
1140 dc->to.tv_nsec = 0;
1142 dc->to.tv_sec = 0;
1143 dc->to
[all...]
/freebsd-9.3-release/contrib/cvs/src/
H A Dsanity.sh7 # practice has been to include copying terms without copyright notices.
45 echo "-h HOSTNAME Use :ext:HOSTNAME to run remote tests rather than"
47 echo " resolves to the same directory on both the client and"
49 echo "-k|--keep Try to keep directories created by individual tests"
53 echo " Test CVS using a symlink to a real CVSROOT."
57 echo "CVS-TO-TEST The path to the CVS executable to be tested."
58 echo "TESTS-TO-RUN The names of the tests to run (defaults to all tests)."
64 # required to mak
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call3.c4 * The contents of this file are subject to the terms of the
24 * Use is subject to license terms.
241 args->to.dir.data.data_len = rootfh->fhandle3_len;
242 args->to.dir.data.data_val = rootfh->fhandle3_val;
243 args->to.name = "wendy";
313 * args/results, we give it a small nonzero size, so as to not

Completed in 396 milliseconds

<<21222324252627282930>>