HomeSort by relevance Sort by last modified time
    Searched defs:spec (Results 26 - 50 of 364) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/grpc-grpc-java/okhttp/src/test/java/io/grpc/okhttp/
UtilsTest.java 54 ConnectionSpec spec = Utils.convertSpec(squareSpec); local
57 List<TlsVersion> tlsVersions = spec.tlsVersions();
60 List<CipherSuite> cipherSuites = spec.cipherSuites();
63 assertTrue(spec.isTls());
64 assertTrue(spec.supportsTlsExtensions());
  /cts/tests/tests/keystore/src/android/keystore/cts/
TestUtils.java 54 import java.security.spec.ECParameterSpec;
55 import java.security.spec.EllipticCurve;
56 import java.security.spec.InvalidKeySpecException;
57 import java.security.spec.PKCS8EncodedKeySpec;
67 import javax.crypto.spec.SecretKeySpec;
505 KeyProtection spec, Integer newPurposes) {
506 int purposes = (newPurposes == null) ? spec.getPurposes() : newPurposes;
508 result.setBlockModes(spec.getBlockModes());
509 if (spec.isDigestsSpecified()) {
510 result.setDigests(spec.getDigests())
    [all...]
AESCBCCipherTestBase.java 20 import java.security.spec.AlgorithmParameterSpec;
21 import java.security.spec.InvalidParameterSpecException;
23 import javax.crypto.spec.IvParameterSpec;
54 IvParameterSpec spec = params.getParameterSpec(IvParameterSpec.class); local
55 return spec.getIV();
AESCTRCipherTestBase.java 20 import java.security.spec.AlgorithmParameterSpec;
21 import java.security.spec.InvalidParameterSpecException;
23 import javax.crypto.spec.IvParameterSpec;
54 IvParameterSpec spec = params.getParameterSpec(IvParameterSpec.class); local
55 return spec.getIV();
DESedeCBCNoPaddingCipherTest.java 4 import java.security.spec.AlgorithmParameterSpec;
5 import java.security.spec.InvalidParameterSpecException;
7 import javax.crypto.spec.IvParameterSpec;
20 IvParameterSpec spec = params.getParameterSpec(IvParameterSpec.class); local
21 return spec.getIV();
DESedeCBCPKCS7PaddingCipherTest.java 4 import java.security.spec.AlgorithmParameterSpec;
5 import java.security.spec.InvalidParameterSpecException;
7 import javax.crypto.spec.IvParameterSpec;
20 IvParameterSpec spec = params.getParameterSpec(IvParameterSpec.class); local
21 return spec.getIV();
  /device/google/cuttlefish_common/host/commands/virtual_usb_manager/vadb/
virtual_adb_client.cpp 131 struct itimerspec spec {}; struct
132 spec.it_value.tv_sec = kHeartbeatTimeoutSeconds;
133 timer_->TimerSet(0, &spec, nullptr);
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/spec/
AEADParameterSpec.java 2 package com.android.org.bouncycastle.jcajce.spec;
4 import javax.crypto.spec.IvParameterSpec;
9 * ParameterSpec for AEAD modes which allows associated data to be added via an algorithm parameter spec.In normal
47 * Return the size of the MAC associated with this parameter spec.
57 * Return the associated data associated with this parameter spec.
67 * Return the nonce (same as IV) associated with this parameter spec.
PBKDF2KeySpec.java 2 package com.android.org.bouncycastle.jcajce.spec;
4 import javax.crypto.spec.PBEKeySpec;
38 * Return true if this spec is for the default PRF (HmacSHA1), false otherwise.
40 * @return true if this spec uses the default PRF, false otherwise.
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLRSAKeyPairGenerator.java 26 import java.security.spec.AlgorithmParameterSpec;
27 import java.security.spec.RSAKeyGenParameterSpec;
70 RSAKeyGenParameterSpec spec = (RSAKeyGenParameterSpec) params; local
72 final BigInteger publicExponent = spec.getPublicExponent();
77 this.modulusBits = spec.getKeysize();
  /external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/java/security/
AlgorithmParametersTestDSA.java 25 import java.security.spec.DSAParameterSpec;
133 DSAParameterSpec spec = new DSAParameterSpec( local
136 params.init(spec);
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
OpenSSLRSAKeyPairGenerator.java 27 import java.security.spec.AlgorithmParameterSpec;
28 import java.security.spec.RSAKeyGenParameterSpec;
76 RSAKeyGenParameterSpec spec = (RSAKeyGenParameterSpec) params; local
78 final BigInteger publicExponent = spec.getPublicExponent();
83 this.modulusBits = spec.getKeysize();
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmConditionalBranchTests.cpp 61 ComputeShaderSpec spec; local
119 spec.assembly = shaderSource.specialize(specs);
120 spec.numWorkGroups = IVec3(numItems, 1, 1);
122 spec.outputs.push_back(Resource(BufferSp(new Buffer<deUint32>(outputData))));
124 group->addChild(new SpvAsmComputeShaderCase(testCtx, testName.c_str(), "Tests both labels pointing to a same branch.", spec));
vktSpvAsmLoopDepInfTests.cpp 152 ComputeShaderSpec spec; local
173 // getComputeSourceCode (spec.assembly);
175 spec.inputs.push_back(BufferSp(new Float32Buffer(inputFloats)));
176 spec.outputs.push_back(BufferSp(new Float32Buffer(outputFloats)));
177 spec.numWorkGroups = tcu::IVec3(numElements, 1, 1);
178 spec.verifyIO = &verifyOutput;
180 return spec;
vktSpvAsmLoopDepLenTests.cpp 168 ComputeShaderSpec spec; local
188 // getComputeSourceCode (spec.assembly);
190 spec.inputs.push_back(BufferSp(new Float32Buffer(inputFloats)));
191 spec.outputs.push_back(BufferSp(new Float32Buffer(outputFloats)));
192 spec.numWorkGroups = tcu::IVec3(numElements, 1, 1);
193 spec.verifyIO = &verifyOutput;
195 return spec;
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
Local.java 28 private RegisterSpec spec; field in class:Local
46 this.spec = RegisterSpec.make(nextAvailableRegister, type.ropType);
57 RegisterSpec spec() { method in class:Local
58 if (spec == null) {
60 if (spec == null) {
64 return spec;
  /external/elfutils/libcpu/
i386_parse.y 246 spec: masks kPERCPERC '\n' instrs label
    [all...]
  /external/grpc-grpc-java/okhttp/src/main/java/io/grpc/okhttp/
OkHttpTlsUpgrader.java 56 ConnectionSpec spec) throws IOException {
59 Preconditions.checkNotNull(spec, "spec");
62 spec.apply(sslSocket, false);
64 sslSocket, host, spec.supportsTlsExtensions() ? TLS_PROTOCOLS : null);
  /external/ltp/testcases/kernel/timers/clock_gettime/
clock_gettime03.c 93 struct timespec spec, *temp; local
125 temp = &spec;
  /external/ltp/testcases/kernel/timers/clock_settime/
clock_settime03.c 61 static struct timespec spec, *temp, saved; variable in typeref:struct:timespec
120 spec = saved;
121 temp = &spec;
131 spec.tv_nsec = -1;
135 spec.tv_nsec = NSEC_PER_SEC + 1;
139 spec.tv_nsec = 0;
165 spec.tv_sec = 1;
166 spec.tv_nsec = 0;
  /external/mesa3d/src/broadcom/clif/
v3dx_dump.c 41 struct v3d_group *inst = v3d_spec_find_instruction(clif->spec, cl);
83 struct v3d_group *spec = v3d_spec_find_struct(clif->spec, local
84 "Transform Feedback Output Data Spec");
85 assert(spec);
90 v3d_print_group(clif->out, spec, 0, cl, "");
91 cl += v3d_group_get_length(spec);
92 *size += v3d_group_get_length(spec);
100 struct v3d_group *spec = v3d_spec_find_struct(clif->spec, local
    [all...]
  /external/mesa3d/src/mesa/main/
remap.c 54 * Map a function by its spec. The function will be added to glapi,
57 * \param spec a '\0'-separated string array specifying a function.
66 map_function_spec(const char *spec)
72 if (!spec)
75 signature = spec;
76 spec += strlen(spec) + 1;
78 /* spec is terminated by an empty string */
79 while (*spec) {
80 names[num_names] = spec;
114 const char *spec; local
    [all...]
  /external/robolectric-shadows/annotations/src/main/java/org/robolectric/annotation/internal/
ConfigUtils.java 25 String spec = part.trim(); local
26 switch (spec) {
37 return Integer.parseInt(spec);
  /external/tensorflow/tensorflow/compiler/xla/tests/
iota_test.cc 38 const auto& spec = GetParam(); local
39 const auto element_type = std::get<0>(spec);
40 const int64 num_elements = std::get<1>(spec);
67 const auto& spec = GetParam(); local
68 const auto element_type = std::get<0>(spec);
69 const int64 num_elements = std::get<1>(spec);
70 const int64 iota_dim = std::get<2>(spec);
94 const auto& spec = GetParam(); local
95 const auto element_type = std::get<0>(spec);
96 const int64 num_elements = std::get<1>(spec);
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/
remote_device_test.cc 48 GrpcChannelSpec spec; local
49 TF_CHECK_OK(spec.AddHostPortsJob("localhost", {hostport}));
53 NewGrpcChannelCache(spec, channel_func));

Completed in 1201 milliseconds

12 3 4 5 6 7 8 91011>>