HomeSort by relevance Sort by last modified time
    Searched defs:algorithm (Results 151 - 175 of 469) sorted by null

1 2 3 4 5 67 8 91011>>

  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyStoreTest.java 173 String algorithm = service.getAlgorithm(); local
174 KeyStore ks = KeyStore.getInstance(algorithm, provider);
176 assertEquals(algorithm, ks.getType());
450 String algorithm = service.getAlgorithm(); local
451 KeyStore ks = KeyStore.getInstance(algorithm, provider);
453 assertEquals(algorithm, ks.getType());
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/
PKCS12KeyStoreSpi.java 617 ASN1ObjectIdentifier algorithm = algId.getAlgorithm(); local
620 if (algorithm.on(PKCSObjectIdentifiers.pkcs_12PbeIds))
627 Cipher cipher = helper.createCipher(algorithm.getId());
633 // we pass "" as the key algorithm type as it is unknown at this point
636 else if (algorithm.equals(PKCSObjectIdentifiers.id_PBES2))
641 // we pass "" as the key algorithm type as it is unknown at this point
650 throw new IOException("exception unwrapping private key - cannot recognise: " + algorithm);
654 String algorithm,
665 SecretKeyFactory keyFact = helper.createSecretKeyFactory(algorithm);
670 Cipher cipher = helper.createCipher(algorithm);
692 ASN1ObjectIdentifier algorithm = algId.getAlgorithm(); local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
ir_emitter_unnested.cc 424 int64 algorithm = algorithm_inst->literal().Get<int64>({}); local
445 algorithm, tensor_ops_enabled, custom_call);
458 algorithm, tensor_ops_enabled, custom_call);
471 algorithm, tensor_ops_enabled, custom_call);
566 // we have a special algorithm that modifies the output in place without
696 // This is the same algorithm in CUDA:
    [all...]
  /external/tensorflow/tensorflow/stream_executor/
