Searched refs:pSource (Results 1 - 25 of 40) sorted by last modified time

12

/frameworks/native/libs/gui/tests/
H A DGLTest.cpp252 void GLTest::loadShader(GLenum shaderType, const char* pSource, argument
257 glShaderSource(shader, 1, &pSource, NULL);
H A DGLTest.h31 static void loadShader(GLenum shaderType, const char* pSource,
/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/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_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/gl2_yuvtex/
H A Dgl2_yuvtex.cpp83 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
86 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/gldual/jni/
H A Dgl_code.cpp37 GLuint loadShader(GLenum shaderType, const char* pSource) { argument
40 glShaderSource(shader, 1, &pSource, NULL);
/frameworks/compile/libbcc/include/bcc/
H A DBCCContext.h42 void addSource(Source &pSource);
43 void removeSource(Source &pSource);
H A DScript.h36 Script(Source &pSource) : mSource(&pSource) { } argument
45 bool reset(Source &pSource, bool pPreserveCurrent = false);
51 bool mergeSource(Source &pSource);
H A DSource.h73 // Merge the current source with pSource. pSource
75 bool merge(Source &pSource);
/frameworks/compile/libbcc/include/bcc/Renderscript/
H A DRSScript.h72 RSScript(Source &pSource);
76 RSScript(Source &pSource, const CompilerConfig * pCompilerConfig);
/frameworks/compile/libbcc/lib/Core/
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 DScript.cpp23 bool Script::reset(Source &pSource, bool pPreserveCurrent) { argument
24 if (mSource == &pSource) {
31 mSource = &pSource;
35 bool Script::mergeSource(Source &pSource) { argument
36 return mSource->merge(pSource);
H A DSource.cpp158 bool Source::merge(Source &pSource) { argument
160 if (llvm::Linker::linkModules(*mModule, std::unique_ptr<llvm::Module>(&pSource.getModule())) != 0) {
162 getIdentifier().c_str(), pSource.getIdentifier().c_str());
165 // pSource.getModule() is destroyed after linking.
166 pSource.markModuleDestroyed();
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSScript.cpp52 RSScript::RSScript(Source &pSource) argument
53 : Script(pSource), mCompilerVersion(0),
58 RSScript::RSScript(Source &pSource, const CompilerConfig * pCompilerConfig): RSScript(pSource) argument
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DStub.h69 uint64_t pSource,
68 isMyDuty(const Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
/frameworks/compile/mclinker/include/mcld/LD/
H A DStubFactory.h49 const uint64_t pSource,
/frameworks/compile/mclinker/include/mcld/MC/
H A DSymbolCategory.h156 Category::Type pSource,
/frameworks/compile/mclinker/lib/LD/
H A DStubFactory.cpp110 uint64_t pSource,
114 if ((*it)->isMyDuty(pReloc, pSource, pTargetSymValue))
109 findPrototype(const Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
/frameworks/compile/mclinker/lib/MC/
H A DSymbolCategory.cpp99 Category::Type pSource,
101 int distance = pTarget - pSource;
111 if (pSource == current->type)
98 arrange(LDSymbol& pSymbol, Category::Type pSource, Category::Type pTarget) argument
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64LongBranchStub.cpp82 uint64_t pSource,
87 int64_t branch_offset = dest - pSource;
95 static bool isValidForADRP(uint64_t pSource, uint64_t pDest) { argument
97 helper_get_page_address(pSource))) >> 12;
81 isMyDuty(const Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
H A DAArch64LongBranchStub.h31 uint64_t pSource,
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMToARMStub.cpp62 uint64_t pSource,
74 int64_t branch_offset = static_cast<int64_t>(dest) - pSource;
61 isMyDuty(const class Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
H A DARMToARMStub.h34 uint64_t pSource,

Completed in 240 milliseconds

12