Home
last modified time | relevance | path

Searched full:algorithm (Results 1 – 25 of 28537) sorted by relevance

12345678910>>...1142

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/algorithm/include/boost/algorithm/string/
Derase.hpp14 #include <boost/algorithm/string/config.hpp>
22 #include <boost/algorithm/string/find_format.hpp>
23 #include <boost/algorithm/string/finder.hpp>
24 #include <boost/algorithm/string/formatter.hpp>
27 Defines various erase algorithms. Each algorithm removes
32 namespace algorithm { namespace
36 //! Erase range algorithm
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()
[all …]
Dreplace.hpp14 #include <boost/algorithm/string/config.hpp>
22 #include <boost/algorithm/string/find_format.hpp>
23 #include <boost/algorithm/string/finder.hpp>
24 #include <boost/algorithm/string/formatter.hpp>
25 #include <boost/algorithm/string/compare.hpp>
28 Defines various replace algorithms. Each algorithm replaces
33 namespace algorithm { namespace
37 //! Replace range algorithm
64 return ::boost::algorithm::find_format_copy( in replace_range_copy()
67 ::boost::algorithm::range_finder(SearchRange), in replace_range_copy()
[all …]
Dregex.hpp14 #include <boost/algorithm/string/config.hpp>
23 #include <boost/algorithm/string/find_format.hpp>
24 #include <boost/algorithm/string/regex_find_format.hpp>
25 #include <boost/algorithm/string/formatter.hpp>
26 #include <boost/algorithm/string/iter_find.hpp>
33 namespace algorithm { namespace
37 //! Find regex algorithm
65 return ::boost::algorithm::regex_finder(Rx,Flags)( in find_regex()
71 //! Replace regex algorithm
101 return ::boost::algorithm::find_format_copy( in replace_regex_copy()
[all …]
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/include/psa/
H A Dcrypto_values.h70 * parameter such as a key type, algorithm, etc. is not recognized.
240 * an algorithm with a randomized result, as well as functions that
342 /** \defgroup crypto_types Key and algorithm types
435 * The key policy determines which underlying hash algorithm the key can be
440 * \c alg is the HMAC algorithm or the underlying hash algorithm. */
451 * The key policy determines which key derivation algorithm the key
474 * The key policy determines which key derivation algorithm the key can be
481 * The key policy determines which key derivation algorithm the key
489 * The key policy determines which key derivation algorithm the key
494 /** Key for a cipher, AEAD or MAC algorithm based on the AES block cipher.
[all …]
/aosp_15_r20/external/mbedtls/include/psa/
H A Dcrypto_values.h70 * parameter such as a key type, algorithm, etc. is not recognized.
240 * an algorithm with a randomized result, as well as functions that
337 /** \defgroup crypto_types Key and algorithm types
430 * The key policy determines which underlying hash algorithm the key can be
435 * \c alg is the HMAC algorithm or the underlying hash algorithm. */
446 * The key policy determines which key derivation algorithm the key
469 * The key policy determines which key derivation algorithm the key can be
476 * The key policy determines which key derivation algorithm the key
484 * The key policy determines which key derivation algorithm the key
489 /** Key for a cipher, AEAD or MAC algorithm based on the AES block cipher.
[all …]
/aosp_15_r20/cts/tests/tests/keystore/src/android/keystore/cts/
H A DSignatureTest.java64 * Tests for algorithm-agnostic functionality of {@code Signature} implementations backed by Android
97 // that a Service with algorithm "ECDSA" be exposed, despite the RI not exposing any such
360 // expose at least one Service for such an algorithm, and this Service's algorithm will in testAlgorithmList()
375 // Unexpected algorithm -- check whether it's an alias for an expected one in testAlgorithmList()
590 // for this signature algorithm and public key. in testSignatureGeneratedByAndroidKeyStoreVerifiesByHighestPriorityProvider()
597 // No providers support verifying signatures using this algorithm and key. in testSignatureGeneratedByAndroidKeyStoreVerifiesByHighestPriorityProvider()
635 // No providers support signing using this algorithm and key. in testSignatureGeneratedByHighestPriorityProviderVerifiesByAndroidKeyStore()
662 for (String algorithm : EXPECTED_SIGNATURE_ALGORITHMS) { in testSmallMsgKat()
664 byte[] goodSigBytes = SHORT_MSG_KAT_SIGNATURES.get(algorithm); in testSmallMsgKat()
666 KeyPair keyPair = importDefaultKatKeyPair(algorithm).getKeystoreBackedKeyPair(); in testSmallMsgKat()
[all …]
H A DMacTest.java53 * Tests for algorithm-agnostic functionality of MAC implementations backed by Android Keystore.
230 // expose at least one Service for such an algorithm, and this Service's algorithm will in testAlgorithmList()
258 for (String algorithm : expectedAlgorithms()) { in testAndroidKeyStoreKeysHandledByAndroidKeyStoreProvider()
260 SecretKey key = importDefaultKatKey(algorithm); in testAndroidKeyStoreKeysHandledByAndroidKeyStoreProvider()
263 Mac mac = Mac.getInstance(algorithm); in testAndroidKeyStoreKeysHandledByAndroidKeyStoreProvider()
267 throw new RuntimeException(algorithm + " failed", e); in testAndroidKeyStoreKeysHandledByAndroidKeyStoreProvider()
276 for (String algorithm : expectedAlgorithms()) { in testMacGeneratedForEmptyMessage()
278 SecretKey key = importDefaultKatKey(algorithm); in testMacGeneratedForEmptyMessage()
281 Mac mac = Mac.getInstance(algorithm, provider); in testMacGeneratedForEmptyMessage()
289 throw new RuntimeException(algorithm + " failed", e); in testMacGeneratedForEmptyMessage()
[all …]
H A DKeyFactoryTest.java89 // caught because it'll have to expose at least one Service for such an algorithm, and this in testAlgorithmList()
90 // Service's algorithm will not be in the expected set. in testAlgorithmList()
97 // XDH is also a supported algorithm, but not available for other tests as the keys in testAlgorithmList()
123 for (String algorithm : EXPECTED_ALGORITHMS) { in testGetKeySpecWithKeystorePrivateKeyAndKeyInfoReflectsAllAuthorizations()
135 KeyPairGenerator.getInstance(algorithm, EXPECTED_PROVIDER_NAME); in testGetKeySpecWithKeystorePrivateKeyAndKeyInfoReflectsAllAuthorizations()
145 KeyFactory keyFactory = getKeyFactory(algorithm); in testGetKeySpecWithKeystorePrivateKeyAndKeyInfoReflectsAllAuthorizations()
174 throw new RuntimeException("Failed for " + algorithm, e); in testGetKeySpecWithKeystorePrivateKeyAndKeyInfoReflectsAllAuthorizations()
182 for (String algorithm : EXPECTED_ALGORITHMS) { in testGetKeySpecWithKeystorePublicKeyRejectsKeyInfo()
185 KeyPairGenerator.getInstance(algorithm, EXPECTED_PROVIDER_NAME); in testGetKeySpecWithKeystorePublicKeyRejectsKeyInfo()
188 KeyFactory keyFactory = getKeyFactory(algorithm); in testGetKeySpecWithKeystorePublicKeyRejectsKeyInfo()
[all …]
/aosp_15_r20/external/skia/toolchain/linux_trampolines/
H A DIWYU_mapping.imp2 { include: ["<__algorithm/adjacent_find.h>", "private", "<algorithm>", "public"] },
3 { include: ["<__algorithm/all_of.h>", "private", "<algorithm>", "public"] },
4 { include: ["<__algorithm/any_of.h>", "private", "<algorithm>", "public"] },
5 { include: ["<__algorithm/binary_search.h>", "private", "<algorithm>", "public"] },
6 { include: ["<__algorithm/clamp.h>", "private", "<algorithm>", "public"] },
7 { include: ["<__algorithm/comp.h>", "private", "<algorithm>", "public"] },
8 { include: ["<__algorithm/comp_ref_type.h>", "private", "<algorithm>", "public"] },
9 { include: ["<__algorithm/copy.h>", "private", "<algorithm>", "public"] },
10 { include: ["<__algorithm/copy_backward.h>", "private", "<algorithm>", "public"] },
11 { include: ["<__algorithm/copy_if.h>", "private", "<algorithm>", "public"] },
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/range/doc/reference/
Dalgorithms.qbk8 In its most simple form a [*Range Algorithm] (or range-based algorithm) is simply an iterator-based…
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 …]
/aosp_15_r20/device/linaro/dragonboard-kernel/android-6.6/
Dkernel_sbom.spdx.json164 "algorithm": "SHA1", string
174 "algorithm": "SHA1", string
184 "algorithm": "SHA1", string
194 "algorithm": "SHA1", string
204 "algorithm": "SHA1", string
214 "algorithm": "SHA1", string
224 "algorithm": "SHA1", string
234 "algorithm": "SHA1", string
244 "algorithm": "SHA1", string
254 "algorithm": "SHA1", string
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/range/include/boost/range/
Dalgorithm.hpp2 /// \file algorithm.hpp
4 /// C++ standard header file <algorithm>
35 #include <algorithm>
38 #include <boost/range/algorithm/adjacent_find.hpp>
39 #include <boost/range/algorithm/count.hpp>
40 #include <boost/range/algorithm/count_if.hpp>
41 #include <boost/range/algorithm/equal.hpp>
42 #include <boost/range/algorithm/for_each.hpp>
43 #include <boost/range/algorithm/find.hpp>
44 #include <boost/range/algorithm/find_end.hpp>
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/include/
H A Dlibcxx.imp2 { include: [ "<__algorithm/adjacent_find.h>", "private", "<algorithm>", "public" ] },
3 { include: [ "<__algorithm/all_of.h>", "private", "<algorithm>", "public" ] },
4 { include: [ "<__algorithm/any_of.h>", "private", "<algorithm>", "public" ] },
5 { include: [ "<__algorithm/binary_search.h>", "private", "<algorithm>", "public" ] },
6 { include: [ "<__algorithm/clamp.h>", "private", "<algorithm>", "public" ] },
7 { include: [ "<__algorithm/comp.h>", "private", "<algorithm>", "public" ] },
8 { include: [ "<__algorithm/comp_ref_type.h>", "private", "<algorithm>", "public" ] },
9 { include: [ "<__algorithm/copy.h>", "private", "<algorithm>", "public" ] },
10 { include: [ "<__algorithm/copy_backward.h>", "private", "<algorithm>", "public" ] },
11 { include: [ "<__algorithm/copy_if.h>", "private", "<algorithm>", "public" ] },
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/c++/v1/
Dlibcxx.imp2 { include: [ "<__algorithm/adjacent_find.h>", "private", "<algorithm>", "public" ] },
3 { include: [ "<__algorithm/all_of.h>", "private", "<algorithm>", "public" ] },
4 { include: [ "<__algorithm/any_of.h>", "private", "<algorithm>", "public" ] },
5 { include: [ "<__algorithm/binary_search.h>", "private", "<algorithm>", "public" ] },
6 { include: [ "<__algorithm/clamp.h>", "private", "<algorithm>", "public" ] },
7 { include: [ "<__algorithm/comp.h>", "private", "<algorithm>", "public" ] },
8 { include: [ "<__algorithm/comp_ref_type.h>", "private", "<algorithm>", "public" ] },
9 { include: [ "<__algorithm/copy.h>", "private", "<algorithm>", "public" ] },
10 { include: [ "<__algorithm/copy_backward.h>", "private", "<algorithm>", "public" ] },
11 { include: [ "<__algorithm/copy_if.h>", "private", "<algorithm>", "public" ] },
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/c++/v1/
Dlibcxx.imp2 { include: [ "<__algorithm/adjacent_find.h>", "private", "<algorithm>", "public" ] },
3 { include: [ "<__algorithm/all_of.h>", "private", "<algorithm>", "public" ] },
4 { include: [ "<__algorithm/any_of.h>", "private", "<algorithm>", "public" ] },
5 { include: [ "<__algorithm/binary_search.h>", "private", "<algorithm>", "public" ] },
6 { include: [ "<__algorithm/clamp.h>", "private", "<algorithm>", "public" ] },
7 { include: [ "<__algorithm/comp.h>", "private", "<algorithm>", "public" ] },
8 { include: [ "<__algorithm/comp_ref_type.h>", "private", "<algorithm>", "public" ] },
9 { include: [ "<__algorithm/copy.h>", "private", "<algorithm>", "public" ] },
10 { include: [ "<__algorithm/copy_backward.h>", "private", "<algorithm>", "public" ] },
11 { include: [ "<__algorithm/copy_if.h>", "private", "<algorithm>", "public" ] },
[all …]
/aosp_15_r20/external/pytorch/aten/src/ATen/native/mkldnn/xpu/detail/
H A 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 …]
/aosp_15_r20/device/linaro/dragonboard-kernel/android-6.1/
Dkernel_sbom.spdx.json147 "algorithm": "SHA1", string
157 "algorithm": "SHA1", string
167 "algorithm": "SHA1", string
177 "algorithm": "SHA1", string
187 "algorithm": "SHA1", string
197 "algorithm": "SHA1", string
207 "algorithm": "SHA1", string
217 "algorithm": "SHA1", string
227 "algorithm": "SHA1", string
237 "algorithm": "SHA1", string
[all …]
/aosp_15_r20/device/linaro/dragonboard-kernel/android-5.15/
Dkernel_sbom.spdx.json145 "algorithm": "SHA1", string
155 "algorithm": "SHA1", string
165 "algorithm": "SHA1", string
175 "algorithm": "SHA1", string
185 "algorithm": "SHA1", string
195 "algorithm": "SHA1", string
205 "algorithm": "SHA1", string
215 "algorithm": "SHA1", string
225 "algorithm": "SHA1", string
235 "algorithm": "SHA1", string
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/security/
DSecureRandom.java59 * bits generator or DRBG), which means they use a deterministic algorithm
76 * specific algorithm supporting the specific instantiate parameters. The
145 * The SHA1PRNG algorithm from the Crypto provider has been deprecated as it was insecure, and also
198 * The algorithm name or {@code null} if unknown.
203 private String algorithm; field in SecureRandom
210 * default random number algorithm.
216 * Provider that supports a {@code SecureRandom} (RNG) algorithm is returned.
217 * If none of the Providers support a RNG algorithm,
225 * Java Security Standard Algorithm Names Specification</a>
226 * for information about standard RNG algorithm names.
[all …]
/aosp_15_r20/libcore/ojluni/src/main/java/java/security/
H A DSecureRandom.java59 * bits generator or DRBG), which means they use a deterministic algorithm
76 * specific algorithm supporting the specific instantiate parameters. The
145 * The SHA1PRNG algorithm from the Crypto provider has been deprecated as it was insecure, and also
198 * The algorithm name or {@code null} if unknown.
203 private String algorithm; field in SecureRandom
210 * default random number algorithm.
216 * Provider that supports a {@code SecureRandom} (RNG) algorithm is returned.
217 * If none of the Providers support a RNG algorithm,
225 * Java Security Standard Algorithm Names Specification</a>
226 * for information about standard RNG algorithm names.
[all …]
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/13/libcore/ojluni/src/main/java/java/security/
DSecureRandom.java59 * bits generator or DRBG), which means they use a deterministic algorithm
76 * specific algorithm supporting the specific instantiate parameters. The
145 * The SHA1PRNG algorithm from the Crypto provider has been deprecated as it was insecure, and also
198 * The algorithm name or {@code null} if unknown.
203 private String algorithm; field in SecureRandom
210 * default random number algorithm.
216 * Provider that supports a {@code SecureRandom} (RNG) algorithm is returned.
217 * If none of the Providers support a RNG algorithm,
225 * Java Security Standard Algorithm Names Specification</a>
226 * for information about standard RNG algorithm names.
[all …]
/aosp_15_r20/device/linaro/dragonboard-kernel/android-mainline/
Dkernel_sbom.spdx.json149 "algorithm": "SHA1", string
159 "algorithm": "SHA1", string
169 "algorithm": "SHA1", string
179 "algorithm": "SHA1", string
189 "algorithm": "SHA1", string
199 "algorithm": "SHA1", string
209 "algorithm": "SHA1", string
219 "algorithm": "SHA1", string
229 "algorithm": "SHA1", string
239 "algorithm": "SHA1", string
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Ddisplayvideo_v1.customBiddingAlgorithms.html87 …lass="firstline">Creates a new custom bidding algorithm. Returns the newly created custom bidding
90 <p class="firstline">Gets a custom bidding algorithm.</p>
99 …s="firstline">Updates an existing custom bidding algorithm. Returns the updated custom bidding alg…
111 …<pre>Creates a new custom bidding algorithm. Returns the newly created custom bidding algorithm if…
117 { # A single custom bidding algorithm.
118 … String&quot;, # Immutable. The unique ID of the advertiser that owns the custom bidding algorithm.
119 …quot;A String&quot;, # Output only. The unique ID of the custom bidding algorithm. Assigned by the…
120 …gAlgorithmState&quot;: &quot;A String&quot;, # Output only. The status of custom bidding algorithm.
121 …rithmType&quot;: &quot;A String&quot;, # Required. Immutable. The type of custom bidding algorithm.
122 …quot;A String&quot;, # Required. The display name of the custom bidding algorithm. Must be UTF-8 e…
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/c++/v1/
Dlibcxx.imp2 { include: [ "<__algorithm/adjacent_find.h>", "private", "<algorithm>", "public" ] },
3 { include: [ "<__algorithm/all_of.h>", "private", "<algorithm>", "public" ] },
4 { include: [ "<__algorithm/any_of.h>", "private", "<algorithm>", "public" ] },
5 { include: [ "<__algorithm/binary_search.h>", "private", "<algorithm>", "public" ] },
6 { include: [ "<__algorithm/clamp.h>", "private", "<algorithm>", "public" ] },
7 { include: [ "<__algorithm/comp.h>", "private", "<algorithm>", "public" ] },
8 { include: [ "<__algorithm/comp_ref_type.h>", "private", "<algorithm>", "public" ] },
9 { include: [ "<__algorithm/copy.h>", "private", "<algorithm>", "public" ] },
10 { include: [ "<__algorithm/copy_backward.h>", "private", "<algorithm>", "public" ] },
11 { include: [ "<__algorithm/copy_if.h>", "private", "<algorithm>", "public" ] },
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/core/sdk-core/src/test/java/software/amazon/awssdk/core/checksum/
H A DChecksumInstantiationTest.java27 import software.amazon.awssdk.core.checksums.Algorithm;
37 Arguments.of(Algorithm.SHA1, "761c457bf73b14d27e9e9265c46f4b4dda11f940"), in provideAlgorithmAndTestStringChecksums()
38 …Arguments.of(Algorithm.SHA256, "db4bfcbd4da0cd85a60c3c37d3fbd8805c77f15fc6b1fdfe614ee0a7c8fdb4c0"), in provideAlgorithmAndTestStringChecksums()
39 Arguments.of(Algorithm.CRC32, "000000000000000000000000000000001fc2e6d2"), in provideAlgorithmAndTestStringChecksums()
40 Arguments.of(Algorithm.CRC32C, "00000000000000000000000000000000a245d57d") in provideAlgorithmAndTestStringChecksums()
46 void validateCheckSumValues(Algorithm algorithm, String expectedValue) { in validateCheckSumValues() argument
47 final SdkChecksum sdkChecksum = SdkChecksum.forAlgorithm(algorithm); in validateCheckSumValues()
56 Arguments.of(Algorithm.CRC32C, "Nks/tw=="), in provideAlgorithmAndTestBaseEncodedValue()
57 Arguments.of(Algorithm.CRC32, "NSRBwg=="), in provideAlgorithmAndTestBaseEncodedValue()
58 Arguments.of(Algorithm.SHA1, "qZk+NkcGgWq6PiVxeFDCbJzQ2J0="), in provideAlgorithmAndTestBaseEncodedValue()
[all …]

12345678910>>...1142