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

1 2 34 5 6 7 8 91011>>

  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherPBEThread.java 20 import java.security.spec.AlgorithmParameterSpec;
25 import javax.crypto.spec.PBEKeySpec;
26 import javax.crypto.spec.PBEParameterSpec;
  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
AllTests.java 17 package org.apache.harmony.crypto.tests.javax.crypto.spec;
23 * This is autogenerated source file. Includes tests for package org.apache.harmony.crypto.tests.javax.crypto.spec;
33 TestSuite suite = tests.TestSuiteFactory.createTestSuite("All tests for package org.apache.harmony.crypto.tests.javax.crypto.spec;");
  /dalvik/libcore/security/src/test/java/tests/security/spec/
AllTests.java 17 package tests.security.spec;
23 * This is autogenerated source file. Includes tests for package tests.security.spec;
33 TestSuite suite = tests.TestSuiteFactory.createTestSuite("All tests for package tests.security.spec;");
EncodedKeySpec2Test.java 18 package tests.security.spec;
33 import java.security.spec.EncodedKeySpec;
34 import java.security.spec.PKCS8EncodedKeySpec;
35 import java.security.spec.X509EncodedKeySpec;
41 * @tests java.security.spec.EncodedKeySpec#getEncoded()
  /external/genext2fs/
test-gen.lib 26 # fgen - Exercises the -f spec-file option of genext2fs
27 # Creates an image with the devices mentioned in the given spec file
28 # Usage: fgen spec-file number-of-blocks
  /dalvik/dx/src/com/android/dx/dex/code/
