Home
last modified time | relevance | path

Searched refs:algorithm (Results 1 – 25 of 4130) sorted by relevance

12345678910>>...166

/external/sdv/vsomeip/third_party/boost/algorithm/include/boost/algorithm/string/
Derase.hpp32 namespace algorithm { namespace
57 return ::boost::algorithm::find_format_copy( in erase_range_copy()
60 ::boost::algorithm::range_finder(SearchRange), in erase_range_copy()
61 ::boost::algorithm::empty_formatter(Input) ); in erase_range_copy()
75 return ::boost::algorithm::find_format_copy( in erase_range_copy()
77 ::boost::algorithm::range_finder(SearchRange), in erase_range_copy()
78 ::boost::algorithm::empty_formatter(Input) ); in erase_range_copy()
96 ::boost::algorithm::find_format( in erase_range()
98 ::boost::algorithm::range_finder(SearchRange), in erase_range()
99 ::boost::algorithm::empty_formatter(Input) ); in erase_range()
[all …]
Dreplace.hpp33 namespace algorithm { namespace
64 return ::boost::algorithm::find_format_copy( in replace_range_copy()
67 ::boost::algorithm::range_finder(SearchRange), in replace_range_copy()
68 ::boost::algorithm::const_formatter(Format)); in replace_range_copy()
83 return ::boost::algorithm::find_format_copy( in replace_range_copy()
85 ::boost::algorithm::range_finder(SearchRange), in replace_range_copy()
86 ::boost::algorithm::const_formatter(Format)); in replace_range_copy()
106 ::boost::algorithm::find_format( in replace_range()
108 ::boost::algorithm::range_finder(SearchRange), in replace_range()
109 ::boost::algorithm::const_formatter(Format)); in replace_range()
[all …]
Dregex.hpp33 namespace algorithm { namespace
65 return ::boost::algorithm::regex_finder(Rx,Flags)( in find_regex()
101 return ::boost::algorithm::find_format_copy( in replace_regex_copy()
104 ::boost::algorithm::regex_finder( Rx, Flags ), in replace_regex_copy()
105 ::boost::algorithm::regex_formatter( Format, Flags ) ); in replace_regex_copy()
123 return ::boost::algorithm::find_format_copy( in replace_regex_copy()
125 ::boost::algorithm::regex_finder( Rx, Flags ), in replace_regex_copy()
126 ::boost::algorithm::regex_formatter( Format, Flags ) ); in replace_regex_copy()
150 ::boost::algorithm::find_format( in replace_regex()
152 ::boost::algorithm::regex_finder( Rx, Flags ), in replace_regex()
[all …]
Dfind.hpp33 namespace algorithm { namespace
84 return ::boost::algorithm::find(Input, ::boost::algorithm::first_finder(Search)); in find_first()
111 … return ::boost::algorithm::find(Input, ::boost::algorithm::first_finder(Search,is_iequal(Loc))); in ifind_first()
137 return ::boost::algorithm::find(Input, ::boost::algorithm::last_finder(Search)); in find_last()
164 … return ::boost::algorithm::find(Input, ::boost::algorithm::last_finder(Search, is_iequal(Loc))); in ifind_last()
192 return ::boost::algorithm::find(Input, ::boost::algorithm::nth_finder(Search,Nth)); in find_nth()
223 … return ::boost::algorithm::find(Input, ::boost::algorithm::nth_finder(Search,Nth,is_iequal(Loc))); in ifind_nth()
253 return ::boost::algorithm::find(Input, ::boost::algorithm::head_finder(N)); in find_head()
284 return ::boost::algorithm::find(Input, ::boost::algorithm::tail_finder(N)); in find_tail()
314 … return ::boost::algorithm::find(Input, ::boost::algorithm::token_finder(Pred, eCompress)); in find_token()
[all …]
/external/pytorch/aten/src/ATen/native/mkldnn/xpu/detail/
DAttr.h78 PostOpParam(float scale, float alpha, float beta, dnnl::algorithm algo, kind_t kind) in PostOpParam()
87 dnnl::algorithm algo, in PostOpParam()
98 PostOpParam(at::Tensor& binary, float scale, dnnl::algorithm algo, kind_t kind) in PostOpParam()
115 dnnl::algorithm algo_ = dnnl::algorithm::eltwise_relu;
125 dnnl::algorithm kind_with_relu = dnnl::algorithm::eltwise_relu;
126 dnnl::algorithm kind_with_sigmoid = dnnl::algorithm::eltwise_logistic;
127 dnnl::algorithm kind_with_gelu_tanh = dnnl::algorithm::eltwise_gelu_tanh;
128 dnnl::algorithm kind_with_gelu_erf = dnnl::algorithm::eltwise_gelu_erf;
129 dnnl::algorithm kind_with_mish = dnnl::algorithm::eltwise_mish;
130 dnnl::algorithm kind_with_linear = dnnl::algorithm::eltwise_linear;
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/util/
DDefaultJcaJceHelper.java37 String algorithm) in createCipher() argument
40 return Cipher.getInstance(algorithm); in createCipher()
43 public Mac createMac(String algorithm) in createMac() argument
46 return Mac.getInstance(algorithm); in createMac()
49 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument
52 return KeyAgreement.getInstance(algorithm); in createKeyAgreement()
55 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument
58 return AlgorithmParameterGenerator.getInstance(algorithm); in createAlgorithmParameterGenerator()
61 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument
64 return AlgorithmParameters.getInstance(algorithm); in createAlgorithmParameters()
[all …]
DProviderJcaJceHelper.java44 String algorithm) in createCipher() argument
47 return Cipher.getInstance(algorithm, provider); in createCipher()
50 public Mac createMac(String algorithm) in createMac() argument
53 return Mac.getInstance(algorithm, provider); in createMac()
56 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument
59 return KeyAgreement.getInstance(algorithm, provider); in createKeyAgreement()
62 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument
65 return AlgorithmParameterGenerator.getInstance(algorithm, provider); in createAlgorithmParameterGenerator()
68 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument
71 return AlgorithmParameters.getInstance(algorithm, provider); in createAlgorithmParameters()
[all …]
DNamedJcaJceHelper.java44 String algorithm) in createCipher() argument
47 return Cipher.getInstance(algorithm, providerName); in createCipher()
50 public Mac createMac(String algorithm) in createMac() argument
53 return Mac.getInstance(algorithm, providerName); in createMac()
56 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument
59 return KeyAgreement.getInstance(algorithm, providerName); in createKeyAgreement()
62 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument
65 return AlgorithmParameterGenerator.getInstance(algorithm, providerName); in createAlgorithmParameterGenerator()
68 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument
71 return AlgorithmParameters.getInstance(algorithm, providerName); in createAlgorithmParameters()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/util/
DDefaultJcaJceHelper.java39 String algorithm) in createCipher() argument
42 return Cipher.getInstance(algorithm); in createCipher()
45 public Mac createMac(String algorithm) in createMac() argument
48 return Mac.getInstance(algorithm); in createMac()
51 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument
54 return KeyAgreement.getInstance(algorithm); in createKeyAgreement()
57 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument
60 return AlgorithmParameterGenerator.getInstance(algorithm); in createAlgorithmParameterGenerator()
63 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument
66 return AlgorithmParameters.getInstance(algorithm); in createAlgorithmParameters()
[all …]
DProviderJcaJceHelper.java46 String algorithm) in createCipher() argument
49 return Cipher.getInstance(algorithm, provider); in createCipher()
52 public Mac createMac(String algorithm) in createMac() argument
55 return Mac.getInstance(algorithm, provider); in createMac()
58 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument
61 return KeyAgreement.getInstance(algorithm, provider); in createKeyAgreement()
64 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument
67 return AlgorithmParameterGenerator.getInstance(algorithm, provider); in createAlgorithmParameterGenerator()
70 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument
73 return AlgorithmParameters.getInstance(algorithm, provider); in createAlgorithmParameters()
[all …]
DNamedJcaJceHelper.java46 String algorithm) in createCipher() argument
49 return Cipher.getInstance(algorithm, providerName); in createCipher()
52 public Mac createMac(String algorithm) in createMac() argument
55 return Mac.getInstance(algorithm, providerName); in createMac()
58 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument
61 return KeyAgreement.getInstance(algorithm, providerName); in createKeyAgreement()
64 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument
67 return AlgorithmParameterGenerator.getInstance(algorithm, providerName); in createAlgorithmParameterGenerator()
70 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument
73 return AlgorithmParameters.getInstance(algorithm, providerName); in createAlgorithmParameters()
[all …]
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jcajce/util/
DDefaultJcaJceHelper.java39 String algorithm) in createCipher() argument
42 return Cipher.getInstance(algorithm); in createCipher()
45 public Mac createMac(String algorithm) in createMac() argument
48 return Mac.getInstance(algorithm); in createMac()
51 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument
54 return KeyAgreement.getInstance(algorithm); in createKeyAgreement()
57 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument
60 return AlgorithmParameterGenerator.getInstance(algorithm); in createAlgorithmParameterGenerator()
63 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument
66 return AlgorithmParameters.getInstance(algorithm); in createAlgorithmParameters()
[all …]
DProviderJcaJceHelper.java46 String algorithm) in createCipher() argument
49 return Cipher.getInstance(algorithm, provider); in createCipher()
52 public Mac createMac(String algorithm) in createMac() argument
55 return Mac.getInstance(algorithm, provider); in createMac()
58 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument
61 return KeyAgreement.getInstance(algorithm, provider); in createKeyAgreement()
64 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument
67 return AlgorithmParameterGenerator.getInstance(algorithm, provider); in createAlgorithmParameterGenerator()
70 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument
73 return AlgorithmParameters.getInstance(algorithm, provider); in createAlgorithmParameters()
[all …]
DNamedJcaJceHelper.java46 String algorithm) in createCipher() argument
49 return Cipher.getInstance(algorithm, providerName); in createCipher()
52 public Mac createMac(String algorithm) in createMac() argument
55 return Mac.getInstance(algorithm, providerName); in createMac()
58 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument
61 return KeyAgreement.getInstance(algorithm, providerName); in createKeyAgreement()
64 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument
67 return AlgorithmParameterGenerator.getInstance(algorithm, providerName); in createAlgorithmParameterGenerator()
70 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument
73 return AlgorithmParameters.getInstance(algorithm, providerName); in createAlgorithmParameters()
[all …]
/external/sdv/vsomeip/third_party/boost/range/doc/
Dheaders.qbk33 …[[`<boost/range/algorithm.hpp>` ] [every range equivalent of an STL algorithm ] [- …
34 …[[`<boost/range/algorithm_ext.hpp>` ] [every range algorithm that is an extension of the STL alg…
62 [section:algorithm Algorithm]
65 [[`<boost/range/algorithm/adjacent_find.hpp>`] [__range_algorithms_adjacent_find__]]
66 [[`<boost/range/algorithm/binary_search.hpp>`] [__range_algorithms_binary_search__]]
67 [[`<boost/range/algorithm/copy.hpp>`] [__range_algorithms_copy__]]
68 [[`<boost/range/algorithm/copy_backward.hpp>`] [__range_algorithms_copy_backward__]]
69 [[`<boost/range/algorithm/count.hpp>`] [__range_algorithms_count__]]
70 [[`<boost/range/algorithm/count_if.hpp>`] [__range_algorithms_count_if__]]
71 [[`<boost/range/algorithm/equal.hpp>`] [__range_algorithms_equal__]]
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
DAsymmetricAlgorithmProvider.java13 String algorithm, in addSignatureAlgorithm() argument
17 provider.addAlgorithm("Signature." + algorithm, className); in addSignatureAlgorithm()
18 provider.addAlgorithm("Alg.Alias.Signature." + oid, algorithm); in addSignatureAlgorithm()
19 provider.addAlgorithm("Alg.Alias.Signature.OID." + oid, algorithm); in addSignatureAlgorithm()
24 String algorithm, in addSignatureAlias() argument
27 provider.addAlgorithm("Alg.Alias.Signature." + oid, algorithm); in addSignatureAlias()
28 provider.addAlgorithm("Alg.Alias.Signature.OID." + oid, algorithm); in addSignatureAlias()
34 String algorithm, in addSignatureAlgorithm() argument
37 addSignatureAlgorithm(provider, digest, algorithm, className, null); in addSignatureAlgorithm()
43 String algorithm, in addSignatureAlgorithm() argument
[all …]
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jcajce/provider/util/
DAsymmetricAlgorithmProvider.java17 String algorithm, in addSignatureAlgorithm() argument
21 provider.addAlgorithm("Signature." + algorithm, className); in addSignatureAlgorithm()
22 provider.addAlgorithm("Alg.Alias.Signature." + oid, algorithm); in addSignatureAlgorithm()
23 provider.addAlgorithm("Alg.Alias.Signature.OID." + oid, algorithm); in addSignatureAlgorithm()
28 String algorithm, in addSignatureAlias() argument
31 provider.addAlgorithm("Alg.Alias.Signature." + oid, algorithm); in addSignatureAlias()
32 provider.addAlgorithm("Alg.Alias.Signature.OID." + oid, algorithm); in addSignatureAlias()
38 String algorithm, in addSignatureAlgorithm() argument
41 addSignatureAlgorithm(provider, digest, algorithm, className, null); in addSignatureAlgorithm()
47 String algorithm, in addSignatureAlgorithm() argument
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/util/
DAsymmetricAlgorithmProvider.java17 String algorithm, in addSignatureAlgorithm() argument
21 provider.addAlgorithm("Signature." + algorithm, className); in addSignatureAlgorithm()
22 provider.addAlgorithm("Alg.Alias.Signature." + oid, algorithm); in addSignatureAlgorithm()
23 provider.addAlgorithm("Alg.Alias.Signature.OID." + oid, algorithm); in addSignatureAlgorithm()
28 String algorithm, in addSignatureAlias() argument
31 provider.addAlgorithm("Alg.Alias.Signature." + oid, algorithm); in addSignatureAlias()
32 provider.addAlgorithm("Alg.Alias.Signature.OID." + oid, algorithm); in addSignatureAlias()
38 String algorithm, in addSignatureAlgorithm() argument
41 addSignatureAlgorithm(provider, digest, algorithm, className, null); in addSignatureAlgorithm()
47 String algorithm, in addSignatureAlgorithm() argument
[all …]
/external/sdv/vsomeip/third_party/boost/range/doc/reference/
Dalgorithms.qbk8 …st simple form a [*Range Algorithm] (or range-based algorithm) is simply an iterator-based algorit…
11 #include <boost/range/algorithm.hpp>
42 as a template parameter to the algorithm:
57 # it is very ['*safe*] because the algorithm can verify out-of-bounds conditions and handle tricky …
83 … is complex, calling `vec.end()` several times will be more expensive than using a range algorithm.
88 [include algorithm/copy.qbk]
89 [include algorithm/copy_backward.qbk]
90 [include algorithm/fill.qbk]
91 [include algorithm/fill_n.qbk]
92 [include algorithm/generate.qbk]
[all …]
/external/tink/java_src/src/main/java/com/google/crypto/tink/subtle/
DEngineWrapper.java43 public Cipher getInstance(String algorithm, Provider provider) throws GeneralSecurityException { in getInstance() argument
45 return Cipher.getInstance(algorithm); in getInstance()
47 return Cipher.getInstance(algorithm, provider); in getInstance()
56 public Mac getInstance(String algorithm, Provider provider) throws GeneralSecurityException { in getInstance() argument
58 return Mac.getInstance(algorithm); in getInstance()
60 return Mac.getInstance(algorithm, provider); in getInstance()
69 public KeyPairGenerator getInstance(String algorithm, Provider provider) in getInstance() argument
72 return KeyPairGenerator.getInstance(algorithm); in getInstance()
74 return KeyPairGenerator.getInstance(algorithm, provider); in getInstance()
83 public MessageDigest getInstance(String algorithm, Provider provider) in getInstance() argument
[all …]
/external/tink-java/src/main/java/com/google/crypto/tink/subtle/
DEngineWrapper.java43 public Cipher getInstance(String algorithm, Provider provider) throws GeneralSecurityException { in getInstance() argument
45 return Cipher.getInstance(algorithm); in getInstance()
47 return Cipher.getInstance(algorithm, provider); in getInstance()
56 public Mac getInstance(String algorithm, Provider provider) throws GeneralSecurityException { in getInstance() argument
58 return Mac.getInstance(algorithm); in getInstance()
60 return Mac.getInstance(algorithm, provider); in getInstance()
69 public KeyPairGenerator getInstance(String algorithm, Provider provider) in getInstance() argument
72 return KeyPairGenerator.getInstance(algorithm); in getInstance()
74 return KeyPairGenerator.getInstance(algorithm, provider); in getInstance()
83 public MessageDigest getInstance(String algorithm, Provider provider) in getInstance() argument
[all …]
/external/webrtc/rtc_base/
Dopenssl_digest.cc19 OpenSSLDigest::OpenSSLDigest(absl::string_view algorithm) { in OpenSSLDigest() argument
23 if (GetDigestEVP(algorithm, &md_)) { in OpenSSLDigest()
59 bool OpenSSLDigest::GetDigestEVP(absl::string_view algorithm, in GetDigestEVP() argument
62 if (algorithm == DIGEST_MD5) { in GetDigestEVP()
64 } else if (algorithm == DIGEST_SHA_1) { in GetDigestEVP()
66 } else if (algorithm == DIGEST_SHA_224) { in GetDigestEVP()
68 } else if (algorithm == DIGEST_SHA_256) { in GetDigestEVP()
70 } else if (algorithm == DIGEST_SHA_384) { in GetDigestEVP()
72 } else if (algorithm == DIGEST_SHA_512) { in GetDigestEVP()
84 bool OpenSSLDigest::GetDigestName(const EVP_MD* md, std::string* algorithm) { in GetDigestName() argument
[all …]
/external/sdv/vsomeip/third_party/boost/algorithm/string/doc/
DJamfile.v221 [ glob ../../../../boost/algorithm/string.hpp ]
22 [ glob ../../../../boost/algorithm/string_regex.hpp ]
24 [ glob ../../../../boost/algorithm/string/classification.hpp ]
25 [ glob ../../../../boost/algorithm/string/iterator_range.hpp ]
26 [ glob ../../../../boost/algorithm/string/sequence_traits.hpp ]
27 [ glob ../../../../boost/algorithm/string/std_containers_traits.hpp ]
28 [ glob ../../../../boost/algorithm/string/concept.hpp ]
29 [ glob ../../../../boost/algorithm/string/compare.hpp ]
30 [ glob ../../../../boost/algorithm/string/constants.hpp ]
31 [ glob ../../../../boost/algorithm/string/case_conv.hpp ]
[all …]
/external/sdv/vsomeip/third_party/boost/algorithm/test/
Dhex_test1.cpp26 boost::algorithm::hex ( *p, std::back_inserter ( one )); in test_to_hex()
27 boost::algorithm::hex ( arg, std::back_inserter ( two )); in test_to_hex()
28 boost::algorithm::hex ( arg.begin (), arg.end (), std::back_inserter ( three )); in test_to_hex()
29 four = boost::algorithm::hex ( arg ); in test_to_hex()
35 boost::algorithm::unhex ( argh.c_str (), std::back_inserter ( one )); in test_to_hex()
36 boost::algorithm::unhex ( argh, std::back_inserter ( two )); in test_to_hex()
37 boost::algorithm::unhex ( argh.begin (), argh.end (), std::back_inserter ( three )); in test_to_hex()
38 four = boost::algorithm::unhex ( argh ); in test_to_hex()
51 boost::algorithm::hex_lower ( *p, std::back_inserter ( one )); in test_to_hex_lower()
52 boost::algorithm::hex_lower ( arg, std::back_inserter ( two )); in test_to_hex_lower()
[all …]
/external/conscrypt/common/src/test/java/org/conscrypt/
DMacTest.java77 String algorithm = entry[ALGORITHM_INDEX]; in knownAnswerTest() local
88 algorithm, key, msg, expected); in knownAnswerTest()
91 byte[] macBytes = generateMacUsingUpdate(algorithm, secretKey, msgBytes); in knownAnswerTest()
96 macBytes = generateMacUsingFinal(algorithm, secretKey, msgBytes); in knownAnswerTest()
102 macBytes = generateMac(algorithm, secretKey, nondirectBuffer); in knownAnswerTest()
110 macBytes = generateMac(algorithm, secretKey, directBuffer); in knownAnswerTest()
116 macBytes = generateMac(algorithm, secretKey, split(nondirectBuffer)); in knownAnswerTest()
122 macBytes = generateMac(algorithm, secretKey, split(directBuffer)); in knownAnswerTest()
127 macBytes = generateReusingMac(algorithm, keyBytes, msgBytes); in knownAnswerTest()
132 macBytes = generateReusingMacSameKey(algorithm, secretKey, msgBytes); in knownAnswerTest()
[all …]

12345678910>>...166