HomeSort by relevance Sort by last modified time
    Searched full:spec (Results 101 - 125 of 1636) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.12/src/audio/nto/
SDL_nto_audio.c 75 static int NTO_OpenAudio(_THIS, SDL_AudioSpec* spec);
259 towrite = this->spec.size;
273 pcmbuffer += written * this->spec.channels;
307 pcmbuffer += written * this->spec.channels;
347 static int NTO_OpenAudio(_THIS, SDL_AudioSpec* spec)
389 for (test_format=SDL_FirstAudioFormat(spec->format); !found ;)
435 spec->format = test_format;
441 cparams.format.voices = spec->channels;
444 cparams.format.rate = spec->freq;
465 SDL_CalculateAudioSpec(spec);
    [all...]
  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
OAEPParameterSpecTest.java 23 package org.apache.harmony.crypto.tests.javax.crypto.spec;
30 import java.security.spec.MGF1ParameterSpec;
31 import java.security.spec.AlgorithmParameterSpec;
33 import javax.crypto.spec.OAEPParameterSpec;
34 import javax.crypto.spec.PSource;
56 args = {java.lang.String.class, java.lang.String.class, java.security.spec.AlgorithmParameterSpec.class, javax.crypto.spec.PSource.class}
  /dalvik/libcore/security/src/test/java/tests/security/spec/
ECParameterSpecTest.java 17 package tests.security.spec;
27 import java.security.spec.ECFieldF2m;
28 import java.security.spec.ECParameterSpec;
29 import java.security.spec.ECPoint;
30 import java.security.spec.EllipticCurve;
70 args = {java.security.spec.EllipticCurve.class, java.security.spec.ECPoint.class, java.math.BigInteger.class, int.class}
DSAParameterSpecTest.java 23 package tests.security.spec;
33 import java.security.spec.AlgorithmParameterSpec;
34 import java.security.spec.DSAParameterSpec;
RSAPrivateKeySpecTest.java 23 package tests.security.spec;
33 import java.security.spec.KeySpec;
34 import java.security.spec.RSAPrivateKeySpec;
X509EncodedKeySpecTest.java 23 package tests.security.spec;
32 import java.security.spec.EncodedKeySpec;
33 import java.security.spec.PKCS8EncodedKeySpec;
34 import java.security.spec.X509EncodedKeySpec;
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLv3Constants.java 23 * @see <a href="http://wp.netscape.com/eng/ssl3">SSL 3.0 Spec.</a>
29 * @see <a href="http://wp.netscape.com/eng/ssl3">SSL 3.0 Spec., 5.6.9
36 * @see <a href="http://wp.netscape.com/eng/ssl3">SSL 3.0 Spec., 5.6.9
43 * @see <a href="http://wp.netscape.com/eng/ssl3">SSL 3.0 Spec., 5.2.3.1
54 * @see <a href="http://wp.netscape.com/eng/ssl3">SSL 3.0 Spec., 5.2.3.1
65 * @see <a href="http://wp.netscape.com/eng/ssl3">SSL 3.0 Spec., 5.2.3.1
76 * @see <a href="http://wp.netscape.com/eng/ssl3">SSL 3.0 Spec., 5.2.3.1
  /external/emma/core/java12/com/vladium/emma/filter/
IInclExclFilter.java 77 final String spec = specs [i]; local
79 if (spec.length () > 0)
81 if (spec.charAt (0) == EXCLUSION_PREFIX)
82 exclusions.add (spec.substring (1));
87 if (spec.charAt (0) == INCLUSION_PREFIX)
88 inclusions.add (spec.substring (1));
90 inclusions.add (spec);
  /dalvik/dx/src/com/android/dx/rop/code/
