Home
last modified time | relevance | path

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

12345678910>>...137

/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 …]
Dtrim.hpp39 namespace algorithm { namespace
69 ::boost::algorithm::detail::trim_begin( in trim_left_copy_if()
87 ::boost::algorithm::detail::trim_begin( in trim_left_copy_if()
109 ::boost::algorithm::trim_left_copy_if( in trim_left_copy()
128 ::boost::algorithm::detail::trim_begin( in trim_left_if()
145 ::boost::algorithm::trim_left_if( in trim_left()
178 ::boost::algorithm::detail::trim_end( in trim_right_copy_if()
196 ::boost::algorithm::detail::trim_end( in trim_right_copy_if()
218 ::boost::algorithm::trim_right_copy_if( in trim_right_copy()
237 ::boost::algorithm::detail::trim_end( in trim_right_if()
[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/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_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/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/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/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 …]
Dssl_fingerprint.cc31 SSLFingerprint* SSLFingerprint::Create(absl::string_view algorithm, in Create() argument
33 return CreateUnique(algorithm, *identity).release(); in Create()
37 absl::string_view algorithm, in CreateUnique() argument
39 return Create(algorithm, identity.certificate()); in CreateUnique()
43 absl::string_view algorithm, in Create() argument
47 bool ret = cert.ComputeDigest(algorithm, digest_val, sizeof(digest_val), in Create()
53 algorithm, ArrayView<const uint8_t>(digest_val, digest_len)); in Create()
57 absl::string_view algorithm, in CreateFromRfc4572() argument
59 return CreateUniqueFromRfc4572(algorithm, fingerprint).release(); in CreateFromRfc4572()
63 absl::string_view algorithm, in CreateUniqueFromRfc4572() argument
[all …]
/external/conscrypt/repackaged/common/src/test/java/com/android/org/conscrypt/
DMacTest.java81 String algorithm = entry[ALGORITHM_INDEX]; in knownAnswerTest() local
92 algorithm, key, msg, expected); in knownAnswerTest()
95 byte[] macBytes = generateMacUsingUpdate(algorithm, secretKey, msgBytes); in knownAnswerTest()
100 macBytes = generateMacUsingFinal(algorithm, secretKey, msgBytes); in knownAnswerTest()
106 macBytes = generateMac(algorithm, secretKey, nondirectBuffer); in knownAnswerTest()
114 macBytes = generateMac(algorithm, secretKey, directBuffer); in knownAnswerTest()
120 macBytes = generateMac(algorithm, secretKey, split(nondirectBuffer)); in knownAnswerTest()
126 macBytes = generateMac(algorithm, secretKey, split(directBuffer)); in knownAnswerTest()
131 macBytes = generateReusingMac(algorithm, keyBytes, msgBytes); in knownAnswerTest()
136 macBytes = generateReusingMacSameKey(algorithm, secretKey, msgBytes); in knownAnswerTest()
[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 …]
/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/rust/crates/ring/src/
Dagreement.rs94 algorithm: &'static Algorithm, field
100 algorithm
118 algorithm: alg, in generate()
133 algorithm: self.algorithm, in compute_public_key()
140 pub fn algorithm(&self) -> &'static Algorithm { in algorithm() method
141 self.algorithm in algorithm()
153 algorithm: &'static Algorithm, field
166 .field("algorithm", &self.algorithm) in fmt()
175 pub fn algorithm(&self) -> &'static Algorithm { in algorithm() method
176 self.algorithm in algorithm()
[all …]
/external/conscrypt/common/src/test/java/org/conscrypt/javax/crypto/
DCipherTest.java117 private static boolean isSupported(String algorithm, String provider) { in isSupported() argument
118 if (algorithm.equals("RC2")) { in isSupported()
121 if (algorithm.equals("PBEWITHMD5ANDRC2")) { in isSupported()
124 if (algorithm.startsWith("PBEWITHSHA1ANDRC2")) { in isSupported()
127 if (algorithm.equals("PBEWITHSHAAND40BITRC2-CBC")) { in isSupported()
130 if (algorithm.equals("PBEWITHSHAAND128BITRC2-CBC")) { in isSupported()
133 if (algorithm.equals("PBEWITHSHAANDTWOFISH-CBC")) { in isSupported()
137 if (algorithm.equals("PBEWITHMD5ANDTRIPLEDES")) { in isSupported()
143 (algorithm.equals("AES/CFB/PKCS5PADDING") in isSupported()
144 || algorithm.equals("AES/CFB/PKCS7PADDING") in isSupported()
[all …]

12345678910>>...137