/frameworks/compile/mclinker/include/mcld/ |
H A D | Linker.h | 53 /// emit - To emit output mcld::Module to a output MemoryArea 54 bool emit(MemoryArea& pOutput); 56 /// emit - To open a file for output in pPath and to emit output mcld::Module 58 bool emit(const std::string& pPath); 60 /// emit - To emit output mcld::Module in the pFileDescriptor. 61 bool emit(int pFileDescriptor);
|
/frameworks/compile/libbcc/lib/Renderscript/runtime/ |
H A D | build_clcore.sh | 12 clang -target armv7-none-linux-gnueabi -I${scriptc_path} -I${clang_header_path} -c -std=c99 -O3 rs_cl.c -emit-llvm -o rs_cl.bc 17 clang -target armv7-none-linux-gnueabi -I${scriptc_path} -I${clang_header_path} -c -std=c99 -O3 rs_core.c -emit-llvm -o rs_core.bc
|
H A D | build_bc_lib.mk | 33 -emit-llvm \
|
/frameworks/compile/mclinker/lib/LD/ |
H A D | MsgHandler.cpp | 20 emit(); 23 bool MsgHandler::emit() function in class:MsgHandler 26 return m_Engine.emit();
|
H A D | DiagnosticEngine.cpp | 60 // emit - process current diagnostic. 61 bool DiagnosticEngine::emit() function in class:DiagnosticEngine
|
/frameworks/rs/driver/linkloader/tests/images/ |
H A D | gen-testcases.sh | 23 clang -emit-llvm -std=c89 -Wall -c test.c -o test.bc 24 clang -emit-llvm -std=c89 -Wall -c simple-test.c -o simple-test.bc 25 clang -emit-llvm -std=c89 -Wall -c rodata-test.c -o rodata-test.bc
|
/frameworks/compile/mclinker/include/mcld/Target/ |
H A D | ELFDynamic.h | 46 virtual size_t emit(uint8_t* pAddress) const = 0; 85 inline size_t emit(uint8_t* pAddress) const; 122 inline size_t emit(uint8_t* pAddress) const; 171 /// emit 172 void emit(const LDSection& pSection, MemoryRegion& pRegion) const;
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
H A D | ARMPLT.h | 75 uint64_t emit(MemoryRegion& pRegion);
|
H A D | ARMGOT.h | 71 uint64_t emit(MemoryRegion& pRegion);
|
H A D | ARMGOT.cpp | 150 uint64_t ARMGOT::emit(MemoryRegion& pRegion) function in class:ARMGOT
|
H A D | ARMPLT.cpp | 179 uint64_t ARMPLT::emit(MemoryRegion& pRegion) function in class:ARMPLT
|
H A D | ARMLDBackend.cpp | 76 // FIXME: Currently we set exidx and extab to "Exception" and directly emit 813 uint64_t result = m_pPLT->emit(pRegion); 819 uint64_t result = m_pGOT->emit(pRegion);
|
/frameworks/native/opengl/tools/glgen/src/ |
H A D | GenerateGL.java | 34 private static void emit(int version, boolean ext, boolean pack, method in class:GenerateGL 161 emit(0, false, false, 163 emit(0, true, false, 165 emit(1, false, false, 167 emit(1, true, false, 169 emit(1, true, true,
|
H A D | GenerateEGL.java | 34 private static void emit(EGLCodeEmitter emitter, method in class:GenerateEGL 101 emit(emitter, specReader, egljStream, eglcStream);
|
H A D | GenerateGLES.java | 34 private static void emit(GLESCodeEmitter emitter, method in class:GenerateGLES 104 emit(emitter, spec11Reader, gl11Stream, gl11cStream);
|
/frameworks/compile/mclinker/lib/Core/ |
H A D | Linker.cpp | 211 bool Linker::emit(MemoryArea& pOutput) function in class:Linker 225 bool Linker::emit(const std::string& pPath) function in class:Linker 232 error(diag::err_cannot_open_output_file) << "Linker::emit()" << pPath; 238 bool result = emit(*output); 245 bool Linker::emit(int pFileDescriptor) function in class:Linker 251 bool result = emit(*output);
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
H A D | MipsGOT.h | 43 uint64_t emit(MemoryRegion& pRegion);
|
H A D | MipsGOT.cpp | 74 uint64_t MipsGOT::emit(MemoryRegion& pRegion) function in class:MipsGOT
|
/frameworks/compile/mclinker/unittests/ |
H A D | LinkerTest.cpp | 66 linker.emit("./test.so"); 125 linker.emit("libplasma.so"); ///< -o libplasma.so 182 linker.emit("libplasma.once.so"); ///< -o libplasma.so 224 linker.emit("libplasma.twice.so"); ///< -o libplasma.exe 277 linker.emit("libplasma.once.so"); ///< -o libplasma.so 280 // Can not delete builder until emit the output. Dynamic string table 324 linker.emit("libplasma.twice.so"); ///< -o libplasma.exe 464 linker.emit("libgotplt.so"); ///< -o libgotplt.so
|
/frameworks/compile/libbcc/lib/Core/ |
H A D | Linker.cpp | 171 mLinker->emit(mOutputPath); 176 mLinker->emit(mOutputHandler);
|
/frameworks/compile/mclinker/tools/mcld/lib/Core/ |
H A D | Linker.cpp | 164 mLinker->emit(mOutputPath); 169 mLinker->emit(mOutputHandler);
|
/frameworks/compile/mclinker/include/mcld/LD/ |
H A D | DiagnosticEngine.h | 83 // emit - process the message to printer 84 bool emit();
|
H A D | MsgHandler.h | 31 bool emit();
|
/frameworks/compile/mclinker/lib/Target/ |
H A D | ELFDynamic.cpp | 338 /// emit 339 void ELFDynamic::emit(const LDSection& pSection, MemoryRegion& pRegion) const function in class:ELFDynamic 349 address += (*entry)->emit(address); 353 address += (*entry)->emit(address);
|
/frameworks/compile/mclinker/lib/CodeGen/ |
H A D | MCLinker.cpp | 228 if (!m_pLinker->emit(m_Output))
|