/dalvik/dx/src/com/android/dx/rop/code/ |
LocalVariableInfo.java | 174 * register spec. This throws an exception if the instruction 177 * <b>Note:</b> Although the instruction contains its own spec for 179 * method, since the spec that is stored here should always have a 184 * @param spec {@code non-null;} the associated register spec 186 public void addAssignment(Insn insn, RegisterSpec spec) { 193 if (spec == null) { 194 throw new NullPointerException("spec == null"); 197 insnAssignments.put(insn, spec);
|
/dalvik/dx/src/com/android/dx/ssa/ |
LocalVariableInfo.java | 175 * register spec. This throws an exception if the instruction 178 * <b>Note:</b> Although the instruction contains its own spec for 180 * method, since the spec that is stored here should always have a 185 * @param spec {@code non-null;} the associated register spec 187 public void addAssignment(SsaInsn insn, RegisterSpec spec) { 194 if (spec == null) { 195 throw new NullPointerException("spec == null"); 198 insnAssignments.put(insn, spec);
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/ |
JCERSACipher.java | 13 import java.security.spec.AlgorithmParameterSpec; 14 import java.security.spec.InvalidParameterSpecException; 15 import java.security.spec.MGF1ParameterSpec; 21 import javax.crypto.spec.OAEPParameterSpec; 22 import javax.crypto.spec.PSource; 277 OAEPParameterSpec spec = (OAEPParameterSpec)params; local 281 if (!spec.getMGFAlgorithm().equalsIgnoreCase("MGF1") && !spec.getMGFAlgorithm().equals(PKCSObjectIdentifiers.id_mgf1.getId())) 286 if (!(spec.getMGFParameters() instanceof MGF1ParameterSpec)) 291 MGF1ParameterSpec mgfParams = (MGF1ParameterSpec)spec.getMGFParameters() [all...] |
JCERSAPrivateKey.java | 9 import java.security.spec.RSAPrivateKeySpec; 42 RSAPrivateKeySpec spec) 44 this.modulus = spec.getModulus(); 45 this.privateExponent = spec.getPrivateExponent();
|
/external/qemu/distrib/sdl-1.2.12/include/ |
SDL_audio.h | 120 * When filling in the desired audio spec structure, 190 extern DECLSPEC SDL_AudioSpec * SDLCALL SDL_LoadWAV_RW(SDL_RWops *src, int freesrc, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len); 193 #define SDL_LoadWAV(file, spec, audio_buf, audio_len) \ 194 SDL_LoadWAV_RW(SDL_RWFromFile(file, "rb"),1, spec,audio_buf,audio_len)
|
/prebuilt/darwin-x86/sdl/include/SDL/ |
SDL_audio.h | 120 * When filling in the desired audio spec structure, 190 extern DECLSPEC SDL_AudioSpec * SDLCALL SDL_LoadWAV_RW(SDL_RWops *src, int freesrc, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len); 193 #define SDL_LoadWAV(file, spec, audio_buf, audio_len) \ 194 SDL_LoadWAV_RW(SDL_RWFromFile(file, "rb"),1, spec,audio_buf,audio_len)
|
/prebuilt/linux-x86/sdl/include/SDL/ |
SDL_audio.h | 120 * When filling in the desired audio spec structure, 190 extern DECLSPEC SDL_AudioSpec * SDLCALL SDL_LoadWAV_RW(SDL_RWops *src, int freesrc, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len); 193 #define SDL_LoadWAV(file, spec, audio_buf, audio_len) \ 194 SDL_LoadWAV_RW(SDL_RWFromFile(file, "rb"),1, spec,audio_buf,audio_len)
|
/prebuilt/windows/sdl/host/include/SDL/ |
SDL_audio.h | 126 * When filling in the desired audio spec structure, 196 extern DECLSPEC SDL_AudioSpec * SDLCALL SDL_LoadWAV_RW(SDL_RWops *src, int freesrc, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len); 199 #define SDL_LoadWAV(file, spec, audio_buf, audio_len) \ 200 SDL_LoadWAV_RW(SDL_RWFromFile(file, "rb"),1, spec,audio_buf,audio_len)
|
/prebuilt/windows/sdl/include/SDL/ |
SDL_audio.h | 120 * When filling in the desired audio spec structure, 190 extern DECLSPEC SDL_AudioSpec * SDLCALL SDL_LoadWAV_RW(SDL_RWops *src, int freesrc, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len); 193 #define SDL_LoadWAV(file, spec, audio_buf, audio_len) \ 194 SDL_LoadWAV_RW(SDL_RWFromFile(file, "rb"),1, spec,audio_buf,audio_len)
|
/dalvik/libcore/crypto/src/main/java/javax/crypto/ |
KeyAgreementSpi.java | 25 import java.security.spec.AlgorithmParameterSpec;
|
/dalvik/libcore/crypto/src/main/java/javax/crypto/spec/ |
PSource.java | 18 package javax.crypto.spec;
|
RC5ParameterSpec.java | 18 package javax.crypto.spec; 20 import java.security.spec.AlgorithmParameterSpec;
|
/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/main/java/java/security/spec/ |
ECParameterSpec.java | 18 package java.security.spec;
|
ECPoint.java | 18 package java.security.spec;
|
RSAOtherPrimeInfo.java | 18 package java.security.spec;
|
RSAPrivateCrtKeySpec.java | 18 package java.security.spec;
|
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/crypto/ |
DSAPrivateKeyImpl.java | 34 import java.security.spec.DSAParameterSpec; 35 import java.security.spec.DSAPrivateKeySpec; 36 import java.security.spec.InvalidKeySpecException; 37 import java.security.spec.PKCS8EncodedKeySpec;
|
DSAPublicKeyImpl.java | 39 import java.security.spec.DSAPublicKeySpec; 40 import java.security.spec.InvalidKeySpecException; 41 import java.security.spec.DSAParameterSpec; 42 import java.security.spec.X509EncodedKeySpec;
|
/dalvik/libcore/security/src/test/java/tests/security/interfaces/ |
DSAPrivateKeyTest.java | 29 import java.security.spec.DSAParameterSpec;
|
RSAPrivateKeyTest.java | 26 import java.security.spec.RSAPrivateKeySpec;
|
RSAPublicKeyTest.java | 26 import java.security.spec.RSAPublicKeySpec;
|
/external/freetype/include/freetype/ |
ftmac.h | 209 /* spec :: FSSpec to the font file. */ 225 const FSSpec *spec, 244 /* spec :: FSRef to the font file. */
|
/dalvik/dx/src/com/android/dx/dex/code/ |
OutputFinisher.java | 115 RegisterSpec spec = ((LocalStart) insn).getLocal(); local 116 if (hasLocalInfo(spec)) { 126 * register spec. 128 * @param spec {@code non-null;} spec to scrutinize 129 * @return {@code true} iff the spec refers to any 132 private static boolean hasLocalInfo(RegisterSpec spec) { 133 return (spec != null) 134 && (spec.getLocalItem().getName() != null); 172 RegisterSpec spec = ((LocalStart) insn).getLocal() local [all...] |
/external/qemu/distrib/sdl-1.2.12/src/audio/windx5/ |
SDL_dx5audio.c | 38 static int DX5_OpenAudio(_THIS, SDL_AudioSpec *spec); 624 static int DX5_OpenAudio(_THIS, SDL_AudioSpec *spec) 634 switch ( spec->format & 0xFF ) { 637 spec->format = AUDIO_U8; 643 spec->format = AUDIO_S16; 651 waveformat.nChannels = spec->channels; 652 waveformat.nSamplesPerSec = spec->freq; 659 SDL_CalculateAudioSpec(spec); 673 &waveformat, spec->size); 678 &waveformat, spec->size) [all...] |