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

/frameworks/compile/libbcc/lib/
H A DScript.cpp31 Script::Script(Source *pSource) argument
32 : mSource(pSource),
90 bool Script::mergeSource(Source &pSource) { return mSource->merge(pSource); } argument
H A DBCCContext.cpp55 void BCCContext::addSource(Source &pSource) argument
56 { mImpl->mOwnSources.insert(&pSource); }
58 void BCCContext::removeSource(Source &pSource) argument
59 { mImpl->mOwnSources.erase(&pSource); }
H A DSource.cpp211 bool Source::merge(Source &pSource) { argument
213 if (llvm::Linker::linkModules(*mModule, std::unique_ptr<llvm::Module>(&pSource.getModule())) != 0) {
215 getIdentifier().c_str(), pSource.getIdentifier().c_str());
218 // pSource.getModule() is destroyed after linking.
219 pSource.markModuleDestroyed();
/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/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/Target/Mips/
H A DMipsLA25Stub.cpp51 uint64_t pSource,
50 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/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/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/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.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/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.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/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.cpp193 void loadShader(GLenum shaderType, const char* pSource, GLuint* outShader) { argument
197 glShaderSource(shader, 1, &pSource, NULL);

Completed in 1234 milliseconds