dnn.h 725 // algorithm: returns the exact algorithm that was used.
733 AlgorithmDesc algorithm() const { return algorithm_; } function in class:perftools::gputools::dnn::ProfileResult
746 // algorithm: the primary algorithm that should be used.
747 // algorithm_no_scratch: a secondary algorithm that should be used, if the
752 explicit AlgorithmConfig(AlgorithmDesc algorithm) : algorithm_(algorithm) {}
753 AlgorithmConfig(AlgorithmDesc algorithm, AlgorithmDesc algorithm_no_scratch)
754 : algorithm_(algorithm), algorithm_no_scratch_(algorithm_no_scratch) {
755 AlgorithmDesc algorithm() const { return algorithm_; } function in class:perftools::gputools::dnn::AlgorithmConfig
    [all...]
  /external/vboot_reference/firmware/include/
vboot_struct.h 19 /* Signature algorithm used by the key */
20 uint64_t algorithm; member in struct:VbPublicKey
  /frameworks/base/media/jni/
android_media_MediaDrm.cpp 1566 String8 algorithm = JStringToString8(env, jalgorithm); local
1590 String8 algorithm = JStringToString8(env, jalgorithm); local
1755 String8 algorithm = JStringToString8(env, jalgorithm); local
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
FrameParser.java 569 short algorithm = data.getShort(); local
572 switch (algorithm) {
588 // Ignore unknown algorithm -- don't know which frames would have result codes.
627 return "Unsupported authentication algorithm";
  /hardware/intel/common/libva/va/
va_vpp.h 140 * deint.algorithm = VAProcDeinterlacingMotionAdaptive;
154 * needed by the specified deinterlacing algorithm, the supported color
267 /** \brief Bob deinterlacing algorithm. */
269 /** \brief Weave deinterlacing algorithm. */
271 /** \brief Motion adaptive deinterlacing algorithm. */
273 /** \brief Motion compensated deinterlacing algorithm. */
783 /** \brief Deinterlacing algorithm. */
784 VAProcDeinterlacingType algorithm; member in struct:_VAProcFilterParameterBufferDeinterlacing
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLSessionTest.java 644 String algorithm = KeyManagerFactory.getDefaultAlgorithm(); local
645 KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance(algorithm);
  /libcore/luni/src/test/java/libcore/java/security/
ProviderTest.java 127 String algorithm = service.getAlgorithm().toUpperCase(); local
132 + " " + algorithm
138 if (remainingAlgorithms == null || !remainingAlgorithms.remove(algorithm)) {
140 // algorithm is available from multiple providers
145 && StandardNames.PROVIDER_ALGORITHMS.get(type).contains(algorithm))) {
146 extra.add("Unknown " + type + " " + algorithm + " " + providerName + "\n");
148 } else if ("Cipher".equals(type) && !algorithm.contains("/")) {
157 if (parts.length == 3 && algorithm.equals(parts[0])) {
301 * Helper function to fetch services for Service.Algorithm IDs
777 // This triggers a re-indexing of the algorithm id data
    [all...]
SignatureTest.java 267 protected MySignature(String algorithm) {
268 super(algorithm);
491 String algorithm = service.getAlgorithm(); local
493 KeyPair kp = keyPair(algorithm, provider.getName());
495 Signature sig1 = Signature.getInstance(algorithm);
496 assertEquals(algorithm, sig1.getAlgorithm());
500 Signature sig2 = Signature.getInstance(algorithm, provider);
501 assertEquals(algorithm, sig2.getAlgorithm());
506 Signature sig3 = Signature.getInstance(algorithm, provider.getName());
507 assertEquals(algorithm, sig3.getAlgorithm())
    [all...]
  /libcore/ojluni/src/main/java/java/security/
Provider.java 52 * algorithm-specific keys).
898 private final String algorithm; field in class:Provider.ServiceKey
900 private ServiceKey(String type, String algorithm, boolean intern) {
902 this.originalAlgorithm = algorithm;
903 algorithm = algorithm.toUpperCase(ENGLISH);
904 this.algorithm = intern ? algorithm.intern() : algorithm;
907 return type.hashCode() + algorithm.hashCode()
1167 String algorithm = s.getAlgorithm(); local
1184 String algorithm = s.getAlgorithm(); local
1206 String algorithm = s.getAlgorithm(); local
1266 String algorithm = s.getAlgorithm(); local
1429 private String type, algorithm, className; field in class:Provider.Service
    [all...]
  /system/security/keystore/
key_store_service.cpp 25 #include <algorithm>
437 params.push_back(TAG_ALGORITHM, Algorithm::EC);
449 params.push_back(TAG_ALGORITHM, Algorithm::RSA);
526 params.push_back(TAG_ALGORITHM, Algorithm::RSA);
529 params.push_back(TAG_ALGORITHM, Algorithm::EC);
833 auto algorithm = authorizationValue(TAG_ALGORITHM, param); local
1067 auto algorithm = authorizationValue(TAG_ALGORITHM, param); local
2155 auto algorithm = getKeyAlgoritmFromKeyCharacteristics(characteristics); local
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/internal/apk/
ApkSigningBlockUtils.java 142 * integrity is expected to verify on Android for each algorithm in
405 // For each digest algorithm the result is computed as follows:
1110 public final SignatureAlgorithm algorithm; field in class:ApkSigningBlockUtils.SupportedSignature
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
ieee80211.h 1140 u16 algorithm; member in struct:ieee80211_auth
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
TaskStack.java 565 final DividerSnapAlgorithm algorithm = new DividerSnapAlgorithm( local
569 final SnapTarget target = algorithm.calculateNonDismissingSnapTarget(dividerPosition);
    [all...]
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
ZFile.java 94 * Allocation of files to empty areas is done using a <em>best fit</em> algorithm. When adding a
1911 FileUseMap.PositionAlgorithm algorithm; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/
aether-connector-basic-1.0.2.v20150114.jar 
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/
jce.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/
jce.jar 
  /prebuilts/tools/common/m2/repository/org/bitbucket/b_c/jose4j/0.5.0/
jose4j-0.5.0.jar 
  /external/boringssl/src/include/openssl/
asn1.h 485 ASN1_OBJECT *algorithm; member in struct:X509_algor_st
    [all...]
  /external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/crypto/
CipherTest.java 121 private static boolean isSupported(String algorithm, String provider) {
122 if (algorithm.equals("RC2")) {
125 if (algorithm.equals("PBEWITHMD5ANDRC2")) {
128 if (algorithm.startsWith("PBEWITHSHA1ANDRC2")) {
131 if (algorithm.equals("PBEWITHSHAAND40BITRC2-CBC")) {
134 if (algorithm.equals("PBEWITHSHAAND128BITRC2-CBC")) {
137 if (algorithm.equals("PBEWITHSHAANDTWOFISH-CBC")) {
141 if (algorithm.equals("PBEWITHMD5ANDTRIPLEDES")) {
147 (algorithm.equals("AES/CFB/PKCS5PADDING")
148 || algorithm.equals("AES/CFB/PKCS7PADDING"
977 String algorithm = encryptCipher.getAlgorithm().toUpperCase(Locale.US); local
1005 String algorithm = "PBEWITHMD5ANDTRIPLEDES"; external variable declarations
1038 String algorithm = service.getAlgorithm().toUpperCase(Locale.US); local
1146 String algorithm = c.getAlgorithm().toUpperCase(Locale.US); local
    [all...]
  /external/webrtc/talk/app/webrtc/
webrtcsdp.cc 32 #include <algorithm>
2002 std::string algorithm; local
    [all...]
  /frameworks/base/services/autofill/java/com/android/server/autofill/
Session.java 1337 final String algorithm = userData.getFieldClassificationAlgorithm(); local
    [all...]

Completed in 1948 milliseconds

1 2 3 4 5 67 8 91011>>