/external/bouncycastle/src/main/java/org/bouncycastle/jce/spec/ |
ECKeySpec.java | 1 package org.bouncycastle.jce.spec; 3 import java.security.spec.KeySpec; 6 * base class for an Elliptic Curve Key Spec 11 private ECParameterSpec spec; field in class:ECKeySpec 14 ECParameterSpec spec) 16 this.spec = spec; 24 return spec;
|
ECPrivateKeySpec.java | 1 package org.bouncycastle.jce.spec; 17 * @param spec the domain parameters for the curve being used. 21 ECParameterSpec spec) 23 super(spec);
|
ECPublicKeySpec.java | 1 package org.bouncycastle.jce.spec; 17 * @param spec the domain parameters for the curve. 21 ECParameterSpec spec) 23 super(spec);
|
/external/srec/srec/clib/ |
specnorm.c | 37 int copy_distribution_counts(spect_dist_info *spec, spect_dist_info *base); 40 int add_distribution_data(spect_dist_info *spec, int spec_val) 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->running_total += spec_val - spec->mean 221 spect_dist_info *spec; local [all...] |
/external/elfutils/config/ |
Makefile.am | 19 EXTRA_DIST = elfutils.spec.in
|
/external/llvm/test/FrontendC/ |
2003-11-20-UnionBitfield.c | 9 struct printf_spec spec; local 10 spec.minus_flag = 1;
|
/libcore/luni/src/main/java/java/security/spec/ |
AlgorithmParameterSpec.java | 18 package java.security.spec;
|
ECField.java | 18 package java.security.spec;
|
KeySpec.java | 18 package java.security.spec;
|
/external/oprofile/pp/ |
opgprof_options.h | 30 * @param spec profile specification 32 * Process the spec, fatally complaining on error. 34 void handle_options(options::spec const & spec);
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
CodeGenGLSL.cpp | 14 TCompiler* ConstructCompiler(ShShaderType type, ShShaderSpec spec) 16 return new TranslatorGLSL(type, spec);
|
CodeGenHLSL.cpp | 14 TCompiler* ConstructCompiler(ShShaderType type, ShShaderSpec spec) 16 return new TranslatorHLSL(type, spec);
|
/libcore/luni/src/test/java/libcore/javax/crypto/spec/ |
AlgorithmParametersTestOAEP.java | 16 package libcore.javax.crypto.spec; 18 import java.security.spec.MGF1ParameterSpec; 19 import javax.crypto.spec.OAEPParameterSpec; 20 import javax.crypto.spec.PSource;
|
AlgorithmParameterGeneratorTestDSA.java | 16 package libcore.javax.crypto.spec; 18 import java.security.spec.DSAParameterSpec;
|
/external/srec/srec/include/ |
specnorm.h | 79 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/netcat/scripts/ |
web | 23 ## gets the previous spec again [useful for initial timeouts]; EOF to exit. 48 spec="/" 60 while echo -n "${specD}${specF} " && read spec ; do 61 case $spec in 85 specF=`echo "${spec}" | sed 's|.*/||'` 86 specD=`echo "${spec}" | sed 's|\(.*/\).*|\1|'` 87 spec="${specD}${specF}" 91 specF=`echo "${spec}" | sed 's|.*/||'` 92 specD=`echo "${specD}${spec}" | sed 's|\(.*/\).*|\1|'` 113 specF=${spec} [all...] |
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/spec/ |
MyEncodedKeySpec.java | 22 package org.apache.harmony.security.tests.support.spec; 24 import java.security.spec.EncodedKeySpec; 42 * @see java.security.spec.EncodedKeySpec#getFormat()
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/spec/ |
MyEncodedKeySpec.java | 23 package org.apache.harmony.security.tests.support.spec; 25 import java.security.spec.EncodedKeySpec; 43 * @see java.security.spec.EncodedKeySpec#getFormat()
|
/libcore/luni/src/main/java/java/security/interfaces/ |
ECKey.java | 20 import java.security.spec.ECParameterSpec;
|
/libcore/luni/src/main/java/javax/crypto/interfaces/ |
DHKey.java | 20 import javax.crypto.spec.DHParameterSpec;
|
/external/qemu/distrib/sdl-1.2.12/src/audio/mint/ |
SDL_mintaudio_gsxb.c | 67 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) 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->format & 0x8000)!=0))) [all...] |
SDL_mintaudio_mcsn.c | 70 static int Mint_OpenAudio(_THIS, SDL_AudioSpec *spec); 75 static int Mint_CheckAudio(_THIS, SDL_AudioSpec *spec); 76 static void Mint_InitAudio(_THIS, SDL_AudioSpec *spec); 216 static int Mint_CheckAudio(_THIS, SDL_AudioSpec *spec) 221 DEBUG_PRINT((DEBUG_NAME "asked: %d bits, ",spec->format & 0x00ff)); 222 DEBUG_PRINT(("signed=%d, ", ((spec->format & 0x8000)!=0))); 223 DEBUG_PRINT(("big endian=%d, ", ((spec->format & 0x1000)!=0))); 224 DEBUG_PRINT(("channels=%d, ", spec->channels)); 225 DEBUG_PRINT(("freq=%d\n", spec->freq)); 227 if (spec->channels > 2) [all...] |
/cts/tests/src/android/theme/cts/ |
TabHostModifier.java | 33 TabHost.TabSpec spec; // Reusable TabSpec for each tab local 36 spec = tabHost.newTabSpec("artists").setIndicator("Artists").setContent(R.id.tabInnerView); 37 tabHost.addTab(spec); 40 spec = tabHost.newTabSpec("albums").setIndicator("Albums").setContent(R.id.tabInnerView); 41 tabHost.addTab(spec); 43 spec = tabHost.newTabSpec("songs").setIndicator("Songs").setContent(R.id.tabInnerView); 44 tabHost.addTab(spec);
|
/external/qemu/distrib/sdl-1.2.12/src/audio/macrom/ |
SDL_romaudio.c | 51 static int Mac_OpenAudio(_THIS, SDL_AudioSpec *spec); 128 audio->spec.callback(audio->spec.userdata, 131 if ( audio->convert.len_cvt != audio->spec.size ) { 136 audio->spec.callback(audio->spec.userdata, buffer, audio->spec.size); 191 memset (buffer[fill_me], 0, audio->spec.size); 211 static int Mac_OpenAudio(_THIS, SDL_AudioSpec *spec) { 219 switch (spec->format) [all...] |
/dalvik/dx/src/com/android/dx/gen/ |
Local.java | 28 private RegisterSpec spec; field in class:Local 46 this.spec = RegisterSpec.make(reg, type.ropType); 54 RegisterSpec spec() { method in class:Local 55 if (spec == null) { 57 if (spec == null) { 61 return spec;
|