Home
last modified time | relevance | path

Searched refs:candidates (Results 1 – 25 of 51) sorted by relevance

123

/freebsd/contrib/kyua/utils/
H A Dstacktrace.cpp208 std::vector< fs::path > candidates; in find_core() local
210 candidates.push_back(work_directory / in find_core()
213 candidates.push_back(program.branch_path() / in find_core()
216 candidates.push_back(work_directory / (F("core.%s") % status.dead_pid())); in find_core()
217 candidates.push_back(fs::path("/cores") / in find_core()
220 for (std::vector< fs::path >::const_iterator iter = candidates.begin(); in find_core()
221 iter != candidates.end(); ++iter) { in find_core()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeCategory.cpp86 const FormattersMatchVector &candidates, in Get() argument
90 return m_format_cont.Get(candidates, entry); in Get()
94 const FormattersMatchVector &candidates, in Get() argument
98 return m_summary_cont.Get(candidates, entry); in Get()
102 const FormattersMatchVector &candidates, in Get() argument
111 m_filter_cont.Get(candidates, filter_sp); in Get()
114 m_synth_cont.Get(candidates, synth_sp); in Get()
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_ldm.c349 ldmMatchCandidate_t* const candidates = ldmState->matchCandidates; in ZSTD_ldm_generateSequences_internal() local
373 candidates[n].split = split; in ZSTD_ldm_generateSequences_internal()
374 candidates[n].hash = hash; in ZSTD_ldm_generateSequences_internal()
375 candidates[n].checksum = (U32)(xxhash >> 32); in ZSTD_ldm_generateSequences_internal()
376 candidates[n].bucket = ZSTD_ldm_getBucket(ldmState, hash, *params); in ZSTD_ldm_generateSequences_internal()
377 PREFETCH_L1(candidates[n].bucket); in ZSTD_ldm_generateSequences_internal()
384 BYTE const* const split = candidates[n].split; in ZSTD_ldm_generateSequences_internal()
385 U32 const checksum = candidates[n].checksum; in ZSTD_ldm_generateSequences_internal()
386 U32 const hash = candidates[n].hash; in ZSTD_ldm_generateSequences_internal()
387 ldmEntry_t* const bucket = candidates[n].bucket; in ZSTD_ldm_generateSequences_internal()
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeCategory.h99 bool Get(const FormattersMatchVector &candidates, in Get() argument
102 if (sc->Get(candidates, entry)) in Get()
324 bool Get(lldb::LanguageType lang, const FormattersMatchVector &candidates,
327 bool Get(lldb::LanguageType lang, const FormattersMatchVector &candidates,
330 bool Get(lldb::LanguageType lang, const FormattersMatchVector &candidates,
H A DFormattersContainer.h193 bool Get(const FormattersMatchVector &candidates, ValueSP &entry) { in Get() argument
194 for (const FormattersMatchCandidate &candidate : candidates) { in Get()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTargetList.cpp183 std::vector<PlatformSP> candidates; in CreateTargetInternal() local
188 platform_list.GetOrCreate(archs, {}, candidates)) { in CreateTargetInternal()
190 } else if (candidates.empty()) { in CreateTargetInternal()
199 for (const auto &candidate : candidates) { in CreateTargetInternal()
H A DThread.cpp1561 std::vector<Address> candidates, within_function, outside_function; in JumpToLine() local
1571 candidates = within_function; in JumpToLine()
1573 candidates = outside_function; in JumpToLine()
1576 if (candidates.empty()) { in JumpToLine()
1592 Address dest = candidates[0]; in JumpToLine()
1593 if (warnings && candidates.size() > 1) { in JumpToLine()
1598 DumpAddressList(sstr, candidates, target); in JumpToLine()
H A DPlatform.cpp2165 std::vector<PlatformSP> &candidates) { in GetOrCreate() argument
2166 candidates.clear(); in GetOrCreate()
2167 candidates.reserve(archs.size()); in GetOrCreate()
2195 candidates.push_back(platform); in GetOrCreate()
2201 if (candidates.size() == archs.size()) { in GetOrCreate()
2202 if (llvm::all_of(candidates, [&](const PlatformSP &p) -> bool { in GetOrCreate()
2203 return p->GetName() == candidates.front()->GetName(); in GetOrCreate()
2205 return candidates.front(); in GetOrCreate()
/freebsd/contrib/ntp/
H A DREADME.versions14 Release candidates have -RC in the release number.
/freebsd/contrib/kyua/store/
H A Dlayout_test.cpp206 const char* candidates[] = { in ATF_TEST_CASE_BODY() local
215 for (const char** candidate = candidates; *candidate != NULL; ++candidate) { in ATF_TEST_CASE_BODY()
/freebsd/contrib/wpa/wpa_supplicant/
H A Dwnm_sta.c669 if (info->candidates[i].is_accept) { in get_mbo_transition_candidate()
671 info->candidates[i].bssid); in get_mbo_transition_candidate()
683 info->candidates[i].bssid); in get_mbo_transition_candidate()
699 info->candidates[i].bssid)) { in get_mbo_transition_candidate()
700 *reason = info->candidates[i].reject_reason; in get_mbo_transition_candidate()
711 os_free(info->candidates); in get_mbo_transition_candidate()
/freebsd/contrib/file/magic/Magdir/
H A Dmisctools91 # http://ftp.mozilla.org/pub/thunderbird/candidates/
92 # 78.10.1-candidates/build1/source/thunderbird-78.10.1.source.tar.xz
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DValueProfilePlugins.inc10 // Each plugin is responsible for collecting Value Profiling candidates for a
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticOptions.def71 Ovl_All) /// Overload candidates to show.
/freebsd/crypto/openssl/crypto/cmp/
H A Dcmp_ctx.c756 STACK_OF(X509) *candidates) in DEFINE_OSSL_CMP_CTX_set1_up_ref()
765 if (!ossl_x509_add_certs_new(&ctx->untrusted, candidates, in DEFINE_OSSL_CMP_CTX_set1_up_ref()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCast.cpp477 OverloadCandidateSet &candidates = sequence.getFailedCandidateSet(); in tryDiagnoseOverloadedCast() local
485 if (candidates.empty()) in tryDiagnoseOverloadedCast()
500 candidates.BestViableFunction(S, range.getBegin(), Best); in tryDiagnoseOverloadedCast()
504 candidates.NoteCandidates( in tryDiagnoseOverloadedCast()
515 candidates.NoteCandidates( in tryDiagnoseOverloadedCast()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dddt.c2613 int candidates = 0; in ddt_prune_walk() local
2652 if (candidates++ >= zfs_ddt_prunes_per_txg) { in ddt_prune_walk()
2657 candidates = 1; in ddt_prune_walk()
/freebsd/crypto/openssl/doc/man3/
H A DOSSL_CMP_CTX_new.pod110 STACK_OF(X509) *candidates);
475 certificate previously set in the I<ctx>. It adds the optional I<candidates>,
486 with the I<candidates> and I<own_trusted> arguments being NULL.
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DPlatform.h1085 std::vector<lldb::PlatformSP> &candidates);
/freebsd/crypto/openssl/include/openssl/
H A Dcmp.h.in322 STACK_OF(X509) *candidates);
H A Dcmp.h441 STACK_OF(X509) *candidates);
/freebsd/stand/common/
H A Dhelp.common260 # Tset Sinit_path DSet the list of init candidates
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetInstrPredicate.td397 // describe dependency breaking instructions and move elimination candidates.
H A DTargetSchedule.td538 // candidates. By default, no instruction is a valid move elimination candidate.
/freebsd/contrib/wpa/src/drivers/
H A Ddriver.h2866 } *candidates; member

123