Searched refs:copy (Results 226 - 250 of 700) sorted by relevance

1234567891011>>

/freebsd-current/contrib/bmake/mk/
H A Dsrctop.mk9 # Permission to copy, redistribute or otherwise
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DDeclOpenMP.cpp48 llvm::copy(VL, getVars().begin());
76 llvm::copy(VL, getVars().begin());
H A DExprConcepts.cpp151 std::copy(LocalParameters.begin(), LocalParameters.end(),
153 std::copy(Requirements.begin(), Requirements.end(),
H A DStmt.cpp379 std::copy(Stmts.begin(), Stmts.end(), body_begin());
559 std::copy(Names, Names + NumExprs, this->Names);
563 std::copy(Exprs, Exprs + NumExprs, this->Exprs);
568 std::copy(Constraints, Constraints + NumConstraints, this->Constraints);
572 std::copy(Clobbers, Clobbers + NumClobbers, this->Clobbers);
860 std::copy(names, names + NumExprs, Names);
863 std::copy(exprs, exprs + NumExprs, Exprs);
867 std::copy(constraints, constraints + NumConstraints, Constraints);
870 std::copy(clobbers, clobbers + NumClobbers, Clobbers);
887 return str.copy(
[all...]
/freebsd-current/contrib/llvm-project/libcxx/include/__random/
H A Dseed_seq.h12 #include <__algorithm/copy.h>
59 std::copy(__v_.begin(), __v_.end(), __dest);
/freebsd-current/contrib/tcsh/
H A Dglob.c436 char *copy, *dest; local
439 /* copy pattern, interpreting quotes */
440 copy = xmalloc(strlen(pattern) + 1);
441 dest = copy;
452 globextend(copy, pglob);
453 xfree(copy);
523 /* find end of next segment, tentatively copy to pathbuf */
/freebsd-current/crypto/heimdal/lib/roken/
H A Dglob.c249 /* copy part up to the brace */
548 /* Find end of next segment, copy tentatively to pathend. */
654 char *copy; local
676 if ((copy = malloc(len)) != NULL) {
677 g_Ctoc(path, copy);
678 pathv[pglob->gl_offs + pglob->gl_pathc++] = copy;
687 return(copy == NULL ? GLOB_NOSPACE : 0);
/freebsd-current/tools/tools/sysbuild/
H A Dsysbuild.sh530 log_it copy ports config files
596 log_it copy resolv.conf
602 log_it copy localtime
605 log_it copy zoneinfo
657 log_it copy live config files
/freebsd-current/sys/contrib/zlib/test/
H A Dinfcover.c290 z_stream strm, copy; local
335 ret = inflateCopy(&copy, &strm); assert(ret == Z_OK);
336 ret = inflateEnd(&copy); assert(ret == Z_OK);
391 z_stream strm, copy; local
438 ret = inflateCopy(&copy, &strm); assert(ret == Z_MEM_ERROR);
658 inf("63 0 3 0 0 0 0 0", "copy direct from output", 0, -8, 259,
/freebsd-current/usr.sbin/btxld/
H A Dbtxld.c117 static void copy(int, int, size_t, off_t);
261 copy(fdi[i], fdo, ldr_size, 0);
270 copy(fdi[i], fdo, btx.btx_textsz - sizeof(btx),
274 copy(fdi[i], fdo, ihdr.size, 0);
439 * Safe copy from input file to output file.
442 copy(int fdi, int fdo, size_t nbyte, off_t offset) function
/freebsd-current/sys/fs/ext2fs/
H A Dext2_inode.c126 e2fs_daddr_t *bap, *copy; local
145 * to blocks to be free'd, and update on disk copy first. Since
169 copy = malloc(fs->e2fs_bsize, M_TEMP, M_WAITOK);
170 bcopy((caddr_t)bap, (caddr_t)copy, (u_int)fs->e2fs_bsize);
182 bap = copy;
215 free(copy, M_TEMP);
/freebsd-current/usr.sbin/lpr/lpr/
H A Dlpr.c91 static char *tfname; /* tmp copy of cf before linking */
105 static void copy(const struct printer *_pp, int _f, const char _n[]);
365 copy(pp, 0, " ");
369 copy(pp, 0, " ");
400 * instead of copy/unlink'ed. This is much faster and
441 * to the (usual) copy method.
475 copy(pp, i, arg);
521 * Create the file n and copy from file descriptor f.
524 copy(const struct printer *pp, int f, const char n[]) function
547 printf("%s: %s: copy fil
[all...]
/freebsd-current/contrib/ofed/libmlx5/
H A Dqp.c74 int copy; local
81 copy = min_t(long, *size, be32toh(scat->byte_count));
82 memcpy((void *)(unsigned long)be64toh(scat->addr), buf, copy);
83 *size -= copy;
87 buf += copy;
234 * Avoid using memcpy() to copy to BlueFlame page, since memcpy()
279 int copy; local
294 copy = qend - wqe;
295 memcpy(wqe, addr, copy);
296 addr += copy;
[all...]
/freebsd-current/sys/ufs/ffs/
H A Dffs_inode.c708 caddr_t copy = NULL; local
732 * to blocks to be free'd, and update on disk copy first. Since
751 copy = malloc(fs->fs_bsize, M_TEMP, M_WAITOK);
752 bcopy((caddr_t)bp->b_data, copy, (uint64_t)fs->fs_bsize);
766 bap1 = (ufs1_daddr_t *)copy;
768 bap2 = (ufs2_daddr_t *)copy;
806 if (copy != NULL) {
807 free(copy, M_TEMP);
/freebsd-current/contrib/kyua/model/
H A Dmetadata_test.cpp118 ATF_TEST_CASE_WITHOUT_HEAD(copy); variable
119 ATF_TEST_CASE_BODY(copy)
444 ATF_ADD_TEST_CASE(tcs, copy);
/freebsd-current/contrib/bc/include/
H A Dprogram.h234 #define bc_program_pushVar(p, code, bgn, pop, copy) \
235 bc_program_pushVar_impl(p, code, bgn, pop, copy)
239 // This define disappears pop and copy because for bc, 'pop' and 'copy' are
241 #define bc_program_pushVar(p, code, bgn, pop, copy) \
396 * Negates a copy of a BcNum. This is a BcProgramUnary function.
414 * Truncates a copy of a BcNum. This is a BcProgramUnary function.
/freebsd-current/crypto/openssl/util/
H A Dmkerr.pl5 # this file except in compliance with the License. You can obtain a copy
335 * this file except in compliance with the License. You can obtain a copy
426 * this file except in compliance with the License. You can obtain a copy
532 * this file except in compliance with the License. You can obtain a copy
675 # this file except in compliance with the License. You can obtain a copy
/freebsd-current/contrib/llvm-project/clang/include/clang/Lex/
H A DMacroInfo.h175 std::copy(List.begin(), List.end(), ParameterList);
274 std::copy(Tokens.begin(), Tokens.end(), NewReplacementTokens);
536 std::copy(Overrides.begin(), Overrides.end(),
/freebsd-current/contrib/atf/atf-c/detail/
H A Ddynstr_test.c254 ATF_TC(copy); variable
255 ATF_TC_HEAD(copy, tc)
259 ATF_TC_BODY(copy, tc)
614 ATF_TP_ADD_TC(tp, copy);
/freebsd-current/contrib/kyua/store/
H A Dmigrate.cpp234 /// file copy. We issue our backup call with the database already open, but
249 fs::copy(source, target);
/freebsd-current/crypto/heimdal/kcm/
H A Dcache.c501 int copy)
509 ret = kcm_ccache_store_cred_internal(context, ccache, creds, copy, &tmp);
535 int copy,
552 if (copy) {
498 kcm_ccache_store_cred(krb5_context context, kcm_ccache ccache, krb5_creds *creds, int copy) argument
532 kcm_ccache_store_cred_internal(krb5_context context, kcm_ccache ccache, krb5_creds *creds, int copy, krb5_creds **credp) argument
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_table.lua6 --* a copy of this software and associated documentation files (the
8 --* without limitation the rights to use, copy, modify, merge, publish,
/freebsd-current/crypto/openssh/regress/
H A Dsftp-cmds.sh32 grep copy.dd >/dev/null 2>&1 || fail "lls failed"
36 grep copy.dd >/dev/null 2>&1 || fail "lls w/path failed"
72 cmp $DATA ${COPY} || fail "corrupted copy after get"
78 cmp $DATA ${COPY} || fail "corrupted copy after get"
85 cmp ${COPY} ${QUOTECOPY} || fail "corrupted copy after get with quotes"
93 cmp ${COPY} "$SPACECOPY" || fail "corrupted copy after get with spaces"
101 fail "corrupted copy after get with glob metacharacters"
107 cmp $DATA ${COPY}.dd/$DATANAME || fail "corrupted copy after get"
114 cmp /bin/$x ${COPY}.dd/$x || fail "corrupted copy after get"
121 cmp $DATA ${COPY}.dd/$DATANAME || fail "corrupted copy afte
[all...]
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/slog/
H A Dslog_replay_fs_001.ksh9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
37 # file system. Then copy the file system, replay the intent
38 # log and compare the file system and the copy.
51 # 4. Copy TESTFS to temporary location (TESTDIR/copy)
56 # 7. Compare TESTFS against the TESTDIR/copy
202 # 4. Copy TESTFS to temporary location (TESTDIR/copy)
205 log_must rsync -aHAX /$TESTPOOL/$TESTFS/ $TESTDIR/copy
229 # 7. Compare TESTFS against the TESTDIR/copy
234 log_note "Verify copy of xattrs:"
239 log_must replay_directory_diff $TESTDIR/copy /
[all...]
/freebsd-current/contrib/sendmail/libsm/
H A Duxtext_unquote.c187 Permission to use, copy, modify, and distribute this software and its

Completed in 163 milliseconds

1234567891011>>