HomeSort by relevance Sort by last modified time
    Searched full:spec (Results 201 - 225 of 5720) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/luni/src/test/java/tests/security/spec/
ECPrivateKeySpecTest.java 17 package tests.security.spec;
22 import java.security.spec.ECFieldF2m;
23 import java.security.spec.ECParameterSpec;
24 import java.security.spec.ECPoint;
25 import java.security.spec.ECPrivateKeySpec;
26 import java.security.spec.EllipticCurve;
ECPublicKeySpecTest.java 17 package tests.security.spec;
22 import java.security.spec.ECFieldF2m;
23 import java.security.spec.ECParameterSpec;
24 import java.security.spec.ECPoint;
25 import java.security.spec.ECPublicKeySpec;
26 import java.security.spec.EllipticCurve;
  /external/qemu/distrib/sdl-1.2.15/src/audio/alsa/
SDL_alsa_audio.c 47 static int ALSA_OpenAudio(_THIS, SDL_AudioSpec *spec);
270 for (i = 0; i < this->spec.samples; i++, ptr += 6) { \
290 if (this->spec.channels == 6) {
291 const Uint16 fmtsize = (this->spec.format & 0xFF); /* bits/channel. */
311 const int frame_size = (((int) (this->spec.format & 0xFF)) / 8) * this->spec.channels;
315 frames_left = ((snd_pcm_uframes_t) this->spec.samples);
360 static int ALSA_finalize_hardware(_THIS, SDL_AudioSpec *spec, snd_pcm_hw_params_t *hwparams, int override)
376 if ( !override && bufsize != spec->samples * 2 ) {
381 spec->samples = bufsize / 2
    [all...]
  /external/deqp/modules/egl/
teglMakeCurrentPerfTests.cpp 66 struct Spec
80 MakeCurrentPerfCase (EglTestContext& eglTestCtx, const Spec& spec, const char* name, const char* description);
88 Spec m_spec;
118 string MakeCurrentPerfCase::Spec::toName (void) const
145 string MakeCurrentPerfCase::Spec::toDescription (void) const
151 MakeCurrentPerfCase::MakeCurrentPerfCase (EglTestContext& eglTestCtx, const Spec& spec, const char* name, const char* description)
153 , m_spec (spec)
540 MakeCurrentPerfCase::Spec spec local
576 MakeCurrentPerfCase::Spec spec; local
619 MakeCurrentPerfCase::Spec spec; local
669 MakeCurrentPerfCase::Spec spec; local
    [all...]
  /external/chromium_org/url/third_party/mozilla/
url_parse.cc 59 int FindNextAuthorityTerminator(const CHAR* spec,
63 if (IsAuthorityTerminator(spec[i]))
70 void ParseUserInfo(const CHAR* spec,
77 while (colon_offset < user.len && spec[user.begin + colon_offset] != ':')
93 void ParseServerInfo(const CHAR* spec,
110 int ipv6_terminator = spec[serverinfo.begin] == '[' ? serverinfo.end() : -1;
115 switch (spec[i]) {
143 void DoParseAuthority(const CHAR* spec,
161 while (i > auth.begin && spec[i] != '@')
164 if (spec[i] == '@')
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/instr/
FilterCfg.java 49 final String spec = specs [i]; local
51 if (spec.startsWith (IInclExclFilter.INCLUSION_PREFIX_STRING) ||
52 spec.startsWith (IInclExclFilter.EXCLUSION_PREFIX_STRING))
54 appendValue (spec, COMMA);
58 appendValue (IInclExclFilter.INCLUSION_PREFIX + spec, COMMA); // default to inclusion
77 final String spec = specs [i]; local
79 if (spec.startsWith (IInclExclFilter.INCLUSION_PREFIX_STRING))
81 appendValue (spec, COMMA);
85 if (spec.startsWith (IInclExclFilter.EXCLUSION_PREFIX_STRING))
86 appendValue (IInclExclFilter.INCLUSION_PREFIX + spec.substring (1), COMMA); // overrid
99 final String spec = specs [i]; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/baudio/
SDL_beaudio.cc 40 static int BE_OpenAudio(_THIS, SDL_AudioSpec *spec);
103 SDL_memset(stream, audio->spec.silence, len);
112 (*audio->spec.callback)(audio->spec.userdata,
119 (*audio->spec.callback)(audio->spec.userdata,
153 int BE_OpenAudio(_THIS, SDL_AudioSpec *spec)
157 Uint16 test_format = SDL_FirstAudioFormat(spec->format);
162 format.frame_rate = (float) spec->freq;
163 format.channel_count = spec->channels; /* !!! FIXME: support > 2? *
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
LocalList.java 127 /** {@code non-null;} register spec representing the variable */
128 private final RegisterSpec spec; field in class:LocalList.Entry
130 /** {@code non-null;} variable type (derived from {@code spec}) */
138 * @param spec {@code non-null;} register spec representing
141 public Entry(int address, Disposition disposition, RegisterSpec spec) {
151 if (spec.getLocalItem() == null) {
153 "spec.getLocalItem() == null");
157 throw new NullPointerException("spec == null");
162 this.spec = spec
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
LocalList.java 126 /** {@code non-null;} register spec representing the variable */
127 private final RegisterSpec spec; field in class:LocalList.Entry
129 /** {@code non-null;} variable type (derived from {@code spec}) */
137 * @param spec {@code non-null;} register spec representing
140 public Entry(int address, Disposition disposition, RegisterSpec spec) {
150 if (spec.getLocalItem() == null) {
152 "spec.getLocalItem() == null");
156 throw new NullPointerException("spec == null");
161 this.spec = spec
    [all...]
  /external/chromium_org/url/
url_canon_ip.cc 33 bool DoFindIPv4Components(const CHAR* spec,
43 if (i >= end || spec[i] == '.') {
65 if (spec[i] == '.' && i + 1 == end)
69 } else if (static_cast<UCHAR>(spec[i]) >= 0x80 ||
70 !IsIPv4Char(static_cast<unsigned char>(spec[i]))) {
93 CanonHostInfo::Family IPv4ComponentToNumber(const CHAR* spec,
99 if (spec[component.begin] == '0') {
103 } else if (spec[component.begin + 1] == 'X' ||
104 spec[component.begin + 1] == 'x') {
117 spec[component.begin + base_prefix_len] == '0'
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
LocalList.java 127 /** {@code non-null;} register spec representing the variable */
128 private final RegisterSpec spec; field in class:LocalList.Entry
130 /** {@code non-null;} variable type (derived from {@code spec}) */
138 * @param spec {@code non-null;} register spec representing
141 public Entry(int address, Disposition disposition, RegisterSpec spec) {
151 if (spec.getLocalItem() == null) {
153 "spec.getLocalItem() == null");
157 throw new NullPointerException("spec == null");
162 this.spec = spec
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
BaseCipherSpi.java 10 import java.security.spec.InvalidKeySpecException;
11 import java.security.spec.PKCS8EncodedKeySpec;
12 import java.security.spec.X509EncodedKeySpec;
19 import javax.crypto.spec.IvParameterSpec;
20 import javax.crypto.spec.PBEParameterSpec;
22 // import javax.crypto.spec.RC2ParameterSpec;
23 // import javax.crypto.spec.RC5ParameterSpec;
25 import javax.crypto.spec.SecretKeySpec;
  /external/chromium_org/chrome/common/extensions/manifest_tests/
extension_manifests_devtools_unittest.cc 21 EXPECT_EQ(extension->url().spec() + "devtools.html",
22 extensions::ManifestURL::GetDevToolsPage(extension.get()).spec());
  /external/chromium_org/third_party/angle/src/compiler/translator/
TranslatorHLSL.cpp 12 TranslatorHLSL::TranslatorHLSL(ShShaderType type, ShShaderSpec spec, ShShaderOutput output)
13 : TCompiler(type, spec, output)
  /external/clang/test/Index/
index-file.cpp 22 // CHECK: [indexDeclaration]: kind: struct-template-spec | name: TS | {{.*}} | loc: 11:8
23 // CHECK: [indexDeclaration]: kind: function-template-spec | name: tfoo | {{.*}} | loc: 15:6
  /external/deqp/modules/gles3/stress/
es3sVertexArrayTests.cpp 90 MultiVertexArrayTest::Spec::ArraySpec arraySpec(inputTypes[inputTypeNdx],
101 MultiVertexArrayTest::Spec spec; local
102 spec.primitive = Array::PRIMITIVE_TRIANGLES;
103 spec.drawCount = counts[countNdx];
104 spec.first = 0;
105 spec.arrays.push_back(arraySpec);
108 addChild(new MultiVertexArrayTest(m_testCtx, m_context.getRenderContext(), spec, name.c_str(), name.c_str()));
195 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type,
206 MultiVertexArrayTest::Spec spec local
309 MultiVertexArrayTest::Spec spec; local
410 MultiVertexArrayTest::Spec spec; local
    [all...]
  /external/libogg/
Makefile.am 14 libogg.spec libogg.spec.in \
  /external/oprofile/libpp/
profile_spec.cpp 96 /* FIXME: what does spec say about this being allowed to be
203 /// return true if the value from the profile spec may match the comma
208 // if the profile spec is "all" we match the sample file
213 // spec values
217 // now match each profile spec value against the sample file
224 bool profile_spec::match(filename_spec const & spec) const
230 // sample filename. This allow to specify profile spec based on the
232 string simage = fixup_image_spec(spec.image, extra_found_images);
233 string slib_image = fixup_image_spec(spec.lib_image,
263 // matched this spec through imag
306 profile_spec spec; local
    [all...]
  /libcore/luni/src/test/java/libcore/javax/crypto/spec/
AlgorithmParameterGeneratorTestDSA.java 16 package libcore.javax.crypto.spec;
18 import java.security.spec.DSAParameterSpec;
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
KeyManagerFactorySpiImpl.java 35 public void engineInit(ManagerFactoryParameters spec)
37 if (spec == null) {
  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 76 * @param spec
85 protected void parseURL(URL url, String spec, int start, int end) {
90 throw new StringIndexOutOfBoundsException(spec, start, end - start);
101 if (spec.regionMatches(start, "//", 0, 2)) {
102 // Parse the authority from the spec.
104 fileStart = UrlUtils.findFirstOf(spec, "/?#", authorityStart, end);
105 authority = spec.substring(authorityStart, fileStart);
106 int userInfoEnd = UrlUtils.findFirstOf(spec, "@", authorityStart, fileStart);
109 userInfo = spec.substring(authorityStart, userInfoEnd);
122 int ipv6End = UrlUtils.findFirstOf(spec, "]", hostStart, fileStart)
    [all...]
  /external/apache-harmony/x-net/src/test/java/javax/net/ssl/
MyTrustManagerFactorySpi.java 42 protected void engineInit(ManagerFactoryParameters spec)
44 if (spec == null) {
47 if (spec instanceof Parameters) {
49 engineInit(((Parameters) spec).getKeyStore());
  /external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/
MyTrustManagerFactorySpi.java 42 protected void engineInit(ManagerFactoryParameters spec)
44 if (spec == null) {
47 if (spec instanceof Parameters) {
49 engineInit(((Parameters) spec).getKeyStore());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
KeyFactory.java 8 import java.security.spec.InvalidKeySpecException;
9 import java.security.spec.KeySpec;
10 import java.security.spec.PKCS8EncodedKeySpec;
11 import java.security.spec.X509EncodedKeySpec;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
PBEPKCS12.java 4 import java.security.spec.AlgorithmParameterSpec;
5 import java.security.spec.InvalidParameterSpecException;
7 import javax.crypto.spec.PBEParameterSpec;
61 throw new InvalidParameterSpecException("unknown parameter spec passed to PKCS12 PBE parameters object.");

Completed in 830 milliseconds

1 2 3 4 5 6 7 891011>>