Searched defs:spec (Results 126 - 150 of 398) sorted by relevance

1234567891011>>

/external/qemu/distrib/sdl-1.2.15/src/audio/bsd/
H A DSDL_bsdaudio.c71 static int OBSD_OpenAudio(_THIS, SDL_AudioSpec *spec);
302 OBSD_OpenAudio(_THIS, SDL_AudioSpec *spec) argument
311 SDL_CalculateAudioSpec(spec);
333 for (format = SDL_FirstAudioFormat(spec->format);
369 SDL_SetError("No supported encoding for 0x%x", spec->format);
373 spec->format = format;
376 info.play.channels = spec->channels;
378 spec->channels = 1;
380 info.play.sample_rate = spec->freq;
381 info.blocksize = spec
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/disk/
H A DSDL_diskaudio.c50 static int DISKAUD_OpenAudio(_THIS, SDL_AudioSpec *spec);
160 static int DISKAUD_OpenAudio(_THIS, SDL_AudioSpec *spec) argument
176 this->hidden->mixlen = spec->size;
181 SDL_memset(this->hidden->mixbuf, spec->silence, spec->size);
/external/qemu/distrib/sdl-1.2.15/src/audio/dsp/
H A DSDL_dspaudio.c61 static int DSP_OpenAudio(_THIS, SDL_AudioSpec *spec);
163 static int DSP_OpenAudio(_THIS, SDL_AudioSpec *spec) argument
173 if (spec->channels > 8)
174 spec->channels = 8;
175 else if (spec->channels > 4)
176 spec->channels = 4;
177 else if (spec->channels > 2)
178 spec->channels = 2;
209 for ( test_format = SDL_FirstAudioFormat(spec->format);
264 spec
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
H A DSDL_mintaudio_dma8.c67 static int Mint_OpenAudio(_THIS, SDL_AudioSpec *spec);
72 static int Mint_CheckAudio(_THIS, SDL_AudioSpec *spec);
198 static int Mint_CheckAudio(_THIS, SDL_AudioSpec *spec) argument
203 DEBUG_PRINT((DEBUG_NAME "asked: %d bits, ",spec->format & 0x00ff));
204 DEBUG_PRINT(("signed=%d, ", ((spec->format & 0x8000)!=0)));
205 DEBUG_PRINT(("big endian=%d, ", ((spec->format & 0x1000)!=0)));
206 DEBUG_PRINT(("channels=%d, ", spec->channels));
207 DEBUG_PRINT(("freq=%d\n", spec->freq));
209 if (spec->channels > 2)
210 spec
265 Mint_OpenAudio(_THIS, SDL_AudioSpec *spec) argument
[all...]
H A DSDL_mintaudio_stfa.c76 static int Mint_OpenAudio(_THIS, SDL_AudioSpec *spec);
81 static int Mint_CheckAudio(_THIS, SDL_AudioSpec *spec);
82 static void Mint_InitAudio(_THIS, SDL_AudioSpec *spec);
201 static int Mint_CheckAudio(_THIS, SDL_AudioSpec *spec) argument
205 DEBUG_PRINT((DEBUG_NAME "asked: %d bits, ",spec->format & 0x00ff));
206 DEBUG_PRINT(("signed=%d, ", ((spec->format & 0x8000)!=0)));
207 DEBUG_PRINT(("big endian=%d, ", ((spec->format & 0x1000)!=0)));
208 DEBUG_PRINT(("channels=%d, ", spec->channels));
209 DEBUG_PRINT(("freq=%d\n", spec->freq));
211 if (spec
242 Mint_InitAudio(_THIS, SDL_AudioSpec *spec) argument
292 Mint_OpenAudio(_THIS, SDL_AudioSpec *spec) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/nds/
H A DSDL_ndsaudio.c37 static int NDS_OpenAudio(_THIS, SDL_AudioSpec *spec);
55 // memset(buffer, sdl_nds_audiodevice->spec.silence, size);
69 // // sdl_nds_audiodevice->spec.callback(sdl_nds_audiodevice->spec.userdata,
75 // sdl_nds_audiodevice->spec.callback(sdl_nds_audiodevice->spec.userdata, buffer, size);
121 SDL_memset(stream, audio->spec.silence, len);
131 (*audio->spec.callback)(audio->spec.userdata,
138 (*audio->spec
280 NDS_OpenAudio(_THIS, SDL_AudioSpec *spec) argument
[all...]
/external/smack/src/org/xbill/DNS/
H A DGenerator.java97 substitute(String spec, long n) throws IOException { argument
99 byte [] str = spec.getBytes();
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
H A DEllipticCurveTest.java18 package org.apache.harmony.security.tests.java.security.spec;
21 import java.security.spec.ECField;
22 import java.security.spec.ECFieldF2m;
23 import java.security.spec.ECFieldFp;
24 import java.security.spec.EllipticCurve;
455 * @tests java/security/spec/EllipticCurve#EllipticCurve(EcField,BigInteger,BigInteger)
561 * @tests java.security.spec.EllipticCurve#getSeed()
H A DPSSParameterSpecTest.java22 package org.apache.harmony.security.tests.java.security.spec;
24 import java.security.spec.AlgorithmParameterSpec;
25 import java.security.spec.MGF1ParameterSpec;
26 import java.security.spec.PSSParameterSpec;
H A DRSAMultiPrimePrivateCrtKeySpecTest.java22 package org.apache.harmony.security.tests.java.security.spec;
25 import java.security.spec.KeySpec;
26 import java.security.spec.RSAMultiPrimePrivateCrtKeySpec;
27 import java.security.spec.RSAOtherPrimeInfo;
28 import java.security.spec.RSAPrivateKeySpec;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
H A DBCDHPrivateKey.java10 import javax.crypto.spec.DHParameterSpec;
11 import javax.crypto.spec.DHPrivateKeySpec;
53 DHPrivateKeySpec spec)
55 this.x = spec.getX();
56 this.dhSpec = new DHParameterSpec(spec.getP(), spec.getG());
52 BCDHPrivateKey( DHPrivateKeySpec spec) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DBCDSAPrivateKey.java9 import java.security.spec.DSAParameterSpec;
10 import java.security.spec.DSAPrivateKeySpec;
47 DSAPrivateKeySpec spec)
49 this.x = spec.getX();
50 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
46 BCDSAPrivateKey( DSAPrivateKeySpec spec) argument
H A DBCDSAPublicKey.java9 import java.security.spec.DSAParameterSpec;
10 import java.security.spec.DSAPublicKeySpec;
31 DSAPublicKeySpec spec)
33 this.y = spec.getY();
34 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
30 BCDSAPublicKey( DSAPublicKeySpec spec) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DBCRSAPrivateCrtKey.java6 import java.security.spec.RSAPrivateCrtKeySpec;
53 * @param spec the spec to be used in construction.
56 RSAPrivateCrtKeySpec spec)
58 this.modulus = spec.getModulus();
59 this.publicExponent = spec.getPublicExponent();
60 this.privateExponent = spec.getPrivateExponent();
61 this.primeP = spec.getPrimeP();
62 this.primeQ = spec.getPrimeQ();
63 this.primeExponentP = spec
55 BCRSAPrivateCrtKey( RSAPrivateCrtKeySpec spec) argument
[all...]
H A DBCRSAPrivateKey.java8 import java.security.spec.RSAPrivateKeySpec;
45 RSAPrivateKeySpec spec)
47 this.modulus = spec.getModulus();
48 this.privateExponent = spec.getPrivateExponent();
44 BCRSAPrivateKey( RSAPrivateKeySpec spec) argument
H A DBCRSAPublicKey.java9 import java.security.spec.RSAPublicKeySpec;
38 RSAPublicKeySpec spec)
41 this.modulus = spec.getModulus();
42 this.publicExponent = spec.getPublicExponent();
37 BCRSAPublicKey( RSAPublicKeySpec spec) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DPBE.java3 import java.security.spec.AlgorithmParameterSpec;
5 import javax.crypto.spec.PBEKeySpec;
6 import javax.crypto.spec.PBEParameterSpec;
184 AlgorithmParameterSpec spec,
187 if ((spec == null) || !(spec instanceof PBEParameterSpec))
189 throw new IllegalArgumentException("Need a PBEParameter spec with a PBE key.");
192 PBEParameterSpec pbeParam = (PBEParameterSpec)spec;
244 AlgorithmParameterSpec spec)
246 if ((spec
182 makePBEParameters( BCPBEKey pbeKey, AlgorithmParameterSpec spec, String targetAlgorithm) argument
242 makePBEMacParameters( BCPBEKey pbeKey, AlgorithmParameterSpec spec) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEECPublicKey.java8 import java.security.spec.ECParameterSpec;
9 import java.security.spec.ECPoint;
10 import java.security.spec.ECPublicKeySpec;
11 import java.security.spec.EllipticCurve;
43 // import org.bouncycastle.jce.spec.ECNamedCurveParameterSpec;
45 import org.bouncycastle.jce.spec.ECNamedCurveSpec;
74 ECPublicKeySpec spec)
77 this.ecSpec = spec.getParams();
78 this.q = EC5Util.convertPoint(ecSpec, spec.getW(), false);
83 org.bouncycastle.jce.spec
72 JCEECPublicKey( String algorithm, ECPublicKeySpec spec) argument
81 JCEECPublicKey( String algorithm, org.bouncycastle.jce.spec.ECPublicKeySpec spec) argument
107 JCEECPublicKey( String algorithm, ECPublicKeyParameters params, ECParameterSpec spec) argument
129 JCEECPublicKey( String algorithm, ECPublicKeyParameters params, org.bouncycastle.jce.spec.ECParameterSpec spec) argument
[all...]
H A DJCERSAPrivateKey.java8 import java.security.spec.RSAPrivateKeySpec;
45 RSAPrivateKeySpec spec)
47 this.modulus = spec.getModulus();
48 this.privateExponent = spec.getPrivateExponent();
44 JCERSAPrivateKey( RSAPrivateKeySpec spec) argument
H A DJDKDSAPrivateKey.java9 import java.security.spec.DSAParameterSpec;
10 import java.security.spec.DSAPrivateKeySpec;
49 DSAPrivateKeySpec spec)
51 this.x = spec.getX();
52 this.dsaSpec = new DSAParameterSpec(spec.getP(), spec.getQ(), spec.getG());
48 JDKDSAPrivateKey( DSAPrivateKeySpec spec) argument
/external/chromium_org/components/domain_reliability/
H A Dconfig.cc40 const std::string& spec = url.spec(); local
44 if (MatchPattern(spec, **it))
/external/chromium_org/components/policy/core/browser/
H A Dmanaged_bookmarks_tracker.cc166 std::string spec; local
172 (!dict->GetString(kUrl, &spec) &&
179 *url = GURL(spec);
/external/chromium_org/content/shell/renderer/test_runner/
H A Dtest_interfaces.cc105 std::string spec = GURL(test_url).spec(); local
107 if (spec.find("loading/") != std::string::npos)
109 if (spec.find("/dumpAsText/") != std::string::npos) {
113 if (spec.find("/inspector/") != std::string::npos ||
114 spec.find("/inspector-enabled/") != std::string::npos)
116 if (spec.find("/inspector/") != std::string::npos) {
119 std::string test_path = spec.substr(spec.find("/inspector/") + 11);
127 if (spec
[all...]
/external/chromium_org/extensions/common/
H A Dextension_messages.cc106 std::string spec; local
108 !ReadParam(m, iter, &spec))
117 URLPattern::ParseResult result = p->Parse(spec);
/external/chromium_org/extensions/common/permissions/
H A Dsocket_permission_data.cc110 std::string spec; local
111 if (!value->GetAsString(&spec))
114 return Parse(spec);
118 // Clear the spec because the caller could mutate |this|.

Completed in 8285 milliseconds

1234567891011>>