Searched refs:copy (Results 26 - 50 of 700) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/compiler-rt/include/profile/
H A DMIBEntryDef.inc18 * This file has two identical copies. The primary copy lives in LLVM and
20 * in this file, first modify the primary copy and copy it over to compiler-rt.
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DMIBEntryDef.inc18 * This file has two identical copies. The primary copy lives in LLVM and
20 * in this file, first modify the primary copy and copy it over to compiler-rt.
/freebsd-current/crypto/openssh/regress/
H A Dscp.sh11 COPY3=${OBJ}/copy.glob[123]
33 # Create directory structure for recursive copy tests.
37 cp ${DATA} ${DIR}/copy
38 ln -s ${DIR}/copy ${DIR}/copy-sym
40 cp ${DATA} ${DIR}/subdir/copy
52 verbose "$tag: simple copy local file to local file"
54 $SCP $scpopts ${DATA} ${COPY} || fail "copy failed"
55 cmp ${DATA} ${COPY} || fail "corrupted copy"
57 verbose "$tag: simple copy loca
[all...]
H A Dscp3.sh23 # Create directory structure for recursive copy tests.
27 cp ${DATA} ${DIR}/copy
28 ln -s ${DIR}/copy ${DIR}/copy-sym
30 cp ${DATA} ${DIR}/subdir/copy
43 verbose "$tag: simple copy remote file to remote file"
45 $SCP $scpopts -3 hostA:${DATA} hostB:${COPY} || fail "copy failed"
46 cmp ${DATA} ${COPY} || fail "corrupted copy"
48 verbose "$tag: simple copy remote file to remote dir"
51 $SCP $scpopts -3 hostA:${COPY} hostB:${DIR} || fail "copy faile
[all...]
H A Dscp-uri.sh35 verbose "$tag: simple copy local file to remote file"
37 $SCP $scpopts ${DATA} "scp://${USER}@somehost:${PORT}/${COPY}" || fail "copy failed"
38 cmp ${DATA} ${COPY} || fail "corrupted copy"
40 verbose "$tag: simple copy remote file to local file"
42 $SCP $scpopts "scp://${USER}@somehost:${PORT}/${DATA}" ${COPY} || fail "copy failed"
43 cmp ${DATA} ${COPY} || fail "corrupted copy"
45 verbose "$tag: simple copy local file to remote dir"
48 $SCP $scpopts ${COPY} "scp://${USER}@somehost:${PORT}/${DIR}" || fail "copy failed"
49 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
[all...]
/freebsd-current/contrib/libevent/
H A Dautogen.sh22 automake --add-missing --force-missing --copy
/freebsd-current/crypto/heimdal/base/
H A Dheimbasepriv.h66 heim_type_copy copy; member in struct:heim_type_data
77 heim_type_copy copy,
/freebsd-current/contrib/ntp/sntp/libevent/
H A Dautogen.sh22 automake --add-missing --force-missing --copy
/freebsd-current/contrib/lib9p/sbuf/
H A Dsbuf.c88 va_list copy; local
91 va_copy(copy, args);
92 req = vsnprintf(NULL, 0, fmt, copy);
93 va_end(copy);
/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zfs_copies/
H A Dzfs_copies.kshlib9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
93 typeset copy=$2
100 log_must $ZFS create -V $VOLSIZE -o copies=$copy $vol
112 (( nfilesize = copy * ${FILESIZE%m} ))
131 "copies as $copy"
/freebsd-current/sys/netgraph/
H A Dng_message.h415 * Make a copy of message. Sets "copy" to NULL if fails.
417 #define NG_COPYMESSAGE(copy, msg, how) \
419 (copy) = malloc(sizeof(struct ng_mesg) \
421 if ((copy) == NULL) \
423 (copy)->header.version = NG_VERSION; \
424 (copy)->header.arglen = (msg)->header.arglen; \
425 (copy)->header.token = (msg)->header.token; \
426 (copy)->header.typecookie = (msg)->header.typecookie; \
427 (copy)
[all...]
/freebsd-current/sys/dev/cxgbe/cudbg/
H A Dfastlz.c8 Permission is hereby granted, free of charge, to any person obtaining a copy
11 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
194 unsigned int copy; local
199 /* create literal copy only */
213 /* we start with literal copy */
214 copy = 2;
316 /* if we have copied something, adjust the copy count */
317 if (copy)
318 /* copy is biased, '0' means 1 byte copy */
[all...]
/freebsd-current/sys/contrib/zlib/
H A Dinfback.c250 unsigned copy; /* number of stored or match bytes to copy */ local
251 unsigned char FAR *from; /* where to copy match bytes from */
254 unsigned len; /* length to copy for repeats, bits to drop */
327 /* copy stored block from input to output */
329 copy = state->length;
332 if (copy > have) copy = have;
333 if (copy > left) copy
[all...]
/freebsd-current/contrib/kyua/utils/config/
H A Dnodes_test.cpp88 config::bool_node* copy = static_cast< config::bool_node* >(raw_copy); local
89 ATF_REQUIRE(copy->value());
90 copy->set(false);
92 ATF_REQUIRE(!copy->value());
93 delete copy;
195 config::int_node* copy = static_cast< config::int_node* >(raw_copy); local
196 ATF_REQUIRE_EQ(5, copy->value());
197 copy->set(10);
199 ATF_REQUIRE_EQ(10, copy->value());
200 delete copy;
305 config::positive_int_node* copy = static_cast< config::positive_int_node* >( local
422 config::string_node* copy = static_cast< config::string_node* >(raw_copy); local
525 config::strings_set_node* copy = local
[all...]
/freebsd-current/crypto/heimdal/lib/hx509/
H A Dtest_cert.in59 echo "copy dance"
60 ${hxtool} certificate-copy \
63 ${hxtool} certificate-copy PEM-FILE:cert-pem.tmp DER-FILE:cert-der.tmp || exit 1
64 ${hxtool} certificate-copy DER-FILE:cert-der.tmp PEM-FILE:cert-pem2.tmp || exit 1
/freebsd-current/usr.bin/dc/
H A Dstack.c6 * Permission to use, copy, modify, and distribute this software for any
75 stack_dup_value(const struct value *a, struct value *copy) argument
78 copy->type = a->type;
84 copy->u.num = dup_number(a->u.num);
87 copy->u.string = strdup(a->u.string);
88 if (copy->u.string == NULL)
93 copy->array = a->array == NULL ? NULL : array_dup(a->array);
95 return (copy);
109 struct value copy; local
116 stack_push(stack, stack_dup_value(value, &copy));
122 struct value copy; local
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/__algorithm/
H A Dmerge.h14 #include <__algorithm/copy.h>
34 return std::copy(__first1, __last1, __result);
43 return std::copy(__first2, __last2, __result);
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/baddof/
H A Dbaddof.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
161 unsigned char *dof, *copy; local
188 if ((copy = malloc(len)) == NULL)
189 fatal("could not allocate copy of %d bytes", len);
192 bcopy(dof, copy, len);
201 corrupt(fd, copy, len);
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/synctask_core/
H A Dtst.bookmark.copy.ksh8 # A full copy of the text of the CDDL should have accompanied this
9 # source. A copy of the CDDL is also available via the Internet at
43 $ZCP_ROOT/synctask_core/tst.bookmark.copy.zcp $fs $bookname $bookcopyname
/freebsd-current/contrib/ldns/
H A Dfreebsd-configure.sh17 libtoolize --copy && autoheader && autoconf
/freebsd-current/contrib/googletest/googletest/test/
H A Dgtest_testbridge_test.py50 subprocess_env = os.environ.copy()
/freebsd-current/usr.bin/units/
H A Dunits.c16 * I would appreciate (though I do not require) receiving a copy of any
482 char *copy; local
490 copy = dupstr(unit);
491 copy[strlen(copy) - 1] = 0;
493 if (!strcmp(unittable[i].uname, copy)) {
494 strlcpy(buffer, copy, sizeof(buffer));
495 free(copy);
499 free(copy);
501 copy
[all...]
/freebsd-current/crypto/openssh/contrib/cygwin/
H A DMakefile66 install-copy-id: $(copyidsrcdir)/ssh-copy-id $(copyidsrcdir)/ssh-copy-id.1
67 $(INSTALL) -m 755 $(copyidsrcdir)/ssh-copy-id $(DESTDIR)$(bindir)/ssh-copy-id
68 $(INSTALL) -m 644 $(copyidsrcdir)/ssh-copy-id.1 $(DESTDIR)$(mandir)/man1/ssh-copy-id.1
77 cygwin-postinstall: move-config-files remove-empty-dir install-inetd-config install-doc install-scripts install-copy-id gzip-man-pages
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DEnvironment.cpp20 Next = std::copy(Key.begin(), Key.end(), Next);
22 Next = std::copy(Value.begin(), Value.end(), Next);
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/slog/
H A Dslog_replay_fs_002.ksh9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
39 # 4. Copy TESTFS to temporary location (TESTDIR/copy)
44 # 7. Compare TESTFS against the TESTDIR/copy
99 # 4. Copy TESTFS to temporary location (TESTDIR/copy)
102 log_must rsync -aHAX /$TESTPOOL/$TESTFS/ $TESTDIR/copy
126 # 7. Compare TESTFS against the TESTDIR/copy
135 log_must replay_directory_diff $TESTDIR/copy /$TESTPOOL/$TESTFS

Completed in 149 milliseconds

1234567891011>>