Searched refs:to (Results 1 - 25 of 1175) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/boot/arm/at91/libat91/
H A Dstrcpy.c32 strcpy(char *to, const char *from) argument
35 *to++ = *from++;
36 *to++ = '\0';
37 return (to);
H A Dmemcmp.c32 p_memcmp(const char *to, const char *from, unsigned size) argument
34 while ((--size) && (*to++ == *from++))
37 return (size || (*to != *from));
H A Dp_string.c5 * Instantiation of basic string operations to prevent inclusion of full
7 * for speed, but rather to show intent.
17 * relating to merchantability or fitness for any purpose is provided. All
32 * number of bytes to value.
44 * int p_memcmp(char *to, char *from, unsigned size)
45 * This global function compares data at to against data at from for
51 p_memcmp(const char *to, const char *from, unsigned size) argument
53 while ((--size) && (*to++ == *from++))
56 return (*to != *from);
/freebsd-9.3-release/crypto/heimdal/lib/asn1/
H A Dder_copy.c18 * may be used to endorse or promote products derived from this software
40 heim_general_string *to)
42 *to = strdup(*from);
43 if(*to == NULL)
49 der_copy_utf8string (const heim_utf8_string *from, heim_utf8_string *to) argument
51 return der_copy_general_string(from, to);
56 heim_printable_string *to)
58 return der_copy_general_string(from, to);
63 heim_printable_string *to)
65 return der_copy_general_string(from, to);
39 der_copy_general_string(const heim_general_string *from, heim_general_string *to) argument
55 der_copy_printable_string(const heim_printable_string *from, heim_printable_string *to) argument
62 der_copy_ia5_string(const heim_printable_string *from, heim_printable_string *to) argument
69 der_copy_bmp_string(const heim_bmp_string *from, heim_bmp_string *to) argument
80 der_copy_universal_string(const heim_universal_string *from, heim_universal_string *to) argument
92 der_copy_visible_string(const heim_visible_string *from, heim_visible_string *to) argument
99 der_copy_octet_string(const heim_octet_string *from, heim_octet_string *to) argument
110 der_copy_heim_integer(const heim_integer *from, heim_integer *to) argument
122 der_copy_oid(const heim_oid *from, heim_oid *to) argument
134 der_copy_bit_string(const heim_bit_string *from, heim_bit_string *to) argument
[all...]
/freebsd-9.3-release/contrib/ipfilter/lib/
H A Dbcopywrap.c13 int bcopywrap(from, to, size)
14 void *from, *to;
17 bcopy((caddr_t)from, (caddr_t)to, size);
H A Dkmemcpywrap.c14 int kmemcpywrap(from, to, size)
15 void *from, *to;
20 ret = kmemcpy((caddr_t)to, (u_long)from, size);
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dswab.c18 * may be used to endorse or promote products derived from this software
44 swab (char *from, char *to, int nbytes) argument
47 *(to + 1) = *from;
48 *to = *(from + 1);
49 to += 2;
/freebsd-9.3-release/lib/libc/string/
H A Dstpcpy.c16 * may be used to endorse or promote products derived from this software
41 stpcpy(char * __restrict to, const char * __restrict from) argument
44 for (; (*to = *from); ++from, ++to);
45 return(to);
H A Dstrcpy.c14 * may be used to endorse or promote products derived from this software
39 strcpy(char * __restrict to, const char * __restrict from) argument
41 char *save = to;
43 for (; (*to = *from); ++from, ++to);
/freebsd-9.3-release/sys/libkern/
H A Dstrcpy.c14 * may be used to endorse or promote products derived from this software
36 strcpy(char * __restrict to, const char * __restrict from) argument
38 char *save = to;
40 for (; (*to = *from) != 0; ++from, ++to);
/freebsd-9.3-release/usr.sbin/fifolog/lib/
H A Dminiobj.h29 #define ALLOC_OBJ(to, type_magic) \
31 (to) = calloc(sizeof *(to), 1); \
32 if ((to) != NULL) \
33 (to)->magic = (type_magic); \
36 #define FREE_OBJ(to) \
38 (to)->magic = (0); \
39 free(to); \
62 #define CAST_OBJ(to, from, type_magic) \
64 (to)
[all...]
/freebsd-9.3-release/contrib/ipfilter/rules/
H A Dexample.34 block in from any to any
6 # pass through packets to and from localhost.
8 pass in from 127.0.0.1/32 to 127.0.0.1/32
10 # allow a variety of individual hosts to send any type of IP packet to any
13 pass in from 10.1.3.1/32 to any
14 pass in from 10.1.3.2/32 to any
15 pass in from 10.1.3.3/32 to any
16 pass in from 10.1.3.4/32 to any
17 pass in from 10.1.3.5/32 to an
[all...]
/freebsd-9.3-release/lib/libc/amd64/string/
H A Dstrcpy.c34 strcpy(char * __restrict to, const char * __restrict from) argument
36 __stpcpy(to, from);
37 return(to);
/freebsd-9.3-release/sys/kern/
H A Dtty_outq.c49 * bits for parity marking and such. This mechanism is similar to the
50 * old clists, but only contains the features we need to buffer the
61 #define TTYOUTQ_INSERT_TAIL(to, tob) do { \
62 if (to->to_end == 0) { \
63 tob->tob_next = to->to_firstblock; \
64 to->to_firstblock = tob; \
66 tob->tob_next = to->to_lastblock->tob_next; \
67 to->to_lastblock->tob_next = tob; \
69 to->to_nblocks++; \
72 #define TTYOUTQ_REMOVE_HEAD(to) d
85 ttyoutq_flush(struct ttyoutq *to) argument
93 ttyoutq_setsize(struct ttyoutq *to, struct tty *tp, size_t size) argument
119 ttyoutq_free(struct ttyoutq *to) argument
135 ttyoutq_read(struct ttyoutq *to, void *buf, size_t len) argument
196 ttyoutq_read_uio(struct ttyoutq *to, struct tty *tp, struct uio *uio) argument
272 ttyoutq_write(struct ttyoutq *to, const void *buf, size_t nbytes) argument
317 ttyoutq_write_nofrag(struct ttyoutq *to, const void *buf, size_t nbytes) argument
[all...]
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dbzero.c20 bzero (void *to, size_t count) argument
22 memset (to, 0, count);
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dbzero.c20 bzero (void *to, size_t count) argument
22 memset (to, 0, count);
/freebsd-9.3-release/contrib/wpa/src/ap/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/freebsd-9.3-release/contrib/wpa/src/common/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/freebsd-9.3-release/contrib/wpa/src/eap_common/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/freebsd-9.3-release/contrib/wpa/src/eap_server/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/freebsd-9.3-release/contrib/wpa/src/eapol_auth/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/freebsd-9.3-release/contrib/wpa/src/eapol_supp/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/freebsd-9.3-release/contrib/wpa/src/l2_packet/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/freebsd-9.3-release/contrib/wpa/src/rsn_supp/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/freebsd-9.3-release/contrib/wpa/src/wps/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.

Completed in 227 milliseconds

1234567891011>>