LocalEnd.java 31 * {@code non-null;} register spec representing the local variable ended
44 * @param local {@code non-null;} register spec representing the local
70 * Gets the register spec representing the local variable ended
73 * @return {@code non-null;} the register spec
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JCERSAPublicKey.java 7 import java.security.spec.RSAPublicKeySpec;
32 RSAPublicKeySpec spec)
34 this.modulus = spec.getModulus();
35 this.publicExponent = spec.getPublicExponent();
WrapCipherSpi.java 12 import java.security.spec.AlgorithmParameterSpec;
13 import java.security.spec.InvalidKeySpecException;
14 import java.security.spec.PKCS8EncodedKeySpec;
15 import java.security.spec.X509EncodedKeySpec;
23 import javax.crypto.spec.IvParameterSpec;
24 import javax.crypto.spec.PBEParameterSpec;
25 import javax.crypto.spec.RC2ParameterSpec;
26 import javax.crypto.spec.RC5ParameterSpec;
27 import javax.crypto.spec.SecretKeySpec;
152 if (params instanceof javax.crypto.spec.IvParameterSpec
    [all...]
  /dalvik/tests/064-field-access/
info.txt 10 equivalent, and not merely spec-compliant.
  /external/openssl/apps/
dh1024.pem 8 (http://www.skip-vpn.org/spec/numbers.html).
  /external/webkit/WebKit/chromium/src/
WebURLError.cpp 63 CString spec = unreachableURL.spec();
65 String::fromUTF8(spec.data(), spec.length()),
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
KeyFactory2Test.java 37 import java.security.spec.InvalidKeySpecException;
38 import java.security.spec.KeySpec;
39 import java.security.spec.PKCS8EncodedKeySpec;
40 import java.security.spec.X509EncodedKeySpec;
126 * @tests java.security.KeyFactory#generatePrivate(java.security.spec.KeySpec)
132 args = {java.security.spec.KeySpec.class}
136 // java.security.KeyFactory.generatePrivate(java.security.spec.KeySpec)
164 fail("invalid key spec for algorithm " + keyfactAlgs[i]);
174 * @tests java.security.KeyFactory#generatePublic(java.security.spec.KeySpec)
180 args = {java.security.spec.KeySpec.class
    [all...]
AlgorithmParameterGenerator3Test.java 28 import java.security.spec.DSAParameterSpec;
219 * @tests java.security.AlgorithmParameterGenerator#init(java.security.spec.AlgorithmParameterSpec)
225 args = {java.security.spec.AlgorithmParameterSpec.class}
229 // java.security.AlgorithmParameterGenerator.init(java.security.spec.AlgorithmParameterSpec)
231 DSAParameterSpec spec = new DSAParameterSpec(BigInteger.ONE, local
236 gen.init(spec);
244 * @tests java.security.AlgorithmParameterGenerator#init(java.security.spec.AlgorithmParameterSpec,
251 args = {java.security.spec.AlgorithmParameterSpec.class, java.security.SecureRandom.class}
255 // java.security.AlgorithmParameterGenerator.init(java.security.spec.AlgorithmParameterSpec,
258 DSAParameterSpec spec = new DSAParameterSpec(BigInteger.ONE local
    [all...]
  /external/blktrace/btreplay/
btrecord.c 266 * @spec: IO trace specification
270 static void io_bunch_add(struct io_stream *stream, struct io_spec *spec)
274 .sector = spec->sector,
275 .nbytes = spec->bytes,
276 .rw = spec->rw
281 assert(stream->last_time == 0 || stream->last_time <= spec->time);
284 stream->last_time = spec->time;
482 * @spec: IO specifier for trace
486 static int next_io(struct ifile_info *iip, struct io_spec *spec)
512 spec->time = t.time
764 struct io_spec spec; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/paudio/
SDL_paudio.c 58 static int Paud_OpenAudio(_THIS, SDL_AudioSpec *spec);
233 static int Paud_OpenAudio(_THIS, SDL_AudioSpec *spec)
266 if ( spec->channels > 1 )
267 spec->channels = 2;
269 spec->channels = 1;
316 paud_init.srate = spec->freq;
319 paud_init.channels = spec->channels;
323 for ( test_format = SDL_FirstAudioFormat(spec->format);
384 spec->format = test_format;
392 * We calculate spec->samples like this because SDL_CalculateAudioSpec(
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
SHAOutputStream.java 31 // K in iterations 0..19, from spec
34 // K in iterations 20..39, from spec
37 // K in iterations 40..59, from spec
40 // K in iterations 60..79, from spec
43 // H0, from spec
46 // H1, from spec
49 // H2, from spec
52 // H3, from spec
55 // H4, from spec
274 int A; // A variable, from spec
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/alsa/
SDL_alsa_audio.c 51 static int ALSA_OpenAudio(_THIS, SDL_AudioSpec *spec);
275 const Uint32 count = (this->spec.samples / 6); \
297 if (this->spec.channels == 6) {
298 const Uint16 fmtsize = (this->spec.format & 0xFF); /* bits/channel. */
321 sample_len = this->spec.samples;
347 sample_buf += status * this->spec.channels;
370 static int ALSA_OpenAudio(_THIS, SDL_AudioSpec *spec)
380 /* Name of device should depend on # channels in spec */
381 status = SDL_NAME(snd_pcm_open)(&pcm_handle, get_audio_device(spec->channels), SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK);
407 for ( test_format = SDL_FirstAudioFormat(spec->format)
    [all...]
  /cts/tools/dex-tools/
README.txt 5 It is designed to be fast and close to the spec.
18 doc : dex file spec on which this parser is based
  /dalvik/libcore/crypto/src/test/java/org/apache/harmony/crypto/tests/support/
MySecretKeyFactorySpi.java 26 import java.security.spec.InvalidKeySpecException;
27 import java.security.spec.KeySpec;
  /external/qemu/distrib/sdl-1.2.12/src/audio/mint/
SDL_mintaudio.c 45 unsigned long SDL_MintAudio_audiosize; /* Length of audio buffer=spec->size */
66 SDL_memset(buffer, audio->spec.silence, audio->spec.size);
80 audio->spec.callback(audio->spec.userdata,
85 audio->spec.callback(audio->spec.userdata, buffer, audio->spec.size);
  /external/qemu/distrib/sdl-1.2.12/src/audio/bsd/
SDL_bsdaudio.c 71 static int OBSD_OpenAudio(_THIS, SDL_AudioSpec *spec);
302 OBSD_OpenAudio(_THIS, SDL_AudioSpec *spec)
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->size
    [all...]
  /external/webkit/WebCore/bindings/js/
JSMessagePortCustom.cpp 83 // Also validates the elements per sections 4.1.13 and 4.1.15 of the WebIDL spec and section 8.3.3 of the HTML5 spec.
89 // Validation of sequence types, per WebIDL spec 4.1.13.
100 // Validation of non-null objects, per HTML5 spec 8.3.3.
106 // Validation of Objects implementing an interface, per WebIDL spec 4.1.15.
  /external/webkit/WebKit/chromium/public/
WebURL.h 55 WebURL(const WebCString& spec, const url_parse::Parsed& parsed, bool isValid)
56 : m_spec(spec)
77 void assign(const WebCString& spec, const url_parse::Parsed& parsed, bool isValid)
79 m_spec = spec;
84 const WebCString& spec() const function in class:WebKit::WebURL
  /frameworks/base/libs/rs/
Android.mk 18 spec.l \
44 $(GEN) : PRIVATE_CUSTOM_TOOL = $(RSG_GENERATOR) $< $@ <$(PRIVATE_PATH)/rs.spec
45 $(GEN) : $(RSG_GENERATOR) $(LOCAL_PATH)/rs.spec
61 $(GEN) : PRIVATE_CUSTOM_TOOL = $(RSG_GENERATOR) $< $@ <$(PRIVATE_PATH)/rs.spec
62 $(GEN) : $(RSG_GENERATOR) $(LOCAL_PATH)/rs.spec
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpecList.java 34 * @param spec {@code non-null;} the element
37 public static RegisterSpecList make(RegisterSpec spec) {
39 result.set(0, spec);
184 * @param spec {@code non-null;} the value to store
186 public void set(int n, RegisterSpec spec) {
187 set0(n, spec);
203 RegisterSpec spec = (RegisterSpec) get0(i); local
204 if (spec != null) {
205 int min = spec.getNextReg();
220 * @param spec {@code non-null;} the new first spec (to prepend
    [all...]

Completed in 251 milliseconds

1 2 34 5 6 7 8 91011>>