HomeSort by relevance Sort by last modified time
    Searched refs:algorithm (Results 276 - 300 of 492) sorted by null

<<11121314151617181920

  /external/webkit/JavaScriptCore/API/
JSRetainPtr.h 33 #include <algorithm>
  /external/webkit/JavaScriptCore/wtf/
OwnPtr.h 28 #include <algorithm>
  /external/webkit/WebCore/platform/graphics/
FloatRect.cpp 32 #include <algorithm>
  /external/webkit/WebCore/platform/image-decoders/
ImageDecoder.cpp 26 #include <algorithm>
  /ndk/sources/android/stlport/test/unit/
adj_test.cpp 3 #include <algorithm>
iter_test.cpp 3 #include <algorithm>
mfunptr_test.cpp 4 #include <algorithm>
sort_test.cpp 2 #include <algorithm>
158 * that can result in a bad sort algorithm behavior. The type
swap_test.cpp 2 #include <algorithm>
  /external/astl/include/
memory 36 #include <algorithm>
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
PEMWriter.java 211 String algorithm,
281 String dekAlgName = Strings.toUpperCase(algorithm);
  /external/ipsec-tools/
setup.c 34 #include "algorithm.h"
164 static void add_sainfo_algorithm(int class, int algorithm, int length)
167 p->alg = algorithm;
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureSpiTest.java 291 protected MySignature(String algorithm) {
292 super(algorithm);
  /bionic/libc/netbsd/nameser/
ns_print.c 464 u_int keyflags, protocol, algorithm, key_id; local
471 /* Key flags, Protocol, Algorithm. */
479 algorithm = *rdata++;
481 keyflags, protocol, algorithm));
510 u_int typ, algorithm, labels, footprint; local
518 /* Type covered, Algorithm, Label count, Original TTL. */
520 algorithm = *rdata++;
524 p_type((int)typ), algorithm, labels, t));
633 /* Algorithm name. */
  /libcore/luni/src/main/native/
NativeCrypto.cpp 671 static void NativeCrypto_EVP_DigestInit(JNIEnv* env, jclass, EVP_MD_CTX* ctx, jstring algorithm) {
672 JNI_TRACE("NativeCrypto_EVP_DigestInit(%p, %p)", ctx, algorithm);
674 if (ctx == NULL || algorithm == NULL) {
679 ScopedUtfChars algorithmChars(env, algorithm);
688 jniThrowRuntimeException(env, "Hash algorithm not found");
766 static void NativeCrypto_EVP_VerifyInit(JNIEnv* env, jclass, EVP_MD_CTX* ctx, jstring algorithm) {
767 JNI_TRACE("NativeCrypto_EVP_VerifyInit(%p, %p)", ctx, algorithm);
769 if (ctx == NULL || algorithm == NULL) {
774 ScopedUtfChars algorithmChars(env, algorithm);
783 jniThrowRuntimeException(env, "Hash algorithm not found")
    [all...]
  /cts/tools/host/src/com/android/cts/
TestPackage.java 773 final String algorithm = "SHA-1"; local
776 MessageDigest md = MessageDigest.getInstance(algorithm);
785 return algorithm + " not found";
    [all...]
  /external/v8/tools/
splaytree.js 213 * tree. This is the simplified top-down splaying algorithm from:
225 // the L tree of the algorithm. The left child of the dummy node
226 // will hold the R tree of the algorithm. Using a dummy node, left
  /external/openssl/crypto/pkcs7/
pk7_smime.c 249 if (!OBJ_cmp(si->digest_alg->algorithm,
250 sitmp->digest_alg->algorithm))
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
HandshakeCompletedEventTest.java 676 String algorithm = KeyManagerFactory.getDefaultAlgorithm(); local
677 KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance(algorithm);
SSLServerSocketTest.java 578 String algorithm = KeyManagerFactory.getDefaultAlgorithm(); local
579 KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance(algorithm);
SSLSessionTest.java 644 String algorithm = KeyManagerFactory.getDefaultAlgorithm(); local
645 KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance(algorithm);
  /libcore/luni/src/test/java/tests/security/cert/
CertPathBuilder1Test.java 118 * Test for <code>getInstance(String algorithm)</code> method
120 * throws NullPointerException when algorithm is null
121 * throws NoSuchAlgorithmException when algorithm is not correct
146 * Test for <code>getInstance(String algorithm)</code> method
162 assertEquals("Incorrect algorithm", cpb.getAlgorithm(), validValues[i]);
166 * Test for <code>getInstance(String algorithm, String provider)</code> method
199 * Test for <code>getInstance(String algorithm, String provider)</code> method
226 * Test for <code>getInstance(String algorithm, String provider)</code> method
228 * throws NullPointerException when algorithm is null
229 * throws NoSuchAlgorithmException when algorithm is not correc
    [all...]
  /libcore/support/src/test/java/libcore/java/security/
TestKeyStore.java 347 * algorithm. Throws IllegalStateException if there are are more
352 String algorithm) {
361 if (!privateKey.getPrivateKey().getAlgorithm().equals(algorithm)) {
  /external/chromium/base/
string_piece.cc 6 #include <algorithm>
string_piece.h 21 #include <algorithm>

Completed in 558 milliseconds

<<11121314151617181920