Home
last modified time | relevance | path

Searched refs:candidate (Results 1 – 25 of 99) sorted by relevance

1234

/NextBSD/lib/libiconv_modules/HZ/
HDcitrus_hz.c181 escape_t *candidate, *init; in _citrus_HZ_mbrtowc_priv() local
241 candidate = NULL; in _citrus_HZ_mbrtowc_priv()
248 candidate = init; in _citrus_HZ_mbrtowc_priv()
250 if (candidate == NULL) { in _citrus_HZ_mbrtowc_priv()
251 candidate = find_escape( in _citrus_HZ_mbrtowc_priv()
253 if (candidate == NULL) { in _citrus_HZ_mbrtowc_priv()
257 candidate = init; in _citrus_HZ_mbrtowc_priv()
260 psenc->inuse = candidate; in _citrus_HZ_mbrtowc_priv()
303 escape_t *candidate, *init; in _citrus_HZ_wcrtomb_priv() local
318 candidate = INIT0(ei); in _citrus_HZ_wcrtomb_priv()
[all …]
/NextBSD/usr.bin/which/
HDwhich.c105 is_there(char *candidate) in is_there() argument
110 if (access(candidate, X_OK) == 0 && in is_there()
111 stat(candidate, &fin) == 0 && in is_there()
116 printf("%s\n", candidate); in is_there()
125 char candidate[PATH_MAX]; in print_matches() local
135 if (snprintf(candidate, sizeof(candidate), "%s/%s", d, in print_matches()
136 filename) >= (int)sizeof(candidate)) in print_matches()
138 if (is_there(candidate)) { in print_matches()
/NextBSD/usr.bin/env/
HDenvopts.c49 static int is_there(char *candidate);
65 is_there(char *candidate) in is_there() argument
70 if (access(candidate, X_OK) == 0 && in is_there()
71 stat(candidate, &fin) == 0 && in is_there()
76 fprintf(stderr, "#env matched:\t'%s'\n", candidate); in is_there()
99 char candidate[PATH_MAX]; in search_paths() local
117 if (snprintf(candidate, sizeof(candidate), "%s/%s", d, in search_paths()
118 filename) >= (int)sizeof(candidate)) in search_paths()
120 if (is_there(candidate)) { in search_paths()
121 fqname = candidate; in search_paths()
[all …]
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDTypoCorrection.h270 virtual bool ValidateCandidate(const TypoCorrection &candidate);
278 virtual unsigned RankCandidate(const TypoCorrection &candidate) { in RankCandidate() argument
279 return (!MatchesTypo(candidate) && ValidateCandidate(candidate)) in RankCandidate()
302 bool MatchesTypo(const TypoCorrection &candidate) { in MatchesTypo() argument
303 return Typo && candidate.isResolved() && !candidate.requiresImport() && in MatchesTypo()
304 candidate.getCorrectionAsIdentifierInfo() == Typo && in MatchesTypo()
307 candidate.getCorrectionSpecifier() == TypoNNS; in MatchesTypo()
319 bool ValidateCandidate(const TypoCorrection &candidate) override { in ValidateCandidate() argument
320 return candidate.getCorrectionDeclAs<C>(); in ValidateCandidate()
333 bool ValidateCandidate(const TypoCorrection &candidate) override;
[all …]
/NextBSD/contrib/wpa/src/rsn_supp/
HDpreauth.c302 struct rsn_pmksa_candidate *candidate, *n; in rsn_preauth_candidate_process() local
323 dl_list_for_each_safe(candidate, n, &sm->pmksa_candidates, in rsn_preauth_candidate_process()
326 p = pmksa_cache_get(sm->pmksa, candidate->bssid, NULL, NULL); in rsn_preauth_candidate_process()
327 if (os_memcmp(sm->bssid, candidate->bssid, ETH_ALEN) != 0 && in rsn_preauth_candidate_process()
332 MAC2STR(candidate->bssid)); in rsn_preauth_candidate_process()
333 dl_list_del(&candidate->list); in rsn_preauth_candidate_process()
334 rsn_preauth_init(sm, candidate->bssid, in rsn_preauth_candidate_process()
336 os_free(candidate); in rsn_preauth_candidate_process()
341 MAC2STR(candidate->bssid)); in rsn_preauth_candidate_process()
345 wpa_sm_add_pmkid(sm, candidate->bssid, p->pmkid); in rsn_preauth_candidate_process()
[all …]
/NextBSD/crypto/openssl/doc/crypto/
HDDSA_generate_parameters.pod48 When a candidate for q is generated, B<BN_GENCB_call(cb, 0, m++)> is called
49 (m is 0 for the first candidate).
53 When a candidate for q has passed a test by trial division,
55 While a candidate for q is tested by Miller-Rabin primality tests,
57 (once for each witness that confirms that the candidate may be prime);
67 Before a candidate for p (other than the first) is generated and tested,
72 When a candidate for p has passed the test by trial division,
76 (once for each witness that confirms that the candidate may be prime).
HDX509_STORE_CTX_get_error.pod196 the current candidate issuer certificate was rejected because its subject name
203 the current candidate issuer certificate was rejected because its subject key
210 the current candidate issuer certificate was rejected because its issuer name
217 the current candidate issuer certificate was rejected because its keyUsage
/NextBSD/contrib/llvm/lib/Target/Sparc/
HDDelaySlotFiller.cpp80 bool delayHasHazard(MachineBasicBlock::iterator candidate,
227 bool Filler::delayHasHazard(MachineBasicBlock::iterator candidate, in delayHasHazard() argument
234 if (candidate->isImplicitDef() || candidate->isKill()) in delayHasHazard()
237 if (candidate->mayLoad()) { in delayHasHazard()
243 if (candidate->mayStore()) { in delayHasHazard()
251 for (unsigned i = 0, e = candidate->getNumOperands(); i!= e; ++i) { in delayHasHazard()
252 const MachineOperand &MO = candidate->getOperand(i); in delayHasHazard()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
HDFormattersContainer.h448 for (const FormattersMatchCandidate& candidate : candidates) in Get() local
451 if (Get(candidate.GetTypeName(),entry)) in Get()
453 if (candidate.IsMatch(entry) == false) in Get()
461 *reason = candidate.GetReason(); in Get()
/NextBSD/contrib/ldns/
HDdnssec.c34 ldns_rr *candidate; in ldns_dnssec_get_rrsig_for_name_and_type() local
41 candidate = ldns_rr_list_rr(rrs, i); in ldns_dnssec_get_rrsig_for_name_and_type()
42 if (ldns_rr_get_type(candidate) == LDNS_RR_TYPE_RRSIG) { in ldns_dnssec_get_rrsig_for_name_and_type()
43 if (ldns_dname_compare(ldns_rr_owner(candidate), in ldns_dnssec_get_rrsig_for_name_and_type()
45 ldns_rdf2rr_type(ldns_rr_rrsig_typecovered(candidate)) in ldns_dnssec_get_rrsig_for_name_and_type()
48 return candidate; in ldns_dnssec_get_rrsig_for_name_and_type()
61 ldns_rr *candidate; in ldns_dnssec_get_dnskey_for_rrsig() local
68 candidate = ldns_rr_list_rr(rrs, i); in ldns_dnssec_get_dnskey_for_rrsig()
69 if (ldns_rr_get_type(candidate) == LDNS_RR_TYPE_DNSKEY) { in ldns_dnssec_get_dnskey_for_rrsig()
70 if (ldns_dname_compare(ldns_rr_owner(candidate), in ldns_dnssec_get_dnskey_for_rrsig()
[all …]
/NextBSD/contrib/subversion/subversion/libsvn_subr/
HDdate.c367 apr_time_t candidate; in svn_parse_date() local
378 apr_err = apr_time_exp_gmt_get(&candidate, &expt); in svn_parse_date()
382 apr_err = apr_time_exp_lt(&expthen, candidate); in svn_parse_date()
/NextBSD/contrib/gcc/cp/
HDmangle.c415 tree candidate; in add_substitution() local
417 for (i = 0; VEC_iterate (tree, G.substitutions, i, candidate); i++) in add_substitution()
419 gcc_assert (!(DECL_P (node) && node == candidate)); in add_substitution()
420 gcc_assert (!(TYPE_P (node) && TYPE_P (candidate) in add_substitution()
421 && same_type_p (node, candidate))); in add_substitution()
638 tree candidate = VEC_index (tree, G.substitutions, i); in find_substitution() local
641 if (decl == candidate in find_substitution()
642 || (TYPE_P (candidate) && type && TYPE_P (type) in find_substitution()
643 && same_type_p (type, candidate)) in find_substitution()
644 || NESTED_TEMPLATE_MATCH (node, candidate)) in find_substitution()
HDcall.c2428 print_z_candidate (const char *msgstr, struct z_candidate *candidate) in print_z_candidate() argument
2430 if (TREE_CODE (candidate->fn) == IDENTIFIER_NODE) in print_z_candidate()
2432 if (candidate->num_convs == 3) in print_z_candidate()
2433 inform ("%s %D(%T, %T, %T) <built-in>", msgstr, candidate->fn, in print_z_candidate()
2434 candidate->convs[0]->type, in print_z_candidate()
2435 candidate->convs[1]->type, in print_z_candidate()
2436 candidate->convs[2]->type); in print_z_candidate()
2437 else if (candidate->num_convs == 2) in print_z_candidate()
2438 inform ("%s %D(%T, %T) <built-in>", msgstr, candidate->fn, in print_z_candidate()
2439 candidate->convs[0]->type, in print_z_candidate()
[all …]
HDcvt.c1150 tree candidate; in build_expr_type_conversion() local
1156 candidate = non_reference (TREE_TYPE (TREE_TYPE (cand))); in build_expr_type_conversion()
1158 switch (TREE_CODE (candidate)) in build_expr_type_conversion()
1173 switch (TREE_CODE (TREE_TYPE (candidate))) in build_expr_type_conversion()
/NextBSD/usr.sbin/timed/timed/
HDMakefile8 SRCS= acksend.c candidate.c correct.c master.c networkdelta.c readmsg.c \
/NextBSD/contrib/subversion/subversion/libsvn_repos/
HDrepos.c1336 const char *candidate = path; in svn_repos_find_root_path() local
1345 err = svn_path_cstring_from_utf8(&decoded, candidate, pool); in svn_repos_find_root_path()
1346 if (!err && check_repos_path(candidate, pool)) in svn_repos_find_root_path()
1350 if (svn_path_is_empty(candidate) || in svn_repos_find_root_path()
1351 svn_dirent_is_root(candidate, strlen(candidate))) in svn_repos_find_root_path()
1354 candidate = svn_dirent_dirname(candidate, pool); in svn_repos_find_root_path()
1357 return candidate; in svn_repos_find_root_path()
/NextBSD/crypto/openssh/
HDmoduli.011 An initial candidate generation pass, using ssh-keygen -G, calculates
45 The ssh-keygen(1) moduli candidate generation uses the
HDssh-keygen.0143 Generate candidate primes for DH-GEX. These primes must be
171 performing DH candidate screening using the -T option.
175 candidate screening using the -T option.
179 performing DH candidate screening using the -T option. This will
202 generating candidate moduli for DH-GEX.
301 Specify start point (in hex) when generating candidate moduli for
313 Test DH group exchange candidate primes (generated using the -G
351 Specify desired generator when testing candidate moduli for DH-
368 process: first, candidate primes are generated using a fast, but memory
369 intensive process. These candidate primes are then tested for
[all …]
/NextBSD/crypto/openssl/doc/apps/
HDverify.pod107 current certificate. This shows why each candidate issuer certificate was
227 (if present) and issuer and serial number of the candidate issuer, in addition
228 the keyUsage extension of the candidate issuer (if present) must permit
402 the current candidate issuer certificate was rejected because its subject name
408 the current candidate issuer certificate was rejected because its subject key
414 the current candidate issuer certificate was rejected because its issuer name
420 the current candidate issuer certificate was rejected because its keyUsage extension
/NextBSD/lib/libtacplus/
HDtaclib.c1284 const char *candidate; in tac_get_av_value() local
1293 candidate = h->srvr_avs[i].data; in tac_get_av_value()
1301 if (!candidate) in tac_get_av_value()
1305 !strncmp(candidate, attribute, len)) { in tac_get_av_value()
1307 ch = candidate + len; in tac_get_av_value()
1308 end = candidate + candidate_len; in tac_get_av_value()
/NextBSD/contrib/ntp/
HDREADME.versions21 4.2.3p15-rc1 A release candidate for 4.2.4
/NextBSD/cddl/contrib/opensolaris/tools/ctf/cvt/
HDoutput.c246 int candidate = 0; in check_for_weak() local
282 candidate = 1; in check_for_weak()
293 if (candidate) { in check_for_weak()
/NextBSD/contrib/llvm/tools/lldb/source/DataFormatters/
HDFormatManager.cpp625 for (const auto& candidate: m_hardcoded_formats) in GetHardcodedFormat() local
627 auto result = candidate(valobj,use_dynamic,*this); in GetHardcodedFormat()
683 for (const auto& candidate: m_hardcoded_summaries) in GetHardcodedSummaryFormat() local
685 auto result = candidate(valobj,use_dynamic,*this); in GetHardcodedSummaryFormat()
742 for (const auto& candidate: m_hardcoded_synthetics) in GetHardcodedSyntheticChildren() local
744 auto result = candidate(valobj,use_dynamic,*this); in GetHardcodedSyntheticChildren()
846 for (const auto& candidate: m_hardcoded_validators) in GetHardcodedValidator() local
848 auto result = candidate(valobj,use_dynamic,*this); in GetHardcodedValidator()
/NextBSD/contrib/llvm/tools/clang/lib/Parse/
HDParseStmt.cpp131 bool ValidateCandidate(const TypoCorrection &candidate) override { in ValidateCandidate() argument
132 if (FieldDecl *FD = candidate.getCorrectionDeclAs<FieldDecl>()) in ValidateCandidate()
133 return !candidate.getCorrectionSpecifier() || isa<ObjCIvarDecl>(FD); in ValidateCandidate()
135 return candidate.getCorrectionDeclAs<VarDecl>(); in ValidateCandidate()
137 candidate.getCorrectionDeclAs<NamespaceDecl>()) in ValidateCandidate()
139 return CorrectionCandidateCallback::ValidateCandidate(candidate); in ValidateCandidate()
/NextBSD/tools/tools/kdrv/
HDKernelDriver101 set candidate [glob -nocomplain "$hint/*.drvinfo"];
102 switch [llength $candidate] {
107 return $candidate;

1234