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

1234567891011>>

/freebsd-11-stable/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-11-stable/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-11-stable/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-11-stable/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-11-stable/usr.bin/from/
H A DMakefile4 PROG= from
/freebsd-11-stable/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-11-stable/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-11-stable/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-11-stable/crypto/heimdal/appl/push/
H A Dpfrom.in6 push --from $*
/freebsd-11-stable/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-11-stable/lib/libc/amd64/string/
H A Dstrcpy.c34 strcpy(char * __restrict to, const char * __restrict from) argument
36 __stpcpy(to, from);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bvgraph.h43 bool addEdge(uptr from, uptr to) { argument
44 check(from, to);
45 return v[from].setBit(to);
49 uptr addEdges(const BV &from, uptr to, uptr added_edges[], argument
52 t1.copyFrom(from);
63 // Returns true if an edge from=>to exist.
65 // and thus can be called from different threads w/o locking.
68 bool hasEdge(uptr from, uptr to) { return v[from].getBit(to); } argument
70 // Returns true if the edge from
71 removeEdge(uptr from, uptr to) argument
86 removeEdgesFrom(const BV &from) argument
99 removeEdgesFrom(uptr from) argument
103 hasEdge(uptr from, uptr to) const argument
110 isReachable(uptr from, const BV &targets) argument
127 findPath(uptr from, const BV &targets, uptr *path, uptr path_size) argument
144 findShortestPath(uptr from, const BV &targets, uptr *path, uptr path_size) argument
[all...]
/freebsd-11-stable/contrib/openbsm/compat/
H A Dendian.h27 * Derived from FreeBSD src/sys/sys/endian.h:1.6.
43 * permit encoding to and decoding from byte streams. For those systems, we
50 const unsigned char *from; local
54 from = (const unsigned char *) &int16;
57 to[0] = from[1];
58 to[1] = from[0];
66 const unsigned char *from; local
70 from = (const unsigned char *) &int32;
73 to[0] = from[3];
74 to[1] = from[
84 const unsigned char *from; local
[all...]
/freebsd-11-stable/etc/
H A Drc.firewall85 ${fwcmd} add 100 pass all from any to any via lo0
86 ${fwcmd} add 200 deny all from any to 127.0.0.0/8
87 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
89 ${fwcmd} add 400 deny all from any to ::1
90 ${fwcmd} add 500 deny all from ::1 to any
103 ${fwcmd} add pass ipv6-icmp from :: to ff02::/16
105 ${fwcmd} add pass ipv6-icmp from fe80::/10 to fe80::/10
106 ${fwcmd} add pass ipv6-icmp from fe80::/10 to ff02::/16
109 ${fwcmd} add pass ipv6-icmp from any to any icmp6types 1
112 ${fwcmd} add pass ipv6-icmp from an
[all...]
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dbsd-statvfs.c29 copy_statfs_to_statvfs(struct statvfs *to, struct statfs *from) argument
31 to->f_bsize = from->f_bsize;
32 to->f_frsize = from->f_bsize; /* no exact equivalent */
33 to->f_blocks = from->f_blocks;
34 to->f_bfree = from->f_bfree;
35 to->f_bavail = from->f_bavail;
36 to->f_files = from->f_files;
37 to->f_ffree = from->f_ffree;
38 to->f_favail = from->f_ffree; /* no exact equivalent */
40 to->f_flag = from
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_memintrinsics.cpp30 void *__hwasan_memcpy(void *to, const void *from, uptr size) { argument
34 reinterpret_cast<uptr>(from), size);
35 return memcpy(UntagPtr(to), UntagPtr(from), size);
38 void *__hwasan_memmove(void *to, const void *from, uptr size) { argument
42 reinterpret_cast<uptr>(from), size);
43 return memmove(UntagPtr(to), UntagPtr(from), size);
/freebsd-11-stable/sbin/natd/samples/
H A Dnatd.test10 ipfw add divert 32000 ip from any to any via $1
11 ipfw add pass ip from any to any
/freebsd-11-stable/crypto/openssl/crypto/rsa/
H A Drsa_none.c35 * The word 'cryptographic' can be left out if the rouines from the library
37 * 4. If you include any Windows specific code (or a derivative thereof) from
66 const unsigned char *from, int flen)
78 memcpy(to, from, (unsigned int)flen);
83 const unsigned char *from, int flen, int num)
92 memcpy(to + tlen - flen, from, flen);
65 RSA_padding_add_none(unsigned char *to, int tlen, const unsigned char *from, int flen) argument
82 RSA_padding_check_none(unsigned char *to, int tlen, const unsigned char *from, int flen, int num) argument
/freebsd-11-stable/sys/compat/linuxkpi/common/include/asm/
H A Duaccess.h37 copy_to_user(void *to, const void *from, unsigned long n) argument
39 if (linux_copyout(from, to, n) != 0)
46 copy_from_user(void *to, const void *from, unsigned long n) argument
48 if (linux_copyin(from, to, n) != 0)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_interceptors_memintrinsics.cpp21 void *__asan_memcpy(void *to, const void *from, uptr size) { argument
22 ASAN_MEMCPY_IMPL(nullptr, to, from, size);
29 void *__asan_memmove(void *to, const void *from, uptr size) { argument
30 ASAN_MEMMOVE_IMPL(nullptr, to, from, size);
/freebsd-11-stable/tools/tools/tinybsd/conf/firewall/etc/
H A Drc.firewall84 ${fwcmd} add 100 pass all from any to any via lo0
85 ${fwcmd} add 200 deny all from any to 127.0.0.0/8
86 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
124 ${fwcmd} add 50 divert natd all from any to any via ${natd_interface}
136 # ${fwcmd} add 65000 pass all from any to any
144 ${fwcmd} add 65000 pass all from any to any
150 # against people from outside your own network.
160 # Allow any traffic to or from my own net.
161 ${fwcmd} add pass all from ${ip} to ${net}:${mask}
162 ${fwcmd} add pass all from
[all...]
/freebsd-11-stable/tools/tools/tinybsd/conf/wireless/etc/
H A Drc.firewall84 ${fwcmd} add 100 pass all from any to any via lo0
85 ${fwcmd} add 200 deny all from any to 127.0.0.0/8
86 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
124 ${fwcmd} add 50 divert natd all from any to any via ${natd_interface}
136 # ${fwcmd} add 65000 pass all from any to any
144 ${fwcmd} add 65000 pass all from any to any
150 # against people from outside your own network.
160 # Allow any traffic to or from my own net.
161 ${fwcmd} add pass all from ${ip} to ${net}:${mask}
162 ${fwcmd} add pass all from
[all...]

Completed in 146 milliseconds

1234567891011>>