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

1234567891011>>

/freebsd-current/lib/libc/string/
H A Dstpcpy.c18 * may be used to endorse or promote products derived from this software
39 stpcpy(char * __restrict to, const char * __restrict from) argument
42 for (; (*to = *from); ++from, ++to);
H A Dwcpcpy.c18 * may be used to endorse or promote products derived from this software
37 wcpcpy(wchar_t * __restrict to, const wchar_t * __restrict from) argument
40 for (; (*to = *from); ++from, ++to);
H A Dstrcpy.c16 * may be used to endorse or promote products derived from this software
44 (char * __restrict to, const char * __restrict from)
48 for (; (*to = *from); ++from, ++to);
40 __strcpy(char * __restrict to, const char * __restrict from) argument
/freebsd-current/contrib/bmake/unit-tests/
H A Ddep-colon.exp1 making target1 from source1
2 making target2 from source2
H A Ddepsrc-nopath.exp1 : Making test-regular from depsrc-nopath.dir/regular.file
2 : Making test-nopath from nopath.file
H A Dhanoi-include.exp1 Move the upper disk from stack A to stack C.
2 Move the upper disk from stack A to stack B.
3 Move the upper disk from stack C to stack B.
4 Move the upper disk from stack A to stack C.
5 Move the upper disk from stack B to stack A.
6 Move the upper disk from stack B to stack C.
7 Move the upper disk from stack A to stack C.
8 Move the upper disk from stack A to stack B.
9 Move the upper disk from stack C to stack B.
10 Move the upper disk from stac
[all...]
/freebsd-current/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-current/sys/libkern/
H A Dstrcpy.c16 * 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-current/sbin/ipf/libipf/
H A Dbcopywrap.c13 bcopywrap(void *from, void *to, size_t size) argument
15 bcopy((caddr_t)from, (caddr_t)to, size);
H A Dkmemcpywrap.c14 kmemcpywrap(void *from, void *to, size_t size) argument
18 ret = kmemcpy((caddr_t)to, (u_long)from, size);
/freebsd-current/lib/libc/amd64/string/
H A Dstrcpy.c33 strcpy(char * __restrict to, const char * __restrict from) argument
35 __stpcpy(to, from);
/freebsd-current/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_integer64 (const int64_t *from, int64_t *to) argument
60 *to = *from;
65 der_copy_unsigned (const unsigned *from, unsigned *to) argument
67 *to = *from;
72 der_copy_unsigned64 (const uint64_t *from, uint64_ argument
79 der_copy_generalized_time(const time_t *from, time_t *to) argument
86 der_copy_utctime(const time_t *from, time_t *to) argument
93 der_copy_utf8string(const heim_utf8_string *from, heim_utf8_string *to) argument
99 der_copy_printable_string(const heim_printable_string *from, heim_printable_string *to) argument
112 der_copy_ia5_string(const heim_ia5_string *from, heim_ia5_string *to) argument
119 der_copy_bmp_string(const heim_bmp_string *from, heim_bmp_string *to) argument
130 der_copy_universal_string(const heim_universal_string *from, heim_universal_string *to) argument
142 der_copy_visible_string(const heim_visible_string *from, heim_visible_string *to) argument
149 der_copy_octet_string(const heim_octet_string *from, heim_octet_string *to) argument
164 der_copy_heim_integer(const heim_integer *from, heim_integer *to) argument
176 der_copy_oid(const heim_oid *from, heim_oid *to) argument
188 der_copy_bit_string(const heim_bit_string *from, heim_bit_string *to) argument
[all...]
/freebsd-current/usr.bin/from/
H A DMakefile2 PROG= from
/freebsd-current/contrib/libarchive/cpio/test/
H A Dtest_gcpio_compat.c28 unpack_test(const char *from, const char *options, const char *se) argument
33 assertMakeDir(from, 0775);
34 assertChdir(from);
39 extract_reference_file(from);
41 testprog, options, from);
43 testprog, options, from);
49 testprog, options, from);
59 failure("%s", from);
62 failure("%s", from);
66 failure("%s", from);
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_interceptors_memintrinsics.cpp23 // memcpy is called during __memprof_init() from the internals of printf(...).
24 // We do not treat memcpy with to==from as a bug.
26 #define MEMPROF_MEMCPY_IMPL(to, from, size) \
29 return internal_memcpy(to, from, size); \
31 return REAL(memcpy)(to, from, size); \
34 MEMPROF_READ_RANGE(from, size); \
36 return REAL(memcpy)(to, from, size); \
52 #define MEMPROF_MEMMOVE_IMPL(to, from, size) \
55 return internal_memmove(to, from, size); \
57 MEMPROF_READ_RANGE(from, siz
82 __memprof_memcpy(void *to, const void *from, uptr size) argument
90 __memprof_memmove(void *to, const void *from, uptr size) argument
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_interceptors_memintrinsics.cpp25 // memcpy is called during __asan_init() from the internals of printf(...).
26 // We do not treat memcpy with to==from as a bug.
28 #define ASAN_MEMCPY_IMPL(ctx, to, from, size) \
31 if (LIKELY(to != from)) { \
32 CHECK_RANGES_OVERLAP("memcpy", to, size, from, size); \
34 ASAN_READ_RANGE(ctx, from, size); \
37 return internal_memcpy(to, from, size); \
39 return REAL(memcpy)(to, from, size); \
53 #define ASAN_MEMMOVE_IMPL(ctx, to, from, size) \
56 ASAN_READ_RANGE(ctx, from, siz
62 __asan_memcpy(void *to, const void *from, uptr size) argument
70 __asan_memmove(void *to, const void *from, uptr size) argument
[all...]
/freebsd-current/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-current/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-current/crypto/heimdal/appl/push/
H A Dpfrom.in6 push --from $*
/freebsd-current/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-current/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-current/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(to, from, size);
38 void *__hwasan_memmove(void *to, const void *from, uptr size) { argument
42 reinterpret_cast<uptr>(from), size);
43 return memmove(to, from, size);
54 void *__hwasan_memcpy_match_all(void *to, const void *from, uptr size, argument
59 if (GetTagFromPointer(reinterpret_cast<uptr>(from)) != match_all_tag)
61 reinterpret_cast<uptr>(from), size);
62 return memcpy(to, from, siz
65 __hwasan_memmove_match_all(void *to, const void *from, uptr size, u8 match_all_tag) argument
[all...]
/freebsd-current/libexec/rc/
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
88 ${fwcmd} add 400 deny all from any to ::1
89 ${fwcmd} add 500 deny all from ::1 to any
102 ${fwcmd} add pass ipv6-icmp from :: to ff02::/16
104 ${fwcmd} add pass ipv6-icmp from fe80::/10 to fe80::/10
105 ${fwcmd} add pass ipv6-icmp from fe80::/10 to ff02::/16
108 ${fwcmd} add pass ipv6-icmp from any to any icmp6types 1
111 ${fwcmd} add pass ipv6-icmp from an
[all...]
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dbsd-statvfs.c37 copy_statfs_to_statvfs(struct statvfs *to, struct statfs *from) argument
39 to->f_bsize = from->f_bsize;
40 to->f_frsize = from->f_bsize; /* no exact equivalent */
41 to->f_blocks = from->f_blocks;
42 to->f_bfree = from->f_bfree;
43 to->f_bavail = from->f_bavail;
44 to->f_files = from->f_files;
45 to->f_ffree = from->f_ffree;
46 to->f_favail = from->f_ffree; /* no exact equivalent */
49 to->f_flag = from
[all...]
/freebsd-current/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Dvmsystm.h53 #define xcopyin(from, to, size) copy_from_user(to, from, size)
54 #define xcopyout(from, to, size) copy_to_user(to, from, size)
57 copyin(const void *from, void *to, size_t len) argument
60 if (xcopyin(from, to, len))
67 copyout(const void *from, void *to, size_t len) argument
70 if (xcopyout(from, to, len))
77 copyinstr(const void *from, void *to, size_t len, size_t *done) argument
84 /* XXX: Should return ENAMETOOLONG if 'strlen(from) > le
[all...]

Completed in 321 milliseconds

1234567891011>>