| /freebsd/contrib/llvm-project/lld/docs/MachO/ |
| H A D | ld64-vs-lld.rst | 8 Dead Stripping Duplicate Symbols 10 ld64 strips dead code before reporting duplicate symbols. By default, LLD does 34 1. Duplicate ObjC symbols from the same archives will not raise an error. 36 2. Duplicate ObjC symbols from different archives will raise a "duplicate 38 - LLD: Duplicate symbols, regardless of which archives they are from, will 45 result in duplicate symbol errors. LLD does not check for duplicate aliases; 47 duplicate symbols. In particular, we will not report a duplicate symbol error if
|
| /freebsd/contrib/bmake/unit-tests/ |
| H A D | dep-duplicate.mk | 1 # $NetBSD: dep-duplicate.mk,v 1.4 2024/05/25 21:11:30 rillig Exp $ 12 @exec > dep-duplicate.main; \ 16 echo '.include "dep-duplicate.tmp"' 18 @exec > dep-duplicate.tmp; \ 24 @${MAKE} -r -f dep-duplicate.main 26 @rm -f dep-duplicate.main 27 @rm -f dep-duplicate.tmp
|
| H A D | varmod-unique.mk | 3 # Tests for the :u variable modifier, which discards adjacent duplicate 7 . warning The modifier ':u' only merges _adjacent_ duplicate words. 11 . warning The modifier ':u' must merge adjacent duplicate words. 31 . warning The modifier ':u' must merge _all_ adjacent duplicate words. 39 . warning Duplicate words at the beginning must be merged. 43 . warning Duplicate words at the end must be merged.
|
| H A D | dep-duplicate.exp | 1 make: dep-duplicate.tmp:1: warning: duplicate script for target "all" ignored 2 make: dep-duplicate.main:3: warning: using previous script for "all" defined here
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_events/ |
| H A D | zpool_events_duplicates.ksh | 29 # Verify that duplicate I/O ereport errors are not posted 33 # 2. Inject duplicate read/write IO errors and checksum errors 34 # 3. Verify there are no duplicate events being posted 63 log_assert "Duplicate I/O ereport errors are not posted" 103 # duplicate errors of the same blocks 125 log_note "UNEXPECTED -- $((actual-unique)) duplicate $ERR $RW ereports" 138 log_fail "FAILED -- Duplicate I/O ereport errors encountered" 140 log_pass "Duplicate I/O ereport errors are not posted"
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/dedup/ |
| H A D | dedup_prune.ksh | 33 # 2. Add duplicate entries to the DDT 34 # 3. Verify ddtprune doesn't remove duplicate entries 35 # 4. Convert some entries to non-duplicate 36 # 5. Verify ddtprune removes non-duplicate entries 44 log_assert "Verify DDT pruning correctly removes non-duplicate entries" 100 log_pass "DDT pruning correctly removes non-duplicate entries"
|
| H A D | dedup_bclone.ksh | 38 # from unique to duplicate table; no BRT entries are created 82 # The entries move from unique (refcnt=1) to duplicate (refcnt=2). 87 "zdb -D $TESTPOOL | grep -q 'DDT-sha256-zap-duplicate:.*entries=4'" 95 "zdb -D $TESTPOOL | grep -q 'DDT-sha256-zap-duplicate:.*entries=4'" 98 # Delete the clone — DDT refcnt drops to 2, still duplicate. 103 "zdb -D $TESTPOOL | grep -q 'DDT-sha256-zap-duplicate:.*entries=4'"
|
| /freebsd/contrib/mandoc/ |
| H A D | mandoc_msg.c | 64 "duplicate RCS id", 70 "duplicate errno", 110 "duplicate section title", 155 "duplicate argument", 156 "skipping duplicate argument", 157 "skipping duplicate display type", 158 "skipping duplicate list type", 203 "duplicate prologue macro", 264 "duplicate command line argument", 268 "duplicate option value",
|
| H A D | mandoc.h | 65 MANDOCERR_RCS_REP, /* duplicate RCS id: ... */ 71 MANDOCERR_ER_REP, /* duplicate errno: Er ... */ 111 MANDOCERR_SEC_REP, /* duplicate section title: Sh title */ 156 MANDOCERR_ARG_REP, /* duplicate argument: macro arg */ 157 MANDOCERR_AN_REP, /* skipping duplicate argument: An -arg */ 158 MANDOCERR_BD_REP, /* skipping duplicate display type: Bd -type */ 159 MANDOCERR_BL_REP, /* skipping duplicate list type: Bl -type */ 204 MANDOCERR_PROLOG_REP, /* duplicate prologue macro: macro */ 266 MANDOCERR_BADARG_DUPE, /* duplicate argument */ 270 MANDOCERR_BADVAL_DUPE, /* duplicate argument value */
|
| /freebsd/contrib/sendmail/libsm/ |
| H A D | strdup.c | 18 ** SM_STRNDUP_X -- Duplicate a string of a given length 46 ** SM_STRDUP -- Duplicate a string 77 ** SM_STRDUP_X -- Duplicate a string 105 ** SM_PSTRDUP_X -- Duplicate a string (using "permanent" memory) 133 ** SM_STRDUP_X -- Duplicate a string
|
| /freebsd/contrib/libucl/tests/basic/ |
| H A D | 19.in | 26 .include(duplicate="append") "${CURDIR}/19-append.inc" 27 .include(duplicate="merge") "${CURDIR}/19-merge.inc" 28 .include(duplicate="rewrite") "${CURDIR}/19-rewrite.inc"
|
| /freebsd/tests/sys/acl/ |
| H A D | run | 259 or die "Can't duplicate pipe for reading: $!"; 263 or die "Can't duplicate STDOUT: $!"; 267 or die "Can't duplicate pipe for writing: $!"; 279 or die "Can't duplicate STDIN: $!"; 281 or die "Can't close STDIN duplicate: $!"; 284 or die "Can't duplicate STDOUT: $!"; 286 or die "Can't close STDOUT duplicate: $!"; 312 or die "Can't close STDOUT duplicate: $!"; 315 or die "Can't duplicate STDERR: $!";
|
| /freebsd/crypto/openssl/test/ |
| H A D | drbgtest.c | 291 * This simplifies finding duplicate random output and makes 405 int duplicate[2] = { 0, 0 }; in test_rand_reseed_on_fork() local 461 /* ...and count duplicate prefixes by looking at the first byte only */ in test_rand_reseed_on_fork() 465 ++duplicate[result[i].private]; in test_rand_reseed_on_fork() 469 if (duplicate[0] >= DRBG_FORK_COUNT - 1) { in test_rand_reseed_on_fork() 471 TEST_note("ERROR: %d duplicate prefixes in public random output", duplicate[0]); in test_rand_reseed_on_fork() 475 if (duplicate[1] >= DRBG_FORK_COUNT - 1) { in test_rand_reseed_on_fork() 477 TEST_note("ERROR: %d duplicate prefixes in private random output", duplicate[1]); in test_rand_reseed_on_fork() 481 duplicate[0] = 0; in test_rand_reseed_on_fork() 486 /* ...and count duplicate chunks */ in test_rand_reseed_on_fork() [all …]
|
| /freebsd/release/packages/ |
| H A D | template.ucl | 33 .include(try=false,duplicate=rewrite) "${UCLFILES}/${PKGGENNAME}-all.ucl" 34 .include(try=true,duplicate=rewrite) "${UCLFILES}/${PKGNAME}.ucl" 35 .include(try=true,duplicate=rewrite) "${UCLFILES}/${FORCEINCLUDE}.ucl"
|
| /freebsd/contrib/nvi/catalog/ |
| H A D | Makefile | 17 print "DUPLICATE MESSAGE NUMBER " $$1; \ 25 if grep DUPLICATE $@ > /dev/null; then \ 26 grep DUPLICATE $@; \ 61 echo "Duplicate messages, both id and message (this is okay):"; \
|
| H A D | README | 108 message numbers, duplicate message numbers, and duplicate messages. 110 Duplicate message numbers are a serious problem and have to be fixed. 111 Duplicate messages are only interesting if a message appears often enough
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
| H A D | ConstantMerge.h | 1 //===- ConstantMerge.h - Merge duplicate global constants -------*- C++ -*-===// 9 // This file defines the interface to a pass that merges duplicate global 28 /// A pass that merges duplicate global constants into a single constant.
|
| /freebsd/sys/contrib/edk2/Include/Protocol/ |
| H A D | DevicePathUtilities.h | 37 Create a duplicate of the specified path. 41 @retval Pointer A pointer to the duplicate device path. 53 If Src1 is NULL and Src2 is non-NULL, then a duplicate of Src2 is returned. 54 If Src1 is non-NULL and Src2 is NULL, then a duplicate of Src1 is returned.
|
| /freebsd/usr.bin/systat/ |
| H A D | tcp.c | 73 13999999999999 - successful 999999999999 - completely duplicate 74 14999999999999 delayed acks sent 999999999999 - with some duplicate data 76 16999999999999 persist timeouts 999999999999 - duplicate acks 120 L(13, "- successful"); R(13, "- completely duplicate"); in labeltcp() 121 L(14, "delayed acks sent"); R(14, "- with some duplicate data"); in labeltcp() 123 L(16, "persist timeouts"); R(16, "- duplicate acks"); in labeltcp()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TailDuplicator.cpp | 1 //===- TailDuplicator.cpp - Duplicate blocks into predecessors' tails -----===// 157 /// Tail duplicate the block and cleanup. 276 /// through. Tail-duplicate their instructions into their predecessors to 387 /// Duplicate a TailBB instruction to PredBB and update 401 MachineInstr &NewMI = TII->duplicate(*PredBB, PredBB->end(), *MI); in duplicateInstruction() 506 // There could be duplicate phi source entries. FIXME: Should sdisel in updateSuccessorsPHIs() 527 // If we didn't duplicate a bb into a particular predecessor, we in updateSuccessorsPHIs() 563 /// Determine if it is profitable to duplicate this block. 572 // Don't try to tail-duplicate single-block loops. in shouldTailDuplicate() 576 // Set the limit on the cost to duplicate. When optimizing for size, in shouldTailDuplicate() [all …]
|
| /freebsd/crypto/openssl/apps/lib/ |
| H A D | vms_decc_argv.c | 35 * duplicate of argv[]. in copy_argv() 41 * (properly) NULL-terminated (64-bit) duplicate of argv[]. in copy_argv() 42 * The same code is used in either case to duplicate argv[]. in copy_argv()
|
| /freebsd/contrib/atf/atf-c++/detail/ |
| H A D | text_test.cpp | 38 ATF_TEST_CASE(duplicate); 39 ATF_TEST_CASE_HEAD(duplicate) in ATF_TEST_CASE_HEAD() argument 41 set_md_var("descr", "Tests the duplicate function"); in ATF_TEST_CASE_HEAD() 43 ATF_TEST_CASE_BODY(duplicate) in ATF_TEST_CASE_BODY() argument 45 using atf::text::duplicate; in ATF_TEST_CASE_BODY() 49 char* copy = duplicate(orig); in ATF_TEST_CASE_BODY() 376 ATF_ADD_TEST_CASE(tcs, duplicate); in ATF_INIT_TEST_CASES()
|
| /freebsd/contrib/pkgconf/doc/ |
| H A D | libpkgconf-path.rst | 15 :param bool filter: Whether to perform duplicate filtering. 24 :param bool filter: Whether to perform duplicate filtering. 36 :param bool filter: Whether to perform duplicate filtering.
|
| /freebsd/lib/libc/db/man/ |
| H A D | btree.3 | 83 Permit duplicate keys in the tree, i.e., permit insertion if the key to be 97 flag is specified, attempts to insert duplicate keys into 100 If the database contains duplicate keys, the order of retrieval of 109 of any group of duplicate keys.
|
| /freebsd/sys/dev/hptmv/ |
| H A D | ioctl.c | 387 …ue_dpc((HPT_DPC)hpt_rebuild_data_block, pAdapter, ID_TO_VDEV(*(DEVICEID *)lpOutBuffer), DUPLICATE); in Kernel_DeviceIoControl() 408 …ue_dpc((HPT_DPC)hpt_rebuild_data_block, pAdapter, ID_TO_VDEV(*(DEVICEID *)lpOutBuffer), DUPLICATE); in Kernel_DeviceIoControl() 426 hpt_queue_dpc((HPT_DPC)hpt_rebuild_data_block, pAdapter, pArray, DUPLICATE); in Kernel_DeviceIoControl() 484 …(UCHAR)((pVDevice->u.array.CriticalMembers || pVDevice->VDeviceType == VD_RAID_1)? DUPLICATE : REB… in hpt_set_array_state() 706 case DUPLICATE: in hpt_rebuild_data_block() 754 case DUPLICATE: in hpt_rebuild_data_block() 782 case DUPLICATE: in hpt_rebuild_data_block() 826 case DUPLICATE: in hpt_rebuild_data_block() 894 (pArray->VDeviceType == VD_RAID_1) ? DUPLICATE : REBUILD_PARITY); in hpt_rebuild_data_block() 909 case DUPLICATE: in hpt_rebuild_data_block() [all …]
|