Searched refs:spec (Results 1 - 25 of 1605) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECKeySpec.java1 package org.bouncycastle.jce.spec;
3 import java.security.spec.KeySpec;
11 private ECParameterSpec spec; field in class:ECKeySpec
14 ECParameterSpec spec)
16 this.spec = spec;
24 return spec;
13 ECKeySpec( ECParameterSpec spec) argument
H A DECNamedCurveGenParameterSpec.java1 package org.bouncycastle.jce.spec;
3 import java.security.spec.AlgorithmParameterSpec;
6 * Named curve generation spec
H A DECPrivateKeySpec.java1 package org.bouncycastle.jce.spec;
17 * @param spec the domain parameters for the curve being used.
21 ECParameterSpec spec)
23 super(spec);
19 ECPrivateKeySpec( BigInteger d, ECParameterSpec spec) argument
H A DECPublicKeySpec.java1 package org.bouncycastle.jce.spec;
17 * @param spec the domain parameters for the curve.
21 ECParameterSpec spec)
23 super(spec);
19 ECPublicKeySpec( ECPoint q, ECParameterSpec spec) argument
/external/srec/srec/clib/
H A Dspecnorm.c37 int copy_distribution_counts(spect_dist_info *spec, spect_dist_info *base);
40 int add_distribution_data(spect_dist_info *spec, int spec_val) argument
44 ASSERT(spec);
46 if (spec_val < spec->low_entry) spec->low_counts += UNIT_SIZE;
47 else if (spec_val > spec->high_entry) spec->high_counts += UNIT_SIZE;
48 else spec->hist[spec_val - spec->low_entry] += UNIT_SIZE;
54 spec
73 evaluate_parameters(spect_dist_info *spec) argument
92 estimate_percentile(spect_dist_info *spec, int percentile) argument
126 estimate_sv6(spect_dist_info *spec) argument
163 estimate_mean(spect_dist_info *spec, int forget_factor) argument
199 median_normalize_data(spect_dist_info *spec, int spec_val) argument
204 sv6_normalize_data(spect_dist_info *spec, int spec_val) argument
210 mean_normalize_data(spect_dist_info *spec, int spec_val) argument
221 spect_dist_info *spec; local
254 destroy_spectrum_distribution(spect_dist_info *spec) argument
265 clear_distribution_counts(spect_dist_info *spec) argument
278 copy_distribution_counts(spect_dist_info *spec, spect_dist_info *base) argument
296 forget_distribution_counts(spect_dist_info *spec, int forget_factor) argument
310 shift_distribution_counts(spect_dist_info *spec, int shift) argument
346 clear_mean_counts(spect_dist_info *spec) argument
356 shift_parameters(spect_dist_info *spec, int shift) argument
[all...]
/external/clang/test/CodeGen/
H A D2003-11-20-UnionBitfield.c9 struct printf_spec spec; local
10 spec.minus_flag = 1;
/external/guava/guava-tests/test/com/google/common/net/
H A DHostSpecifierTest.java52 for (String spec : GOOD_IPS) {
53 assertGood(spec);
58 for (String spec : BAD_IPS) {
59 assertBad(spec);
64 for (String spec : GOOD_DOMAINS) {
65 assertGood(spec);
70 for (String spec : BAD_DOMAINS) {
71 assertBad(spec);
77 .addEqualityGroup(spec("1.2.3.4"), spec("1.
86 private static HostSpecifier spec(String specifier) { method in class:HostSpecifierTest
97 assertGood(String spec) argument
103 assertBad(String spec) argument
[all...]
/external/chromium_org/extensions/renderer/resources/
H A Dweb_view_experimental.js23 WebViewInternal.prototype.captureVisibleRegion = function(spec, callback) {
24 WebView.captureVisibleRegion(this.guestInstanceId, spec, callback);
28 proto.captureVisibleRegion = function(spec, callback) {
29 privates(this).internal.captureVisibleRegion(spec, callback);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DCodeGen.cpp17 sh::GLenum type, ShShaderSpec spec, ShShaderOutput output)
21 return new TranslatorESSL(type, spec);
23 return new TranslatorGLSL(type, spec);
26 return new TranslatorHLSL(type, spec, output);
16 ConstructCompiler( sh::GLenum type, ShShaderSpec spec, ShShaderOutput output) argument
H A Dlength_limits.h19 size_t GetGlobalMaxTokenSize(ShShaderSpec spec);
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Dninja_test.py20 spec = { 'target_name': 'wee' }
21 self.assertTrue(writer.ComputeOutputFileName(spec, 'executable').
23 self.assertTrue(writer.ComputeOutputFileName(spec, 'shared_library').
25 self.assertTrue(writer.ComputeOutputFileName(spec, 'static_library').
31 spec = { 'target_name': 'wee' }
32 self.assertTrue('.' not in writer.ComputeOutputFileName(spec,
34 self.assertTrue(writer.ComputeOutputFileName(spec, 'shared_library').
36 self.assertTrue(writer.ComputeOutputFileName(spec, 'static_library').
38 self.assertTrue(writer.ComputeOutputFileName(spec, 'shared_library').
40 self.assertTrue(writer.ComputeOutputFileName(spec, 'static_librar
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dremap.c58 * Return the spec string associated with the given function index.
63 * \return the spec string associated with the function index, or NULL.
76 * Map a function by its spec. The function will be added to glapi,
79 * \param spec a '\0'-separated string array specifying a function.
88 _mesa_map_function_spec(const char *spec) argument
94 if (!spec)
97 signature = spec;
98 spec += strlen(spec) + 1;
100 /* spec i
136 const char *spec; local
202 const char *spec; local
[all...]
/external/mesa3d/src/mesa/main/
H A Dremap.c58 * Return the spec string associated with the given function index.
63 * \return the spec string associated with the function index, or NULL.
76 * Map a function by its spec. The function will be added to glapi,
79 * \param spec a '\0'-separated string array specifying a function.
88 _mesa_map_function_spec(const char *spec) argument
94 if (!spec)
97 signature = spec;
98 spec += strlen(spec) + 1;
100 /* spec i
136 const char *spec; local
202 const char *spec; local
[all...]
/external/srec/srec/include/
H A Dspecnorm.h79 void destroy_spectrum_distribution(spect_dist_info *spec);
80 void clear_distribution_counts(spect_dist_info *spec);
81 void clear_mean_counts(spect_dist_info *spec);
82 void forget_distribution_counts(spect_dist_info *spec, int forget_factor);
83 void shift_distribution_counts(spect_dist_info *spec, int shift);
84 int add_distribution_data(spect_dist_info *spec, int spec_val);
85 void evaluate_parameters(spect_dist_info *spec);
86 int estimate_percentile(spect_dist_info *spec, int percentile);
87 void estimate_mean(spect_dist_info *spec, int forget_factor);
88 void estimate_sv6(spect_dist_info *spec);
[all...]
/external/chromium_org/google_apis/drive/
H A Ddrive_api_url_generator_unittest.cc32 url_generator_.GetAboutGetUrl().spec());
34 test_url_generator_.GetAboutGetUrl().spec());
40 url_generator_.GetAppsListUrl(use_internal_url).spec());
42 url_generator_.GetAppsListUrl(!use_internal_url).spec());
44 test_url_generator_.GetAppsListUrl(!use_internal_url).spec());
49 url_generator_.GetAppsDeleteUrl("0ADK06pfg").spec());
51 test_url_generator_.GetAppsDeleteUrl("0ADK06pfg").spec());
57 url_generator_.GetFilesGetUrl("0ADK06pfg").spec());
59 url_generator_.GetFilesGetUrl("0Bz0bd074").spec());
61 url_generator_.GetFilesGetUrl("file:file_id").spec());
[all...]
/external/strace/
H A Dvsprintf.c277 struct printf_spec spec)
284 int need_pfx = ((spec.flags & SPECIAL) && spec.base != 10);
289 if (i < spec.field_width)
290 i = spec.field_width;
295 // if (spec.flags & LEFT)
296 // spec.flags &= ~ZEROPAD;
298 if (spec.flags & SIGN) {
302 spec.field_width--;
303 // } else if (spec
276 number(char *buf, char *end, unsigned long long num, struct printf_spec spec) argument
403 string(char *buf, char *end, const char *s, struct printf_spec spec) argument
441 pointer(const char *fmt, char *buf, char *end, void *ptr, struct printf_spec spec) argument
475 format_decode(const char *fmt, struct printf_spec *spec) argument
653 struct printf_spec spec = {0}; local
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/spec/
H A DMyEncodedKeySpec.java22 package org.apache.harmony.security.tests.support.spec;
24 import java.security.spec.EncodedKeySpec;
44 * @see java.security.spec.EncodedKeySpec#getFormat()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/
H A DProviderConfiguration.java3 import javax.crypto.spec.DHParameterSpec;
5 import org.bouncycastle.jce.spec.ECParameterSpec;
/external/chromium_org/url/
H A Durl_util_internal.h17 bool CompareSchemeComponent(const char* spec,
20 bool CompareSchemeComponent(const base::char16* spec,
/external/oprofile/pp/
H A Dopgprof_options.h30 * @param spec profile specification
32 * Process the spec, fatally complaining on error.
34 void handle_options(options::spec const & spec);
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_utils.cc18 return StartsWithASCII(url.spec(), scope.spec(), true);
24 if (match_.is_empty() || match_.spec().size() < scope.spec().size()) {
/external/bison/lib/
H A Derror.h29 # define _GL_ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))
31 # define _GL_ATTRIBUTE_FORMAT(spec) /* empty */
/external/lldb/source/Host/common/
H A DDynamicLibrary.cpp15 DynamicLibrary::DynamicLibrary (const FileSpec& spec, uint32_t options) : m_filespec(spec) argument
18 m_handle = Host::DynamicLibraryOpen (spec,options,err);
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
H A DSDL_mintaudio_gsxb.c67 static int Mint_OpenAudio(_THIS, SDL_AudioSpec *spec);
72 static int Mint_CheckAudio(_THIS, SDL_AudioSpec *spec);
73 static void Mint_InitAudio(_THIS, SDL_AudioSpec *spec);
200 static int Mint_CheckAudio(_THIS, SDL_AudioSpec *spec) argument
204 Uint16 test_format = SDL_FirstAudioFormat(spec->format);
207 resolution = spec->format & 0x00ff;
208 format_signed = ((spec->format & 0x8000)!=0);
209 format_bigendian = ((spec->format & 0x1000)!=0);
211 DEBUG_PRINT((DEBUG_NAME "asked: %d bits, ",spec->format & 0x00ff));
212 DEBUG_PRINT(("signed=%d, ", ((spec
320 Mint_InitAudio(_THIS, SDL_AudioSpec *spec) argument
375 Mint_OpenAudio(_THIS, SDL_AudioSpec *spec) argument
[all...]
/external/deqp/modules/egl/
H A DteglMemoryStressTests.cpp318 MemoryStressCase (EglTestContext& eglTestCtx, Spec spec, const char* name, const char* description);
335 MemoryStressCase::MemoryStressCase (EglTestContext& eglTestCtx, Spec spec, const char* name, const char* description) argument
337 , m_spec (spec)
459 MemoryStressCase::Spec spec; local
461 spec.types = OBJECTTYPE_PBUFFER;
462 spec.minWidth = 256;
463 spec.minHeight = 256;
464 spec.maxWidth = 256;
465 spec.maxHeight = 256;
466 spec
473 MemoryStressCase::Spec spec; local
487 MemoryStressCase::Spec spec; local
501 MemoryStressCase::Spec spec; local
515 MemoryStressCase::Spec spec; local
529 MemoryStressCase::Spec spec; local
543 MemoryStressCase::Spec spec; local
557 MemoryStressCase::Spec spec; local
571 MemoryStressCase::Spec spec; local
585 MemoryStressCase::Spec spec; local
[all...]

Completed in 9748 milliseconds

1234567891011>>