Searched defs:pSource (Results 1 - 24 of 24) sorted by last modified time

/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/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 DScript.h36 Script(Source &pSource) : mSource(&pSource) { } argument
45 bool reset(Source &pSource, bool pPreserveCurrent = false);
51 bool mergeSource(Source &pSource);
/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/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
/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 DARMToTHMStub.cpp64 uint64_t pSource,
74 int64_t branch_offset = static_cast<int64_t>(dest) - pSource;
63 isMyDuty(const class Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
H A DTHMToARMStub.cpp71 uint64_t pSource,
81 int64_t branch_offset = static_cast<int64_t>(dest) - pSource;
70 isMyDuty(const class Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
H A DTHMToTHMStub.cpp73 uint64_t pSource,
83 int64_t branch_offset = static_cast<int64_t>(dest) - pSource;
72 isMyDuty(const class Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonAbsoluteStub.cpp61 uint64_t pSource,
84 int64_t offset = pTargetSymValue - pSource;
60 isMyDuty(const class Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLA25Stub.cpp51 uint64_t pSource,
50 isMyDuty(const Relocation& pReloc, uint64_t pSource, uint64_t pTargetSymValue) const argument
/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/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp193 void loadShader(GLenum shaderType, const char* pSource, GLuint* outShader) { argument
197 glShaderSource(shader, 1, &pSource, NULL);

Completed in 1870 milliseconds