Searched refs:emit (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/compile/mclinker/include/mcld/
H A DLinker.h53 /// 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 Dbuild_clcore.sh12 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 Dbuild_bc_lib.mk33 -emit-llvm \
/frameworks/compile/mclinker/lib/LD/
H A DMsgHandler.cpp20 emit();
23 bool MsgHandler::emit() function in class:MsgHandler
26 return m_Engine.emit();
H A DDiagnosticEngine.cpp60 // emit - process current diagnostic.
61 bool DiagnosticEngine::emit() function in class:DiagnosticEngine
/frameworks/rs/driver/linkloader/tests/images/
H A Dgen-testcases.sh23 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 DELFDynamic.h46 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 DARMPLT.h75 uint64_t emit(MemoryRegion& pRegion);
H A DARMGOT.h71 uint64_t emit(MemoryRegion& pRegion);
H A DARMGOT.cpp150 uint64_t ARMGOT::emit(MemoryRegion& pRegion) function in class:ARMGOT
H A DARMPLT.cpp179 uint64_t ARMPLT::emit(MemoryRegion& pRegion) function in class:ARMPLT
H A DARMLDBackend.cpp76 // 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 DGenerateGL.java34 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 DGenerateEGL.java34 private static void emit(EGLCodeEmitter emitter, method in class:GenerateEGL
101 emit(emitter, specReader, egljStream, eglcStream);
H A DGenerateGLES.java34 private static void emit(GLESCodeEmitter emitter, method in class:GenerateGLES
104 emit(emitter, spec11Reader, gl11Stream, gl11cStream);
/frameworks/compile/mclinker/lib/Core/
H A DLinker.cpp211 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 DMipsGOT.h43 uint64_t emit(MemoryRegion& pRegion);
H A DMipsGOT.cpp74 uint64_t MipsGOT::emit(MemoryRegion& pRegion) function in class:MipsGOT
/frameworks/compile/mclinker/unittests/
H A DLinkerTest.cpp66 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 DLinker.cpp171 mLinker->emit(mOutputPath);
176 mLinker->emit(mOutputHandler);
/frameworks/compile/mclinker/tools/mcld/lib/Core/
H A DLinker.cpp164 mLinker->emit(mOutputPath);
169 mLinker->emit(mOutputHandler);
/frameworks/compile/mclinker/include/mcld/LD/
H A DDiagnosticEngine.h83 // emit - process the message to printer
84 bool emit();
H A DMsgHandler.h31 bool emit();
/frameworks/compile/mclinker/lib/Target/
H A DELFDynamic.cpp338 /// 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 DMCLinker.cpp228 if (!m_pLinker->emit(m_Output))

Completed in 825 milliseconds

12