| /external/sdv/vsomeip/third_party/boost/range/include/boost/range/ |
| D | algorithm.hpp | 2 /// \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 …]
|
| /external/sdv/vsomeip/third_party/boost/range/doc/reference/ |
| D | algorithms.qbk | 8 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 …]
|
| /external/sdv/vsomeip/third_party/boost/algorithm/include/boost/algorithm/string/ |
| D | erase.hpp | 14 #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 …]
|
| D | replace.hpp | 14 #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 …]
|
| D | regex.hpp | 14 #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 …]
|
| /external/aws-sdk-java-v2/core/sdk-core/src/test/java/software/amazon/awssdk/core/checksum/ |
| D | ChecksumInstantiationTest.java | 27 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 …]
|
| /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/util/ |
| D | DefaultJcaJceHelper.java | 39 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 …]
|
| D | ProviderJcaJceHelper.java | 46 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 …]
|
| D | NamedJcaJceHelper.java | 46 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/ |
| D | DefaultJcaJceHelper.java | 37 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 …]
|
| D | ProviderJcaJceHelper.java | 44 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 …]
|
| D | NamedJcaJceHelper.java | 44 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/ |
| D | DefaultJcaJceHelper.java | 39 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 …]
|
| D | ProviderJcaJceHelper.java | 46 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 …]
|
| D | NamedJcaJceHelper.java | 46 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/ltp/include/ |
| D | tst_af_alg.h | 22 * Create an AF_ALG algorithm socket. 24 * This creates an AF_ALG algorithm socket that is initially not bound to any 25 * particular algorithm. On failure, tst_brk() is called with TCONF if the 28 * @return a new AF_ALG algorithm socket 33 * Bind an AF_ALG algorithm socket to an algorithm. 35 * @param algfd An AF_ALG algorithm socket 36 * @param addr A structure which specifies the algorithm to use 39 * specified algorithm, otherwise TBROK. 44 * Bind an AF_ALG algorithm socket to an algorithm. 46 * @param algfd An AF_ALG algorithm socket [all …]
|
| /external/sdv/vsomeip/third_party/boost/range/doc/ |
| D | headers.qbk | 33 …[[`<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/mbedtls/include/psa/ |
| D | crypto_values.h | 70 * 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 …]
|
| /external/openthread/third_party/mbedtls/repo/include/psa/ |
| D | crypto_values.h | 69 * parameter such as a key type, algorithm, etc. is not recognized. 239 * an algorithm with a randomized result, as well as functions that 329 /** \defgroup crypto_types Key and algorithm types 422 * The key policy determines which underlying hash algorithm the key can be 427 * \c alg is the HMAC algorithm or the underlying hash algorithm. */ 432 * The key policy determines which key derivation algorithm the key 437 /** Key for a cipher, AEAD or MAC algorithm based on the AES block cipher. 444 /** Key for a cipher, AEAD or MAC algorithm based on the 448 /** Key for a cipher or MAC algorithm based on DES or 3DES (Triple-DES). 459 /** Key for a cipher, AEAD or MAC algorithm based on the [all …]
|
| /external/sdv/vsomeip/third_party/boost/algorithm/doc/ |
| D | algorithm.qbk | 1 [library The Boost Algorithm Library 3 [id algorithm] 4 [dirname algorithm] 19 Boost.Algorithm is a collection of general purpose algorithms. While Boost contains many libraries … 25 … test cases. Knuth's _The Art of Computer Programming_ is chock-full of algorithm descriptions, to… 27 My goal is to run regular algorithm reviews, similar to the Boost library review process, but with … 31 Boost.Algorithm uses Boost.Range, Boost.Assert, Boost.Array, Boost.TypeTraits, and Boost.StaticAsse… 64 [*[^[link header.boost.algorithm.cxx11.partition_copy_hpp partition_copy] ]… 69 [*[^[link header.boost.algorithm.cxx11.copy_if_hpp copy_if] ]… 74 [*[^[link header.boost.algorithm.cxx11.copy_n_hpp copy_n] ]… [all …]
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | displayvideo_v1.customBiddingAlgorithms.html | 87 …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", # Immutable. The unique ID of the advertiser that owns the custom bidding algorithm. 119 …quot;A String", # Output only. The unique ID of the custom bidding algorithm. Assigned by the… 120 …gAlgorithmState": "A String", # Output only. The status of custom bidding algorithm. 121 …rithmType": "A String", # Required. Immutable. The type of custom bidding algorithm. 122 …quot;A String", # Required. The display name of the custom bidding algorithm. Must be UTF-8 e… [all …]
|
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/ |
| D | SymmetricAlgorithmProvider.java | 13 String algorithm, 17 provider.addAlgorithm("Mac." + algorithm + "-CMAC", algorithmClassName); 18 provider.addAlgorithm("Alg.Alias.Mac." + algorithm + "CMAC", algorithm + "-CMAC"); 20 provider.addAlgorithm("KeyGenerator." + algorithm + "-CMAC", keyGeneratorClassName); 21 provider.addAlgorithm("Alg.Alias.KeyGenerator." + algorithm + "CMAC", algorithm + "-CMAC"); 26 String algorithm, 30 provider.addAlgorithm("Mac." + algorithm + "-GMAC", algorithmClassName); 31 provider.addAlgorithm("Alg.Alias.Mac." + algorithm + "GMAC", algorithm + "-GMAC"); 33 provider.addAlgorithm("KeyGenerator." + algorithm + "-GMAC", keyGeneratorClassName); 34 provider.addAlgorithm("Alg.Alias.KeyGenerator." + algorithm + "GMAC", algorithm + "-GMAC"); [all …]
|
| /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/symmetric/ |
| D | SymmetricAlgorithmProvider.java | 14 String algorithm, 18 provider.addAlgorithm("Mac." + algorithm + "-CMAC", algorithmClassName); 19 provider.addAlgorithm("Alg.Alias.Mac." + algorithm + "CMAC", algorithm + "-CMAC"); 21 provider.addAlgorithm("KeyGenerator." + algorithm + "-CMAC", keyGeneratorClassName); 22 provider.addAlgorithm("Alg.Alias.KeyGenerator." + algorithm + "CMAC", algorithm + "-CMAC"); 27 String algorithm, 31 provider.addAlgorithm("Mac." + algorithm + "-GMAC", algorithmClassName); 32 provider.addAlgorithm("Alg.Alias.Mac." + algorithm + "GMAC", algorithm + "-GMAC"); 34 provider.addAlgorithm("KeyGenerator." + algorithm + "-GMAC", keyGeneratorClassName); 35 provider.addAlgorithm("Alg.Alias.KeyGenerator." + algorithm + "GMAC", algorithm + "-GMAC"); [all …]
|
| /external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jcajce/provider/symmetric/ |
| D | SymmetricAlgorithmProvider.java | 14 String algorithm, 18 provider.addAlgorithm("Mac." + algorithm + "-CMAC", algorithmClassName); 19 provider.addAlgorithm("Alg.Alias.Mac." + algorithm + "CMAC", algorithm + "-CMAC"); 21 provider.addAlgorithm("KeyGenerator." + algorithm + "-CMAC", keyGeneratorClassName); 22 provider.addAlgorithm("Alg.Alias.KeyGenerator." + algorithm + "CMAC", algorithm + "-CMAC"); 27 String algorithm, 31 provider.addAlgorithm("Mac." + algorithm + "-GMAC", algorithmClassName); 32 provider.addAlgorithm("Alg.Alias.Mac." + algorithm + "GMAC", algorithm + "-GMAC"); 34 provider.addAlgorithm("KeyGenerator." + algorithm + "-GMAC", keyGeneratorClassName); 35 provider.addAlgorithm("Alg.Alias.KeyGenerator." + algorithm + "GMAC", algorithm + "-GMAC"); [all …]
|
| /external/cronet/net/android/java/src/org/chromium/net/ |
| D | AndroidKeyStore.java | 31 * Check if a given PrivateKey object supports a signature algorithm. 34 * @param algorithm The signature algorithm to use. 35 * @return whether the algorithm is supported. 38 private static boolean privateKeySupportsSignature(PrivateKey privateKey, String algorithm) { in privateKeySupportsSignature() argument 40 Signature signature = Signature.getInstance(algorithm); in privateKeySupportsSignature() 45 Log.e(TAG, "Exception while checking support for " + algorithm + ": " + e); in privateKeySupportsSignature() 52 * Check if a given PrivateKey object supports an encryption algorithm. 55 * @param algorithm The signature algorithm to use. 56 * @return whether the algorithm is supported. 59 private static boolean privateKeySupportsCipher(PrivateKey privateKey, String algorithm) { in privateKeySupportsCipher() argument [all …]
|