Searched refs:copy (Results 1 - 25 of 3229) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-i386/
H A Dpr22001-1a.c1 int copy = 1; variable
6 return copy;
12 return ©
H A Dpr22001-1b.c3 extern int copy;
10 if (copy == get_copy () && &copy == get_copy_p ())
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-x86-64/
H A Dpr22001-1a.c1 int copy = 1; variable
6 return copy;
12 return ©
H A Dpr22001-1b.c3 extern int copy;
9 if (copy == get_copy ())
H A Dpr22001-1c.c3 extern int copy;
8 if (&copy == get_copy_p ())
/netbsd-current/crypto/external/bsd/openssl/dist/util/
H A Dmerge-err-lines5 # this file except in compliance with the License. You can obtain a copy
23 my $copy = $_;
24 chop($copy);
25 $copy =~ s/ +$//;
28 $_ = $copy . ' ' . $next;
/netbsd-current/external/bsd/tmux/dist/compat/
H A Dstrndup.c6 * Permission to use, copy, modify, and distribute this software for any
30 char *copy; local
34 copy = malloc(len + 1);
35 if (copy != NULL) {
36 (void)memcpy(copy, str, len);
37 copy[len] = '\0';
40 return copy;
/netbsd-current/external/bsd/mdocml/dist/
H A Dcompat_strndup.c14 * Permission to use, copy, modify, and distribute this software for any
35 char *copy; local
41 copy = malloc(len + 1);
42 if (copy != NULL) {
43 (void)memcpy(copy, str, len);
44 copy[len] = '\0';
47 return copy;
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/malloc/
H A Dscratch_buffer_dupfree.c15 You should have received a copy of the GNU Lesser General Public
32 void *copy = malloc (size); local
33 return copy != NULL ? memcpy (copy, data, size) : NULL;
37 void *copy = realloc (data, size); local
38 return copy != NULL ? copy : data;
/netbsd-current/external/bsd/nvi/dist/clib/
H A Dstrdup.c58 char *copy; local
61 if (!(copy = malloc((u_int)len)))
63 memcpy(copy, str, len);
64 return (copy);
/netbsd-current/external/bsd/tcpdump/dist/missing/
H A Dstrdup.c45 char *copy; local
48 if ((copy = malloc(len)) == NULL)
50 memcpy(copy, str, len);
51 return (copy);
/netbsd-current/external/bsd/openpam/dist/
H A Dautogen.sh3 libtoolize --copy --force
6 automake --add-missing --copy --foreign
/netbsd-current/lib/libc/compat/stdlib/
H A Dcompat_putenv.c64 char *copy; local
75 if ((copy = strdup(name)) == NULL)
77 copy[l_name++] = '\0';
79 rv = setenv(copy, copy + l_name, 1);
81 free(copy);
/netbsd-current/crypto/external/bsd/openssh/bin/ssh-copy-id/
H A DMakefile5 SCRIPTS= ssh-copy-id
6 MAN= ssh-copy-id.1
/netbsd-current/external/apache2/llvm/dist/llvm/benchmarks/
H A DDummyYAML.cpp7 std::string copy(x);
8 llvm::yaml::isNumeric(copy);
/netbsd-current/lib/libc/string/
H A Dstrdup.c56 char *copy; local
61 if (!(copy = malloc(len)))
63 memcpy(copy, str, len);
64 return (copy);
H A Dstrndup.c61 char *copy; local
68 if (!(copy = malloc(len + 1)))
70 memcpy(copy, str, len);
71 copy[len] = '\0';
72 return (copy);
H A Dwcsdup.c9 * Permission to use or copy this software for any purpose is hereby granted
31 wchar_t *copy; local
38 copy = NULL;
39 errno = reallocarr(&copy, len, sizeof(*copy));
43 return wmemcpy(copy, str, len);
/netbsd-current/sys/arch/ia64/stand/common/
H A Dstrdup.c53 char *copy = NULL; local
57 if ((copy = alloc(len)) == NULL)
59 memcpy(copy, str, len);
61 return (copy);
/netbsd-current/external/mit/libcbor/dist/test/
H A Dcopy_test.c17 cbor_item_t *item, *copy, *tmp; variable
21 assert_uint8(copy = cbor_copy(item), 10);
23 cbor_decref(&copy);
26 assert_uint16(copy = cbor_copy(item), 10);
28 cbor_decref(&copy);
31 assert_uint32(copy = cbor_copy(item), 10);
33 cbor_decref(&copy);
36 assert_uint64(copy = cbor_copy(item), 10);
38 cbor_decref(&copy);
43 assert_true(cbor_get_uint8(copy
[all...]
/netbsd-current/external/mit/isl/dist/include/isl/
H A Dcpp-checked-conversion.h18 return checked::manage(obj.copy());
22 return manage(obj.copy());
26 return checked::manage(obj.copy());
30 return manage(obj.copy());
34 return checked::manage(obj.copy());
38 return manage(obj.copy());
42 return checked::manage(obj.copy());
46 return manage(obj.copy());
50 return checked::manage(obj.copy()).as<checked::ast_expr_id>();
54 return manage(obj.copy())
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/unittests/optional/cons/
H A Dcopy.cc14 // You should have received a copy of the GNU General Public License along
57 auto copy = o; local
58 VERIFY( !copy );
65 auto copy = o; local
66 VERIFY( copy );
67 VERIFY( *copy == val );
75 auto copy = o; local
76 VERIFY( !copy );
83 auto copy = o; local
84 VERIFY( copy );
98 auto copy = o; local
114 auto copy = o; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/unittests/optional/cons/
H A Dcopy.cc14 // You should have received a copy of the GNU General Public License along
57 auto copy = o; local
58 VERIFY( !copy );
65 auto copy = o; local
66 VERIFY( copy );
67 VERIFY( *copy == val );
75 auto copy = o; local
76 VERIFY( !copy );
83 auto copy = o; local
84 VERIFY( copy );
98 auto copy = o; local
114 auto copy = o; local
[all...]
/netbsd-current/crypto/dist/ipsec-tools/
H A Dbootstrap19 ${LIBTOOLIZE} --force --copy || exit 1
20 automake --foreign --add-missing --copy || exit 1
/netbsd-current/lib/csu/arch/hppa/
H A Dcrt0.S54 copy %r27, %r19
60 copy %arg0, %arg2 ; ps_strings -> tmp
61 copy %arg1, %arg0 ; cleanup -> arg0
63 copy %arg2, %arg1 ; ps_strings -> arg1

Completed in 1244 milliseconds

1234567891011>>