HomeSort by relevance Sort by last modified time
    Searched refs:algorithm (Results 101 - 125 of 3728) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/content/child/webcrypto/
algorithm_implementation.cc 17 const blink::WebCryptoAlgorithm& algorithm,
25 const blink::WebCryptoAlgorithm& algorithm,
32 Status AlgorithmImplementation::Sign(const blink::WebCryptoAlgorithm& algorithm,
40 const blink::WebCryptoAlgorithm& algorithm,
49 const blink::WebCryptoAlgorithm& algorithm,
69 const blink::WebCryptoAlgorithm& algorithm,
77 const blink::WebCryptoAlgorithm& algorithm,
94 const blink::WebCryptoAlgorithm& algorithm,
103 const blink::WebCryptoAlgorithm& algorithm,
112 const blink::WebCryptoAlgorithm& algorithm,
    [all...]
structured_clone.h 23 bool DeserializeKeyForClone(const blink::WebCryptoKeyAlgorithm& algorithm,
  /libcore/luni/src/main/java/javax/crypto/
ExemptionMechanism.java 88 * specified exemption mechanism algorithm.
90 * @param algorithm
94 * if the specified algorithm is not available by any provider.
96 * if the algorithm parameter is {@code null}.
98 public static final ExemptionMechanism getInstance(String algorithm)
100 if (algorithm == null) {
101 throw new NullPointerException("algorithm == null");
103 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
104 return new ExemptionMechanism((ExemptionMechanismSpi) sap.spi, sap.provider, algorithm);
109 * specified exemption mechanism algorithm from the specified provider
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
find_format.hpp 14 #include <boost/algorithm/string/config.hpp>
18 #include <boost/algorithm/string/detail/find_format_store.hpp>
19 #include <boost/algorithm/string/detail/replace_storage.hpp>
22 namespace algorithm { namespace in namespace:boost
78 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) ) {
79 return ::boost::algorithm::detail::find_format_copy_impl2(
139 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) ) {
140 return ::boost::algorithm::detail::find_format_copy_impl2(
179 ::boost::algorithm::detail::replace( Input, M.begin(), M.end(), M.format_result() );
191 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) )
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
TrustManagerFactoryTest.java 57 private static boolean supportsManagerFactoryParameters(String algorithm) {
58 return (StandardNames.IS_RI && algorithm.equals("PKIX"));
62 String algorithm = TrustManagerFactory.getDefaultAlgorithm(); local
63 assertEquals(StandardNames.TRUST_MANAGER_FACTORY_DEFAULT, algorithm);
64 TrustManagerFactory tmf = TrustManagerFactory.getInstance(algorithm);
185 String algorithm = service.getAlgorithm(); local
187 TrustManagerFactory tmf = TrustManagerFactory.getInstance(algorithm);
188 assertEquals(algorithm, tmf.getAlgorithm());
193 TrustManagerFactory tmf = TrustManagerFactory.getInstance(algorithm,
195 assertEquals(algorithm, tmf.getAlgorithm())
231 String algorithm = service.getAlgorithm(); local
254 String algorithm = TrustManagerFactory.getDefaultAlgorithm(); local
284 String algorithm = "RSA"; local
    [all...]
  /external/chromium_org/content/child/webcrypto/test/
hmac_unittest.cc 22 // Creates an HMAC algorithm whose parameters struct is compatible with key
50 blink::WebCryptoAlgorithm algorithm = local
61 EXPECT_EQ(test_hash.id(), key.algorithm().hmacParams()->hash().id());
62 EXPECT_EQ(test_key.size() * 8, key.algorithm().hmacParams()->lengthBits());
73 Sign(algorithm, key, CryptoData(test_message), &output));
79 Verify(algorithm,
88 Verify(algorithm,
97 Verify(algorithm,
107 Verify(algorithm,
122 blink::WebCryptoAlgorithm algorithm local
147 blink::WebCryptoAlgorithm algorithm = local
165 blink::WebCryptoAlgorithm algorithm = local
261 blink::WebCryptoAlgorithm algorithm = local
413 blink::WebCryptoAlgorithm algorithm = local
    [all...]
  /external/chromium_org/chrome/browser/metrics/variations/
generated_resources_map_lookup.cc 7 #include <algorithm>
  /external/chromium_org/chrome/test/base/
browser_tests_main.cc 5 #include <algorithm>
  /external/chromium_org/components/history/core/browser/
page_usage_data.cc 7 #include <algorithm>
  /external/chromium_org/net/base/
test_data_stream.h 9 #include <algorithm>
  /external/chromium_org/net/quic/congestion_control/
tcp_loss_algorithm.h 8 #include <algorithm>
time_loss_algorithm.h 8 #include <algorithm>
19 // A loss detection algorithm which avoids spurious losses and retransmissions
  /external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
V8CryptoKeyCustom.cpp 35 virtual void setAlgorithm(const char* propertyName, const blink::WebCryptoAlgorithm& algorithm)
37 ASSERT(algorithm.paramsType() == blink::WebCryptoAlgorithmParamsTypeNone);
40 algorithmValue.set("name", blink::WebCryptoAlgorithm::lookupAlgorithmInfo(algorithm.id())->name);
63 impl->key().algorithm().writeToDictionary(&builder);
V8SubtleCryptoCustom.cpp 20 // Promise verify(Dictionary algorithm, CryptoKey key, ArrayBuffer signature, ArrayBuffer data);
24 TONATIVE_VOID(Dictionary, algorithm, Dictionary(info[0], info.GetIsolate()));
25 if (!algorithm.isUndefinedOrNull() && !algorithm.isObject()) {
26 V8ThrowException::throwTypeError(ExceptionMessages::failedToExecute("verify", "SubtleCrypto", "parameter 1 ('algorithm') is not an object."), info.GetIsolate());
32 v8SetReturnValue(info, impl->verifySignature(ScriptState::current(info.GetIsolate()), algorithm, key, signature, data).v8Value());
35 // Promise verify(Dictionary algorithm, CryptoKey key, ArrayBuffer signature, ArrayBufferView data);
39 TONATIVE_VOID(Dictionary, algorithm, Dictionary(info[0], info.GetIsolate()));
40 if (!algorithm.isUndefinedOrNull() && !algorithm.isObject())
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
context.cpp 23 #include <algorithm>
  /external/deqp/framework/delibs/decpp/
deMemPool.cpp 26 #include <algorithm>
  /external/libcxx/test/algorithms/alg.modifying.operations/alg.generate/
generate.pass.cpp 10 // <algorithm>
18 #include <algorithm>
  /external/libcxx/test/algorithms/alg.modifying.operations/alg.random.shuffle/
random_shuffle_rand.pass.cpp 10 // <algorithm>
18 #include <algorithm>
  /external/libcxx/test/algorithms/alg.nonmodifying/alg.count/
count.pass.cpp 10 // <algorithm>
17 #include <algorithm>
  /external/libcxx/test/algorithms/alg.nonmodifying/alg.find/
find.pass.cpp 10 // <algorithm>
17 #include <algorithm>
  /external/mesa3d/src/gallium/state_trackers/clover/core/
context.cpp 23 #include <algorithm>
  /external/stlport/stlport/
algorithm 47 # include_next <algorithm>
49 # include _STLP_NATIVE_HEADER(algorithm)
  /external/stlport/test/unit/
times_test.cpp 1 #include <algorithm>
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.generate/
generate.pass.cpp 10 // <algorithm>
18 #include <algorithm>
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.random.shuffle/
random_shuffle_rand.pass.cpp 10 // <algorithm>
18 #include <algorithm>

Completed in 1773 milliseconds

1 2 3 45 6 7 8 91011>>