Home
last modified time | relevance | path

Searched refs:duplicate (Results 1 – 25 of 221) sorted by relevance

123456789

/freebsd/contrib/bmake/unit-tests/
H A Ddep-duplicate.mk12 @exec > dep-duplicate.main; \
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 Dvarmod-unique.mk7 . 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.
H A Ddep-duplicate.exp1 make: "dep-duplicate.tmp" line 1: warning: duplicate script for target "all" ignored
H A Ddep-colon-bug-cross-file.exp1 make: "dep-colon-bug-cross-file.mk" line 32: warning: duplicate script for target "all" ignored
H A Ddeptgt-begin.exp1 make: "deptgt-begin.mk" line 19: warning: duplicate script for target ".BEGIN" ignored
H A Dsuff-transform-endless.exp32 FindThem: skipping duplicate "all.e"
/freebsd/contrib/libucl/tests/basic/
H A D19.in26 .include(duplicate="append") "${CURDIR}/19-append.inc"
27 .include(duplicate="merge") "${CURDIR}/19-merge.inc"
28 .include(duplicate="rewrite") "${CURDIR}/19-rewrite.inc"
/freebsd/contrib/llvm-project/lld/docs/MachO/
H A Dld64-vs-lld.rst10 ld64 strips dead code before reporting duplicate symbols. By default, LLD does
36 2. Duplicate ObjC symbols from different archives will raise a "duplicate
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/release/packages/
H A Dtemplate.ucl17 .include(try=true,duplicate=rewrite) "${UCLFILES}/${PKGGENNAME}-all.ucl"
18 .include(try=true,duplicate=rewrite) "${UCLFILES}/${PKGNAME}.ucl"
19 .include(try=true,duplicate=rewrite) "${UCLFILES}/${FORCEINCLUDE}.ucl"
/freebsd/crypto/openssl/test/
H A Ddrbgtest.c413 int duplicate[2] = {0, 0}; in test_rand_reseed_on_fork() local
473 ++duplicate[result[i].private]; in test_rand_reseed_on_fork()
477 if (duplicate[0] >= DRBG_FORK_COUNT - 1) { in test_rand_reseed_on_fork()
479 TEST_note("ERROR: %d duplicate prefixes in public random output", duplicate[0]); in test_rand_reseed_on_fork()
483 if (duplicate[1] >= DRBG_FORK_COUNT - 1) { in test_rand_reseed_on_fork()
485 TEST_note("ERROR: %d duplicate prefixes in private random output", duplicate[1]); in test_rand_reseed_on_fork()
489 duplicate[0] = 0; in test_rand_reseed_on_fork()
497 ++duplicate[0]; in test_rand_reseed_on_fork()
500 if (duplicate[0] >= DRBG_FORK_COUNT - 1) { in test_rand_reseed_on_fork()
502 TEST_note("ERROR: %d duplicate chunks in random output", duplicate[0]); in test_rand_reseed_on_fork()
/freebsd/contrib/atf/atf-c++/detail/
H A Dtext_test.cpp38 ATF_TEST_CASE(duplicate);
39 ATF_TEST_CASE_HEAD(duplicate) in ATF_TEST_CASE_HEAD() argument
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()
H A Dtext.hpp47 char* duplicate(const char*);
/freebsd/contrib/llvm-project/lld/MachO/
H A DSymbolTable.cpp465 for (const auto &duplicate : dupSymDiags) { in reportPendingDuplicateSymbols() local
466 if (!config->deadStripDuplicates || duplicate.sym->isLive()) { in reportPendingDuplicateSymbols()
468 "duplicate symbol: " + toString(*duplicate.sym) + "\n>>> defined in "; in reportPendingDuplicateSymbols()
469 if (!duplicate.src1.first.empty()) in reportPendingDuplicateSymbols()
470 message += duplicate.src1.first + "\n>>> "; in reportPendingDuplicateSymbols()
471 message += duplicate.src1.second + "\n>>> defined in "; in reportPendingDuplicateSymbols()
472 if (!duplicate.src2.first.empty()) in reportPendingDuplicateSymbols()
473 message += duplicate.src2.first + "\n>>> "; in reportPendingDuplicateSymbols()
474 error(message + duplicate.src2.second); in reportPendingDuplicateSymbols()
/freebsd/sys/netgraph/
H A Dng_pipe.c506 if (new->duplicate == -1) in parse_cfg()
507 current->duplicate = 0; in parse_cfg()
508 else if (new->duplicate > 0 && new->duplicate <= 50) in parse_cfg()
509 current->duplicate = new->duplicate; in parse_cfg()
552 current->duplicate | current->ber) in parse_cfg()
777 * Either create a duplicate and pass it on, or in pipe_dequeue()
779 * memory allocations for the duplicate package fail, in pipe_dequeue()
780 * simply do not duplicate i in pipe_dequeue()
[all...]
H A Dng_pipe.h119 u_int32_t duplicate; member
/freebsd/lib/libc/db/
H A Dchangelog24 change, cursors and duplicate pages all had to be reworked.
54 btree: If enough duplicate records were inserted and then deleted
56 duplicate keys, the search function ended up on the wrong
/freebsd/contrib/one-true-awk/testdir/
H A Dt.index9 print $0, "has duplicate letters"
/freebsd/contrib/netbsd-tests/lib/libc/net/getaddrinfo/
H A DREADME5 (a duplicate "localhost 127.0.0.1" line in /etc/hosts for example)
/freebsd/bin/sh/tests/execution/
H A Dredir1.013 } 3<fifo2 # Formerly, sh would keep fd 3 and a duplicate of it open.
/freebsd/sbin/pfctl/tests/files/
H A Dpf0088.in1 # pfctl -o duplicate rules
/freebsd/crypto/openssl/crypto/ui/
H A Dui_lib.c406 void *duplicate = NULL; in UI_dup_user_data() local
414 duplicate = ui->meth->ui_duplicate_data(ui, user_data); in UI_dup_user_data()
415 if (duplicate == NULL) { in UI_dup_user_data()
420 (void)UI_add_user_data(ui, duplicate); in UI_dup_user_data()
/freebsd/contrib/wpa/src/eap_peer/
H A Deap.c1188 int duplicate; in eap_peer_req_is_duplicate() local
1190 duplicate = (sm->reqId == sm->lastId) && sm->rxReq; in eap_peer_req_is_duplicate()
1191 if (sm->workaround && duplicate && in eap_peer_req_is_duplicate()
1205 duplicate = 0; in eap_peer_req_is_duplicate()
1208 return duplicate; in eap_peer_req_is_duplicate()
1223 int duplicate = eap_peer_req_is_duplicate(sm); in eap_peer_sm_step_received() local
1254 else if (sm->rxReq && duplicate) in eap_peer_sm_step_received()
1256 else if (sm->rxReq && !duplicate && in eap_peer_sm_step_received()
1260 else if (sm->rxReq && !duplicate && in eap_peer_sm_step_received()
1264 else if (sm->rxReq && !duplicate && in eap_peer_sm_step_received()
[all …]
/freebsd/crypto/openssl/demos/certs/
H A DREADME.txt3 CA certificates, obsolete V1 certificates or duplicate serial numbers.
/freebsd/sys/xen/xenbus/
H A Dxenbusb_if.m53 * xenbusb_add_device(). xenbusb_add_device() ignores duplicate detects
54 * and ignores duplicate devices, so it can be called unconditionally
/freebsd/contrib/netbsd-tests/usr.sbin/mtree/
H A Dd_merge.in1 # The last entry for any duplicate node should take precedence.

123456789