Searched refs:from (Results 1 - 25 of 932) sorted by relevance

1234567891011>>

/freebsd-10.0-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-10.0-release/sys/boot/arm/at91/libat91/
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 Dstrcpy.c32 strcpy(char *to, const char *from) argument
34 while (*from)
35 *to++ = *from++;
H A Dp_string.c44 * 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-10.0-release/crypto/heimdal/lib/roken/
H A Dswab.c18 * may be used to endorse or promote products derived from this software
40 swab (char *from, char *to, int nbytes) argument
43 *(to + 1) = *from;
44 *to = *(from + 1);
46 from += 2;
/freebsd-10.0-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
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 any
18 pass in from 10.1.0.13/32 to any
19 pass in from 10.
[all...]
H A Dexample.54 # allow packets coming from foo to bar through.
6 pass in from 10.1.1.2 to 10.2.1.1
8 # allow any TCP packets from the same subnet as foo is on through to host
11 pass in proto tcp from 10.2.2.2/24 to 10.1.1.2/32 port = 6667
13 # allow in UDP packets which are NOT from port 53 and are destined for
16 pass in proto udp from 10.2.2.2 port != 53 to localhost
20 block in proto icmp from any to any icmp-type unreach
25 pass in from any to any with ipopts
H A Dexample.12 # block all incoming TCP packets on le0 from host 10.1.1.1 to any destination.
4 block in on le0 proto tcp from 10.1.1.1/32 to any
H A Dexample.22 # block all outgoing TCP packets on le0 from any host to port 23 of
5 block out on le0 proto tcp from any to 10.1.1.3/32 port = 23
H A Dexample.44 block in proto icmp from any to any
H A Dserver8 pass in quick on le0 from 128.1.40.0/24 to any
9 block in log quick on le0 from any to any
10 block in log quick on le1 from 128.1.1.0/24 to any
11 pass in quick on le1 from any to any
/freebsd-10.0-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);
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
43 for (; (*to = *from); ++from, ++to);
H A Dwcpcpy.c16 * may be used to endorse or promote products derived from this software
41 wcpcpy(wchar_t * __restrict to, const wchar_t * __restrict from) argument
44 for (; (*to = *from); ++from, ++to);
/freebsd-10.0-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
40 for (; (*to = *from) != 0; ++from, ++to);
/freebsd-10.0-release/sys/ofed/include/asm/
H A Duaccess.h34 copy_to_user(void *to, const void *from, unsigned long n) argument
36 if (copyout(from, to, n) != 0)
42 copy_from_user(void *to, const void *from, unsigned long n) argument
44 if (copyin(from, to, n) != 0)
/freebsd-10.0-release/usr.bin/from/
H A DMakefile4 PROG= from
/freebsd-10.0-release/contrib/libarchive/cpio/test/
H A Dtest_gcpio_compat.c29 unpack_test(const char *from, const char *options, const char *se) argument
34 assertMakeDir(from, 0775);
35 assertChdir(from);
40 extract_reference_file(from);
42 testprog, options, from);
44 testprog, options, from);
50 testprog, options, from);
60 failure("%s", from);
63 failure("%s", from);
67 failure("%s", from);
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/asn1/
H A Dder_copy.c20 * may be used to endorse or promote products derived from this software
41 der_copy_general_string (const heim_general_string *from, argument
44 *to = strdup(*from);
51 der_copy_integer (const int *from, int *to) argument
53 *to = *from;
58 der_copy_unsigned (const unsigned *from, unsigned *to) argument
60 *to = *from;
65 der_copy_generalized_time (const time_t *from, time_t *to) argument
67 *to = *from;
72 der_copy_utctime (const time_t *from, time_ argument
79 der_copy_utf8string(const heim_utf8_string *from, heim_utf8_string *to) argument
85 der_copy_printable_string(const heim_printable_string *from, heim_printable_string *to) argument
98 der_copy_ia5_string(const heim_ia5_string *from, heim_ia5_string *to) argument
105 der_copy_bmp_string(const heim_bmp_string *from, heim_bmp_string *to) argument
116 der_copy_universal_string(const heim_universal_string *from, heim_universal_string *to) argument
128 der_copy_visible_string(const heim_visible_string *from, heim_visible_string *to) argument
135 der_copy_octet_string(const heim_octet_string *from, heim_octet_string *to) argument
146 der_copy_heim_integer(const heim_integer *from, heim_integer *to) argument
158 der_copy_oid(const heim_oid *from, heim_oid *to) argument
170 der_copy_bit_string(const heim_bit_string *from, heim_bit_string *to) argument
[all...]
/freebsd-10.0-release/contrib/ldns/compat/
H A Dmemmove.c16 uint8_t* from = (uint8_t*) src; local
19 if (from == to || n == 0)
21 if (to > from && to-from < (int)n) {
22 /* to overlaps with from */
23 /* <from......> */
25 /* copy in reverse, to avoid overwriting from */
28 to[i] = from[i];
31 if (from > to && from
[all...]
/freebsd-10.0-release/contrib/unbound/compat/
H A Dmemmove.c16 uint8_t* from = (uint8_t*) src; local
19 if (from == to || n == 0)
21 if (to > from && to-from < (int)n) {
22 /* to overlaps with from */
23 /* <from......> */
25 /* copy in reverse, to avoid overwriting from */
28 to[i] = from[i];
31 if (from > to && from
[all...]
/freebsd-10.0-release/crypto/heimdal/appl/push/
H A Dpfrom.in6 push --from $*
/freebsd-10.0-release/lib/libc/amd64/string/
H A Dstrcpy.c34 strcpy(char * __restrict to, const char * __restrict from) argument
36 __stpcpy(to, from);
/freebsd-10.0-release/contrib/openbsm/compat/
H A Dendian.h27 * Derived from FreeBSD src/sys/sys/endian.h:1.6.
44 * permit encoding to and decoding from byte streams. For those systems, we
51 const unsigned char *from; local
55 from = (const unsigned char *) &int16;
58 to[0] = from[1];
59 to[1] = from[0];
67 const unsigned char *from; local
71 from = (const unsigned char *) &int32;
74 to[0] = from[3];
75 to[1] = from[
85 const unsigned char *from; local
[all...]

Completed in 142 milliseconds

1234567891011>>