| /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/template.bitset/bitset.members/ | 
| to_ulong.pass.cpp | 13 #include <algorithm> 
 | 
| /prebuilts/ndk/r13/sources/third_party/googletest/googletest/samples/ | 
| prime_tables.h | 40 #include <algorithm> 
 | 
| /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/SPIRV/ | 
| Logger.cpp | 37 #include <algorithm> 
 | 
| /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/ | 
| validate.h | 30 #include <algorithm> 63 /// Computes dominators using the algorithm of Cooper, Harvey, and Kennedy
 64 /// "A Simple, Fast Dominance Algorithm", 2001.
 66 /// The algorithm assumes there is a unique root node (a node without
 70 /// Uses the dominator algorithm by Cooper et al.
 
 | 
| /prebuilts/ndk/r13/sources/third_party/vulkan/glslang/SPIRV/ | 
| Logger.cpp | 37 #include <algorithm> 
 | 
| /system/bt/types/ | 
| raw_address.cc | 24 #include <algorithm> 
 | 
| /system/core/base/ | 
| parsenetaddress.cpp | 19 #include <algorithm> 
 | 
| /system/extras/simpleperf/ | 
| build_id.h | 21 #include <algorithm> 
 | 
| /system/tpm/trunks/ | 
| tpm_state_impl.h | 60   bool GetAlgorithmProperties(TPM_ALG_ID algorithm, 75   // Queries algorithm properties and populates algorithm_properties_.
 
 | 
| /system/update_engine/payload_consumer/ | 
| extent_writer.cc | 23 #include <algorithm> 
 | 
| /cts/tests/tests/keystore/src/android/keystore/cts/ | 
| AuthorizationList.java | 46     // Algorithm values. 156     private Integer algorithm;  field in class:AuthorizationList
 199                     algorithm = Asn1Utils.getIntegerFromAsn1(value);
 271     public static String algorithmToString(int algorithm) {
 272         switch (algorithm) {
 360         return algorithm;
 499         if (algorithm != null) {
 500             s.append("\nAlgorithm: ").append(algorithmToString(algorithm));
 
 | 
| /external/vboot_reference/tests/ | 
| vboot_firmware_tests.c | 73     mpreamble[i].kernel_subkey.algorithm = 7 + i; 134   /* Mock uses algorithm!0 to mean invalid key */
 135   if (key->algorithm)
 269   vblock[1].data_key.algorithm = 1;  /* Simulate invalid data key */
 345   TEST_EQ(shared->kernel_subkey.algorithm, 7, "Copy kernel subkey");
 358   TEST_EQ(shared->kernel_subkey.algorithm, 7, "Copy kernel subkey");
 370   TEST_EQ(shared->kernel_subkey.algorithm, 8, "Copy kernel subkey");
 388   TEST_EQ(shared->kernel_subkey.algorithm, 7, "Copy kernel subkey");
 
 | 
| /external/curl/lib/vauth/ | 
| digest.c | 249  * alg     [in/out] - The buffer where the algorithm will be stored. 250  * alen    [in]     - The length of the algorithm buffer.
 292   /* Retrieve algorithm string from the challenge */
 293   if(!auth_digest_get_key_value((char *) chlg, "algorithm=", alg, alen, ',')) {
 359   char algorithm[64];  local
 372                                           algorithm, sizeof(algorithm),
 378   if(strcmp(algorithm, "md5-sess") != 0)
 600       else if(strcasecompare(value, "algorithm")) {
 601         free(digest->algorithm);
 [all...]
 | 
| /external/apache-http/android/src/android/net/http/ | 
| RequestHandle.java | 241                                         String algorithm, 245                 username, password, realm, nonce, QOP, algorithm, opaque);
 305                                              String algorithm,
 339          if (algorithm != null) {
 340             response += ", algorithm=" +  algorithm;
 
 | 
| /frameworks/base/keystore/java/android/security/ | 
| KeyChain.java | 525      * specific {@code PrivateKey} type indicated by {@code algorithm} (e.g., 529             @NonNull @KeyProperties.KeyAlgorithmEnum String algorithm) {
 530         final String algUpper = algorithm.toUpperCase(Locale.US);
 537      * {@code PrivateKey} of the given {@code algorithm} to the device once
 556             @NonNull @KeyProperties.KeyAlgorithmEnum String algorithm) {
 557         if (!isKeyAlgorithmSupported(algorithm)) {
 561         return KeyStore.getInstance().isHardwareBacked(algorithm);
 
 | 
| /external/conscrypt/testing/src/main/java/libcore/java/security/ | 
| TestKeyStore.java | 149             // algorithm come from the default providers 598                         throw new IllegalArgumentException("Unknown key algorithm " + keyAlgorithm);
 608                                 "Must either have set algorithm parameters or key size!");
 699             throw new IllegalArgumentException("Unknown key algorithm " + keyAlgorithm);
 [all...]
 | 
| /libcore/support/src/test/java/libcore/java/security/ | 
| TestKeyStore.java | 147             // algorithm come from the default providers 588                         throw new IllegalArgumentException("Unknown key algorithm " + keyAlgorithm);
 597                         throw new AssertionError("Must either have set algorithm parameters or key size!");
 704             throw new IllegalArgumentException("Unknown key algorithm " + keyAlgorithm);
 [all...]
 | 
| StandardNames.java | 61  * Java ™ Cryptography Architecture Standard Algorithm Name Documentation 96      * A map from algorithm type (e.g. Cipher) to a set of algorithms (e.g. AES, DES, ...)
 110     private static void provide(String type, String algorithm) {
 116         assertTrue("Duplicate " + type + " " + algorithm,
 117                    algorithms.add(algorithm.toUpperCase(Locale.ROOT)));
 119     private static void unprovide(String type, String algorithm) {
 122         assertTrue(algorithm, algorithms.remove(algorithm.toUpperCase(Locale.ROOT)));
 127     private static void provideCipherModes(String algorithm, String newModes[]) {
 128         Set<String> modes = CIPHER_MODES.get(algorithm);
 [all...]
 | 
| /frameworks/base/core/java/android/util/jar/ | 
| StrictJarVerifier.java | 229             final String algorithm = DIGEST_ALGORITHMS[i];  local 230             final String hash = attributes.getValue(algorithm + "-Digest");
 237                 return new VerifierEntry(name, MessageDigest.getInstance(algorithm), hashBytes,
 471             String algorithm = DIGEST_ALGORITHMS[i];  local
 472             String hash = attributes.getValue(algorithm + entry);
 479                 md = MessageDigest.getInstance(algorithm);
 
 | 
| /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ | 
| KeyFactory2Test.java | 98                         "algorithm name"); 99                 assertEquals("algorithm name", kf.getAlgorithm());
 125             assertEquals("generatePrivate generated different key for algorithm " + keyfactAlgs[i],
 129             assertEquals("generatePrivate generated different key for algorithm " + keyfactAlgs[i],
 155                     "generatePublic generated different key for algorithm "
 169             assertTrue("getAlgorithm ok for algorithm " + keyfactAlgs[i],
 250                     "generatePrivate generated different key for algorithm "
 256                     "generatePublic generated different key for algorithm "
 279             assertNotNull("provider is null for algorithm " + keyfactAlgs[i], p);
 330             String algorithm = (String) e.nextElement()  local
 [all...]
 | 
| /compatibility/cdd/9_security-model/ | 
| 9_11_keys-and-credentials.md | 11 have an exponential backoff algorithm. Beyond 150 failed attempts, the delay 
 | 
| /external/autotest/server/site_tests/firmware_UpdateFirmwareDataKeyVersion/files/ | 
| common.sh | 50 # Emit .vbpubk and .vbprivk using given basename and algorithm 77     --algorithm $alg
 83     --algorithm $alg
 
 | 
| /external/autotest/server/site_tests/firmware_UpdateKernelDataKeyVersion/files/ | 
| common.sh | 50 # Emit .vbpubk and .vbprivk using given basename and algorithm 77     --algorithm $alg
 83     --algorithm $alg
 
 | 
| /external/autotest/server/site_tests/firmware_UpdateKernelSubkeyVersion/files/ | 
| common.sh | 50 # Emit .vbpubk and .vbprivk using given basename and algorithm 77     --algorithm $alg
 83     --algorithm $alg
 
 | 
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ | 
| BaseCipherSpi.java | 90     protected final AlgorithmParameters createParametersInstance(String algorithm) 93         return helper.createAlgorithmParameters(algorithm);
 181                  * The caller doesn't know the algorithm as it is part of
 196                     throw new InvalidKeyException("algorithm " + in.getPrivateKeyAlgorithm().getAlgorithm() + " not supported");
 
 |