Searched refs:pSource (Results 1 - 25 of 38) sorted by relevance

12

/frameworks/compile/libbcc/lib/Core/
H A DScript.cpp23 bool Script::reset(Source &pSource, bool pPreserveCurrent) { argument
24 if (mSource == &pSource) {
31 mSource = &pSource;
35 bool Script::mergeSource(Source &pSource, bool pPreserveSource) { argument
36 return mSource->merge(pSource, pPreserveSource);
H A DBCCContext.cpp56 void BCCContext::addSource(Source &pSource) argument
57 { mImpl->mOwnSources.insert(&pSource); }
59 void BCCContext::removeSource(Source &pSource) argument
60 { mImpl->mOwnSources.erase(&pSource); }
H A DSource.cpp136 bool Source::merge(Source &pSource, bool pPreserveSource) { argument
142 if (llvm::Linker::LinkModules(mModule, &pSource.getModule(),
146 pSource.getIdentifier().c_str(),
152 pSource.mNoDelete = true;
153 delete &pSource;
/frameworks/compile/libbcc/include/bcc/
H A DScript.h36 Script(Source &pSource) : mSource(&pSource) { } argument
45 bool reset(Source &pSource, bool pPreserveCurrent = false);
51 bool mergeSource(Source &pSource, bool pPreserveSource = false);
H A DBCCContext.h42 void addSource(Source &pSource);
43 void removeSource(Source &pSource);
H A DSource.h58 // Merge the current source with pSource. If pPreserveSource is false, pSource
60 bool merge(Source &pSource, bool pPreserveSource = false);
/frameworks/av/media/libstagefright/codecs/common/
H A DcmnMemory.c50 VO_U32 cmnMemCopy (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize) argument
52 memcpy (pDest, pSource, uSize);
66 VO_U32 cmnMemMove (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize) argument
68 memmove (pDest, pSource, uSize);
/frameworks/av/media/libstagefright/codecs/common/include/
H A DcmnMemory.h64 * \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);
H A DvoMem.h46 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);
/frameworks/compile/mclinker/include/mcld/LD/
H A DStubFactory.h47 const uint64_t pSource,
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSScript.cpp70 RSScript::RSScript(Source &pSource) argument
71 : Script(pSource), mInfo(NULL), mCompilerVersion(0),
/frameworks/compile/libbcc/include/bcc/Renderscript/
H A DRSScript.h63 RSScript(Source &pSource);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMToARMStub.h40 uint64_t pSource,
H A DARMToTHMStub.h40 uint64_t pSource,
H A DTHMToARMStub.h40 uint64_t pSource,
H A DTHMToTHMStub.h40 uint64_t pSource,
H A DARMToARMStub.cpp65 uint64_t pSource,
78 int64_t branch_offset = static_cast<int64_t>(dest) - pSource;
64 isMyDuty(const class Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
H A DARMToTHMStub.cpp67 uint64_t pSource,
78 int64_t branch_offset = static_cast<int64_t>(dest) - pSource;
66 isMyDuty(const class Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
H A DTHMToARMStub.cpp67 uint64_t pSource,
78 int64_t branch_offset = static_cast<int64_t>(dest) - pSource;
66 isMyDuty(const class Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
H A DTHMToTHMStub.cpp69 uint64_t pSource,
80 int64_t branch_offset = static_cast<int64_t>(dest) - pSource;
68 isMyDuty(const class Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonAbsoluteStub.h40 uint64_t pSource,
H A DHexagonAbsoluteStub.cpp62 uint64_t pSource,
86 int64_t offset = pTargetSymValue - pSource;
61 isMyDuty(const class Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
/frameworks/compile/mclinker/lib/LD/
H A DStubFactory.cpp113 uint64_t pSource,
118 if ((*it)->isMyDuty(pReloc, pSource, pTargetSymValue))
112 findPrototype(const Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) argument
/frameworks/native/opengl/tests/gl2_jni/jni/
H A Dgl_code.cpp37 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
40 glShaderSource(shader, 1, &pSource, NULL);
/frameworks/native/opengl/tests/gldual/jni/
H A Dgl_code.cpp37 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
40 glShaderSource(shader, 1, &pSource, NULL);

Completed in 471 milliseconds

12