Searched defs:pSource (Results 1 - 24 of 24) sorted by relevance

/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.cpp144 bool Source::merge(Source &pSource, bool pPreserveSource) { argument
150 if (llvm::Linker::LinkModules(mModule, &pSource.getModule(),
154 pSource.getIdentifier().c_str(),
160 pSource.mNoDelete = true;
161 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);
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSScript.cpp53 RSScript::RSScript(Source &pSource) argument
54 : Script(pSource), mInfo(NULL), mCompilerVersion(0),
H A DRSInfoExtractor.cpp111 RSInfo* RSInfo::ExtractFromSource(const Source& pSource, const DependencyHashTy& sourceHashToEmbed, argument
114 const llvm::Module &module = pSource.getModule();
/frameworks/av/media/libstagefright/codecs/common/
H A DcmnMemory.c58 VO_U32 cmnMemCopy (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize) argument
62 memcpy (pDest, pSource, uSize);
82 VO_U32 cmnMemMove (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize) argument
86 memmove (pDest, pSource, uSize);
/frameworks/compile/mclinker/lib/ADT/GraphLite/
H A DDigraph.cpp60 Digraph::addArc(const Digraph::Node& pSource, const Digraph::Node& pTarget) argument
/frameworks/compile/mclinker/lib/LD/
H A DStubFactory.cpp122 uint64_t pSource,
127 if ((*it)->isMyDuty(pReloc, pSource, pTargetSymValue))
121 findPrototype(const Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) argument
/frameworks/compile/mclinker/lib/Target/ARM/
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.cpp73 uint64_t pSource,
84 int64_t branch_offset = static_cast<int64_t>(dest) - pSource;
72 isMyDuty(const class Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
H A DTHMToTHMStub.cpp75 uint64_t pSource,
86 int64_t branch_offset = static_cast<int64_t>(dest) - pSource;
74 isMyDuty(const class Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonAbsoluteStub.cpp63 uint64_t pSource,
87 int64_t offset = pTargetSymValue - pSource;
62 isMyDuty(const class Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLA25Stub.cpp63 uint64_t pSource,
62 isMyDuty(const Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const 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);
/frameworks/compile/mclinker/lib/MC/
H A DSymbolCategory.cpp104 Category::Type pSource,
107 int distance = pTarget - pSource;
117 if (pSource == current->type)
103 arrange(LDSymbol& pSymbol, Category::Type pSource, Category::Type pTarget) argument
/frameworks/native/libs/gui/tests/
H A DGLTest.cpp252 void GLTest::loadShader(GLenum shaderType, const char* pSource, argument
257 glShaderSource(shader, 1, &pSource, NULL);
/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp76 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
79 glShaderSource(shader, 1, &pSource, NULL);
/frameworks/native/opengl/tests/gl_perf/
H A Dfill_common.cpp33 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
36 glShaderSource(shader, 1, &pSource, NULL);
/frameworks/native/opengl/tests/gl2_copyTexImage/
H A Dgl2_copyTexImage.cpp76 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
79 glShaderSource(shader, 1, &pSource, NULL);
/frameworks/native/opengl/tests/gl2_yuvtex/
H A Dgl2_yuvtex.cpp83 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
86 glShaderSource(shader, 1, &pSource, NULL);
/frameworks/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp197 void loadShader(GLenum shaderType, const char* pSource, GLuint* outShader) { argument
201 glShaderSource(shader, 1, &pSource, NULL);

Completed in 262 milliseconds