HomeSort by relevance Sort by last modified time
    Searched full:psource (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /frameworks/compile/libbcc/lib/Core/
Script.cpp 23 bool Script::reset(Source &pSource, bool pPreserveCurrent) {
24 if (mSource == &pSource) {
31 mSource = &pSource;
35 bool Script::mergeSource(Source &pSource, bool pPreserveSource) {
36 return mSource->merge(pSource, pPreserveSource);
BCCContext.cpp 56 void BCCContext::addSource(Source &pSource)
57 { mImpl->mOwnSources.insert(&pSource); }
59 void BCCContext::removeSource(Source &pSource)
60 { mImpl->mOwnSources.erase(&pSource); }
Source.cpp 136 bool Source::merge(Source &pSource, bool pPreserveSource) {
142 if (llvm::Linker::LinkModules(mModule, &pSource.getModule(),
146 pSource.getIdentifier().c_str(),
152 pSource.mNoDelete = true;
153 delete &pSource;
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/spec/
PSourceTest.java 25 import javax.crypto.spec.PSource;
44 new PSource.PSpecified(null);
50 assertEquals("The PSource.PSpecified DEFAULT value should be byte[0]",
51 0, PSource.PSpecified.DEFAULT.getValue().length);
54 PSource.PSpecified ps = new PSource.PSpecified(p);
69 PSource.PSpecified ps = new PSource.PSpecified(p);
82 * PSource(String pSrcName) method testing. Tests that returned value is
87 new PSource(null)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
PSourceTest.java 26 import javax.crypto.spec.PSource;
44 new PSource.PSpecified(null);
50 assertEquals("The PSource.PSpecified DEFAULT value should be byte[0]",
51 0, PSource.PSpecified.DEFAULT.getValue().length);
54 PSource.PSpecified ps = new PSource.PSpecified(p);
69 PSource.PSpecified ps = new PSource.PSpecified(p);
83 * PSource(String pSrcName) method testing. Tests that returned value is
88 new PSource(null) {}
    [all...]
OAEPParameterSpecTest.java 29 import javax.crypto.spec.PSource;
41 * mgfSpec, PSource pSrc) method testing. Tests that NullPointerException
50 PSource pSrc = PSource.PSpecified.DEFAULT;
88 + "PSource.PSpecified.DEFAULT",
90 == PSource.PSpecified.DEFAULT);
100 PSource pSrc = PSource.PSpecified.DEFAULT;
116 PSource pSrc = PSource.PSpecified.DEFAULT
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/src/
frameparser.cpp 148 OMX_U8 *pdest = NULL,*psource = NULL, match_found = FALSE, is_byte_match = 0; local
160 psource = source->pBuffer + source->nOffset;
218 parse_additional_start_code(psource,&parsed_length);
222 psource++;
226 if ((*psource & mask_code [3]) == start_code [3])
229 last_byte = *psource;
232 psource++;
261 is_byte_match = ((*psource & mask_code [2]) == start_code [2]);
268 last_byte_h263 = *psource;
274 (*psource & mask_code [3]) == start_code [3]
524 OMX_U8 *pdest = NULL,*psource = NULL; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/common/
cmnMemory.c 50 VO_U32 cmnMemCopy (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize)
52 memcpy (pDest, pSource, uSize);
66 VO_U32 cmnMemMove (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize)
68 memmove (pDest, pSource, uSize);
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/
frameparser.cpp 156 OMX_U8 *pdest = NULL,*psource = NULL, match_found = FALSE, is_byte_match = 0; local
167 psource = source->pBuffer + source->nOffset;
221 parse_additional_start_code(psource,&parsed_length);
226 psource++;
231 if ((*psource & mask_code [3]) == start_code [3]) {
233 last_byte = *psource;
236 psource++;
260 is_byte_match = ((*psource & mask_code [2]) == start_code [2]);
265 last_byte_h263 = *psource;
270 (*psource & mask_code [3]) == start_code [3])
489 OMX_U8 *pdest = NULL,*psource = NULL; local
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
OAEPParameterSpecTest.java 28 import javax.crypto.spec.PSource;
41 * mgfSpec, PSource pSrc) method testing. Tests that NullPointerException
50 PSource pSrc = PSource.PSpecified.DEFAULT;
88 + "PSource.PSpecified.DEFAULT",
90 == PSource.PSpecified.DEFAULT);
100 PSource pSrc = PSource.PSpecified.DEFAULT;
116 PSource pSrc = PSource.PSpecified.DEFAULT
    [all...]
  /cts/tests/tests/opengl/libopengltest/
common.cpp 23 GLuint loadShader(GLenum shaderType, const char* pSource) {
25 glShaderSource(shader, 1, &pSource, NULL);
common.h 24 GLuint loadShader(GLenum shaderType, const char* pSource);
  /frameworks/compile/libbcc/include/bcc/
Script.h 36 Script(Source &pSource) : mSource(&pSource) { }
45 bool reset(Source &pSource, bool pPreserveCurrent = false);
51 bool mergeSource(Source &pSource, bool pPreserveSource = false);
BCCContext.h 42 void addSource(Source &pSource);
43 void removeSource(Source &pSource);
Source.h 58 // Merge the current source with pSource. If pPreserveSource is false, pSource
60 bool merge(Source &pSource, bool pPreserveSource = false);
  /libcore/luni/src/main/java/javax/crypto/spec/
PSource.java 26 public class PSource {
30 private PSource() {}
33 * Creates a new <code>PSource</code> instance with the specified source
41 protected PSource(String pSrcName) {
61 public static final class PSpecified extends PSource {
OAEPParameterSpec.java 34 private final PSource pSrc;
43 * <li>the source of the label <code>L</code>: {@link PSource.PSpecified#DEFAULT}</li>
52 this.pSrc = PSource.PSpecified.DEFAULT;
75 AlgorithmParameterSpec mgfSpec, PSource pSrc) {
123 public PSource getPSource() {
  /frameworks/av/media/libstagefright/codecs/common/include/
cmnMemory.h 64 * \param pSource [in] address of source memory
68 VO_U32 cmnMemCopy (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
93 * \param pSource [in] address of source memory
97 VO_U32 cmnMemMove (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
voMem.h 46 VO_U32 (VO_API * Copy) (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
49 VO_U32 (VO_API * Move) (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
  /libcore/luni/src/test/java/libcore/javax/crypto/spec/
AlgorithmParametersTestOAEP.java 20 import javax.crypto.spec.PSource;
27 super("OAEP", new AlgorithmParameterAsymmetricHelper("RSA"), new OAEPParameterSpec("SHA-1", "MGF1", MGF1ParameterSpec.SHA1, PSource.PSpecified.DEFAULT));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
AlgorithmParametersSpi.java 10 import javax.crypto.spec.PSource;
63 PSource.PSpecified pSource = (PSource.PSpecified)currentSpec.getPSource();
65 PKCSObjectIdentifiers.id_pSpecified, new DEROctetString(pSource.getValue()));
125 new PSource.PSpecified(ASN1OctetString.getInstance(oaepP.getPSourceAlgorithm().getParameters()).getOctets()));
CipherSpi.java 22 import javax.crypto.spec.PSource;
92 cipher = new OAEPEncoding(new RSABlindedEngine(), digest, ((PSource.PSpecified)pSpec.getPSource()).getValue());
210 initFromSpec(new OAEPParameterSpec("MD5", "MGF1", new MGF1ParameterSpec("MD5"), PSource.PSpecified.DEFAULT));
223 // initFromSpec(new OAEPParameterSpec("SHA-224", "MGF1", new MGF1ParameterSpec("SHA-224"), PSource.PSpecified.DEFAULT));
228 initFromSpec(new OAEPParameterSpec("SHA-256", "MGF1", MGF1ParameterSpec.SHA256, PSource.PSpecified.DEFAULT));
232 initFromSpec(new OAEPParameterSpec("SHA-384", "MGF1", MGF1ParameterSpec.SHA384, PSource.PSpecified.DEFAULT));
236 initFromSpec(new OAEPParameterSpec("SHA-512", "MGF1", MGF1ParameterSpec.SHA512, PSource.PSpecified.DEFAULT));
311 cipher = new OAEPEncoding(new RSABlindedEngine(), digest, mgfDigest, ((PSource.PSpecified)spec.getPSource()).getValue());
  /frameworks/compile/libbcc/lib/Renderscript/
RSScript.cpp 70 RSScript::RSScript(Source &pSource)
71 : Script(pSource), mInfo(NULL), mCompilerVersion(0),
  /packages/apps/Camera/jni/feature_mos/src/mosaic_renderer/
Renderer.h 34 GLuint loadShader(GLenum shaderType, const char* pSource);
  /packages/apps/Camera2/jni/feature_mos/src/mosaic_renderer/
Renderer.h 34 GLuint loadShader(GLenum shaderType, const char* pSource);

Completed in 1136 milliseconds

1 2 3 4