LocalVariableInfo.java 174 * register spec. This throws an exception if the instruction
177 * <b>Note:</b> Although the instruction contains its own spec for
179 * method, since the spec that is stored here should always have a
184 * @param spec {@code non-null;} the associated register spec
186 public void addAssignment(Insn insn, RegisterSpec spec) {
193 if (spec == null) {
194 throw new NullPointerException("spec == null");
197 insnAssignments.put(insn, spec);
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableInfo.java 175 * register spec. This throws an exception if the instruction
178 * <b>Note:</b> Although the instruction contains its own spec for
180 * method, since the spec that is stored here should always have a
185 * @param spec {@code non-null;} the associated register spec
187 public void addAssignment(SsaInsn insn, RegisterSpec spec) {
194 if (spec == null) {
195 throw new NullPointerException("spec == null");
198 insnAssignments.put(insn, spec);
  /dalvik/dx/src/com/android/dx/dex/code/
LocalSnapshot.java 87 RegisterSpec spec = locals.get(i); local
88 if (spec != null) {
90 sb.append(LocalStart.localString(spec));
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
BrokenPBE.java 3 import java.security.spec.AlgorithmParameterSpec;
5 import javax.crypto.spec.PBEParameterSpec;
362 AlgorithmParameterSpec spec,
369 if ((spec == null) || !(spec instanceof PBEParameterSpec))
371 throw new IllegalArgumentException("Need a PBEParameter spec with a PBE key.");
374 PBEParameterSpec pbeParam = (PBEParameterSpec)spec;
421 AlgorithmParameterSpec spec,
426 if ((spec == null) || !(spec instanceof PBEParameterSpec)
    [all...]
JCERSACipher.java 13 import java.security.spec.AlgorithmParameterSpec;
14 import java.security.spec.InvalidParameterSpecException;
15 import java.security.spec.MGF1ParameterSpec;
21 import javax.crypto.spec.OAEPParameterSpec;
22 import javax.crypto.spec.PSource;
277 OAEPParameterSpec spec = (OAEPParameterSpec)params; local
281 if (!spec.getMGFAlgorithm().equalsIgnoreCase("MGF1") && !spec.getMGFAlgorithm().equals(PKCSObjectIdentifiers.id_mgf1.getId()))
286 if (!(spec.getMGFParameters() instanceof MGF1ParameterSpec))
291 MGF1ParameterSpec mgfParams = (MGF1ParameterSpec)spec.getMGFParameters()
    [all...]
JCERSAPrivateKey.java 9 import java.security.spec.RSAPrivateKeySpec;
42 RSAPrivateKeySpec spec)
44 this.modulus = spec.getModulus();
45 this.privateExponent = spec.getPrivateExponent();
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
KeyFactorySpiTest.java 27 import java.security.spec.KeySpec;
56 args = {java.security.spec.KeySpec.class}
62 args = {java.security.spec.KeySpec.class}
  /external/genext2fs/
test-mount.sh 50 # ftest-mount - Exercise the -f spec-file option of genext2fs
51 # Creates an image with the devices mentioned in the given spec
54 # Usage: ftest-mount spec-file number-of-blocks
test.sh 40 # ftest - Exercises the -f spec-file option of genext2fs
41 # Creates an image with the devices mentioned in the given spec
43 # Usage: ftest spec-file number-of-blocks correct-checksum
  /cts/tools/signature-tools/
sig-check 57 --from sig ${ANDROID_BUILD_TOP}/cts/tools/signature-tools/spec/android.spec \
80 java.security.spec \
94 javax.crypto.spec \
  /dalvik/libcore/crypto/src/main/java/javax/crypto/spec/
OAEPParameterSpec.java 18 package javax.crypto.spec;
20 import java.security.spec.MGF1ParameterSpec;
21 import java.security.spec.AlgorithmParameterSpec;
22 import javax.crypto.spec.PSource;
  /dalvik/libcore/security/src/main/java/java/security/spec/
AlgorithmParameterSpec.java 18 package java.security.spec;
KeySpec.java 18 package java.security.spec;
  /dalvik/libcore/security/src/test/java/tests/targets/security/
AlgorithmParameterGeneratorTestDSA.java 20 import java.security.spec.DSAParameterSpec;
  /dalvik/vm/mterp/armv5te/
OP_MONITOR_EXIT.S 9 * instruction spec.
  /dalvik/vm/mterp/c/
OP_MONITOR_EXIT.c 15 * spec). Because we're jumping to an exception handler,
  /dalvik/vm/mterp/x86/
OP_MONITOR_EXIT.S 9 * instruction spec.

Completed in 85 milliseconds

1 2 3 45 6 7 8 91011>>