HomeSort by relevance Sort by last modified time
    Searched defs:Out (Results 1 - 25 of 41) sorted by null

1 2

  /external/llvm/utils/FileUpdate/
FileUpdate.cpp 55 OwningPtr<MemoryBuffer> Out;
56 MemoryBuffer::getFile(OutputFilename.c_str(), Out);
59 if (Out && In->getBufferSize() == Out->getBufferSize() &&
60 memcmp(In->getBufferStart(), Out->getBufferStart(),
61 Out->getBufferSize()) == 0) {
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_InvTransformResidualAndAdd.c 69 OMX_S16 In[16], Out[16];
102 armVCM4P10_TransformResidual4x4 (Out, In);
109 Value = (OMX_S32) Out [j * 4 + i] + pSrcPred [j * iSrcPredStep + i];
  /external/clang/include/clang/Basic/
MacroBuilder.h 23 raw_ostream &Out;
25 MacroBuilder(raw_ostream &Output) : Out(Output) {}
29 Out << "#define " << Name << ' ' << Value << '\n';
35 Out << "#undef " << Name << '\n';
40 Out << Str << '\n';
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 173 llvm::raw_svector_ostream Out(OutName);
174 MContext.mangleCXXRTTIName(QualType(ETy, 0), Out);
175 Out.flush();
  /external/clang/lib/Rewrite/
HTMLPrint.cpp 35 raw_ostream *Out;
42 : Out(OS), PP(pp), SyntaxHighlight(_SyntaxHighlight),
92 Out->write(Buffer, RewriteBuf.size());
  /external/llvm/lib/VMCore/
PrintModulePass.cpp 27 raw_ostream *Out; // raw_ostream to print on
31 PrintModulePass() : ModulePass(ID), Out(&dbgs()),
34 : ModulePass(ID), Banner(B), Out(o), DeleteStream(DS) {}
37 if (DeleteStream) delete Out;
41 (*Out) << Banner << M;
52 raw_ostream *Out; // raw_ostream to print on
56 PrintFunctionPass() : FunctionPass(ID), Banner(""), Out(&dbgs()),
59 : FunctionPass(ID), Banner(B), Out(o), DeleteStream(DS) {}
62 if (DeleteStream) delete Out;
69 (*Out) << Banner << static_cast<Value&>(F)
    [all...]
  /external/clang/lib/AST/
InheritViz.cpp 28 /// InheritanceHierarchyWriter - Helper class that writes out a
36 raw_ostream &Out;
41 InheritanceHierarchyWriter(ASTContext& Context, raw_ostream& Out)
42 : Context(Context), Out(Out) { }
45 Out << "digraph \"" << DOT::EscapeString(Type.getAsString()) << "\" {\n";
47 Out << "}\n";
51 /// WriteNode - Write out the description of node in the inheritance
55 /// WriteNodeReference - Write out a reference to the given node,
74 Out << " ";
    [all...]
MicrosoftMangle.cpp 32 raw_ostream &Out;
38 : Context(C), Out(Out_) { }
83 virtual void mangleName(const NamedDecl *D, raw_ostream &Out);
162 Out << '\01'; // LLVM IR Marker for __asm("foo")
168 Out << ALA->getLabel();
173 Out << Prefix;
221 case AS_private: Out << '0'; break;
222 case AS_protected: Out << '1'; break;
223 case AS_public: Out << '2'; break;
227 Out << '3'
    [all...]
DeclPrinter.cpp 11 // AST back out to C/Objective-C/C++/Objective-C++ code.
27 raw_ostream &Out;
40 DeclPrinter(raw_ostream &Out, ASTContext &Context,
44 : Out(Out), Context(Context), Policy(Policy), Indentation(Indentation),
91 void Decl::print(raw_ostream &Out, unsigned Indentation,
93 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation);
96 void Decl::print(raw_ostream &Out, const PrintingPolicy &Policy,
98 DeclPrinter Printer(Out, getASTContext(), Policy, Indentation, PrintInstantiation);
131 raw_ostream &Out, const PrintingPolicy &Policy
    [all...]
  /external/llvm/lib/Analysis/
DbgInfoPrinter.cpp 40 raw_ostream &Out;
44 PrintDbgInfo() : FunctionPass(ID), Out(errs()) {
179 Out << "; ";
180 WriteAsOperand(Out, V, false, 0);
182 Out << " is function " << DisplayName
185 Out << " is variable " << DisplayName
189 Out << Directory << "/";
191 Out << File << ":" << LineNo << "\n";
198 Out << "function " << F.getName() << "\n\n";
207 Out << BB->getName()
    [all...]
RegionPass.cpp 184 raw_ostream &Out; // raw_ostream to print on.
188 PrintRegionPass() : RegionPass(ID), Out(dbgs()) {}
190 : RegionPass(ID), Banner(B), Out(o) {}
197 Out << Banner;
200 (*I)->getEntry()->print(Out);
LoopPass.cpp 31 raw_ostream &Out; // raw_ostream to print on.
36 : LoopPass(ID), Banner(B), Out(o) {}
43 Out << Banner;
47 (*b)->print(Out);
  /external/llvm/lib/CodeGen/
LLVMTargetMachine.cpp 126 formatted_raw_ostream &Out,
158 MCStreamer *S = getTarget().createAsmStreamer(*Context, Out,
179 *Context, *MAB, Out,
237 raw_ostream &Out,
257 *MAB, Out, MCE,
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Arguments.h 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
53 inline Arguments0 Out()
88 template<typename T1> Arguments1<T1&> Out(T1& t1)
129 template<typename T1, typename T2> Arguments2<T1&, T2&> Out(T1& t1, T2& t2)
171 template<typename T1, typename T2, typename T3> Arguments3<T1&, T2&, T3&> Out(T1& t1, T2& t2, T3& t3)
214 template<typename T1, typename T2, typename T3, typename T4> Arguments4<T1&, T2&, T3&, T4&> Out(T1& t1, T2& t2, T3& t3, T4& t4)
258 template<typename T1, typename T2, typename T3, typename T4, typename T5> Arguments5<T1&, T2&, T3&, T4&, T5&> Out(T1& t1, T2& t2, T3& t3, T4& t4, T5& t5)
303 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6> Arguments6<T1&, T2&, T3&, T4&, T5&, T6&> Out(T1& t1, T2& t2, T3& t3, T4& t4, T5& t5, T6& t6)
349 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7> Arguments7<T1&, T2&, T3&, T4&, T5&, T6&, T7&> Out(T1& t1, T2& t2, T3& t3, T4& t4, T5& t5, T6& t6, T7& t7)
394 template<typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8> Arguments8<T1&, T2&, T3&, T4&, T5&, T6&, T7&, T8&> Out(T1& t1, T2& t2, T3& t3, T4& t4, T5& t5, T6& t6, T7& t7, T8& t8
    [all...]
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 58 SourceMgr &SM, raw_ostream &Out) {
88 Printer.printInst(&Inst, Out, "");
89 Out << "\n";
149 raw_ostream &Out) {
190 ErrorOccurred |= PrintInsts(*DisAsm, *IP, ByteArray, SM, Out);
208 raw_ostream &Out = *(raw_ostream *)((void **)Arg)[1];
211 Out << "[" << regName << "/" << R << "]";
214 Out << "(sp)";
216 Out << "(pc)";
224 raw_ostream &Out) {
    [all...]
llvm-mc.cpp 176 // Figure out the target triple.
222 tool_output_file *Out = new tool_output_file(OutputFilename.c_str(), Err,
226 delete Out;
230 return Out;
260 OwningPtr<tool_output_file> Out(GetOutputStream());
261 if (!Out)
278 Out->os() << "identifier: " << Lexer.getTok().getString();
281 Out->os() << "int: " << Lexer.getTok().getString();
284 Out->os() << "real: " << Lexer.getTok().getString();
287 Out->os() << "register: " << Lexer.getTok().getRegVal()
    [all...]
  /external/clang/lib/Frontend/
ASTConsumers.cpp 34 raw_ostream &Out;
39 : Out(o? *o : llvm::outs()), Dump(Dump) { }
44 Context.getTranslationUnitDecl()->print(Out, Policy, /*Indentation=*/0,
50 ASTConsumer *clang::CreateASTPrinter(raw_ostream* out) {
51 return new ASTPrinter(out);
99 raw_ostream& Out;
101 DeclContextPrinter() : Out(llvm::errs()) {}
116 Out << "[translation unit] " << DC;
119 Out << "[namespace] ";
121 Out << *ND
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 377 llvm::OwningPtr<raw_ostream> Out;
385 UbigraphViz(raw_ostream *out, llvm::sys::Path& dir,
430 *Out << "('vertex', " << SrcID << ", ('color','#00ff00'))\n";
441 *Out << "('vertex', " << DstID << ")\n";
446 *Out << "('change_vertex_style', " << DstID << ", 1)\n";
450 *Out << "('edge', " << SrcID << ", " << DstID
454 UbigraphViz::UbigraphViz(raw_ostream *out, llvm::sys::Path& dir,
456 : Out(out), Dir(dir), Filename(filename), Cntr(0) {
458 *Out << "('vertex_style_attribute', 0, ('shape', 'icosahedron'))\n"
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 211 // Make sure that the Out file gets unlinked from the disk if we get a
217 raw_fd_ostream *Out =
226 return new formatted_raw_ostream(*Out, formatted_raw_ostream::DELETE_STREAM);
263 formatted_raw_ostream *Out = GetOutputStream(Opts, Diags, IsBinary);
264 if (!Out)
293 Str.reset(TheTarget->createAsmStreamer(Ctx, *Out, /*asmverbose*/true,
306 Str.reset(TheTarget->createMCObjectStreamer(Opts.Triple, Ctx, *MAB, *Out,
325 delete Out;
345 // Print a stack trace if we signal out.
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 25 std::vector<unsigned char> &Out;
64 : Out(O), CurBit(0), CurValue(0), CurCodeSize(2) {}
81 std::vector<unsigned char> &getBuffer() { return Out; }
84 uint64_t GetCurrentBitNo() const { return Out.size() * 8 + CurBit; }
101 Out.push_back((unsigned char)(V >> 0));
102 Out.push_back((unsigned char)(V >> 8));
103 Out.push_back((unsigned char)(V >> 16));
104 Out.push_back((unsigned char)(V >> 24));
125 Out.push_back((unsigned char)(V >> 0));
126 Out.push_back((unsigned char)(V >> 8))
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 82 assert(N < PassVector.size() && "Pass number out of range!");
202 // entirely and the WeakVH nulled it out.
227 // If I pointed to the last element of the vector, we have to bail out:
412 // If the callgraph was left out of date (because the last pass run was a
582 raw_ostream &Out; // raw_ostream to print on.
587 : CallGraphSCCPass(ID), Banner(B), Out(o) {}
594 Out << Banner;
596 (*I)->getFunction()->print(Out);
  /external/llvm/tools/opt/
opt.cpp 150 raw_ostream &Out;
153 CallGraphSCCPassPrinter(const PassInfo *PI, raw_ostream &out) :
154 CallGraphSCCPass(ID), PassToPrint(PI), Out(out) {
161 Out << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
167 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out,
186 raw_ostream &Out;
189 ModulePassPrinter(const PassInfo *PI, raw_ostream &out)
190 : ModulePass(ID), PassToPrint(PI), Out(out) {
    [all...]
  /bionic/linker/
linker_format.c 24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
49 } Out;
52 out_send(Out *o, const void *data, size_t len)
58 out_send_repeat(Out *o, char ch, int count)
76 out_vformat(Out *o, const char *format, va_list args);
82 Out out[1]; member in struct:__anon644
112 static Out*
118 bo->out->opaque = bo;
119 bo->out->send = buf_out_send
139 Out *out; local
183 Out out[1]; member in struct:__anon645
231 Out* out; local
632 Out* out; local
658 Out* out = buf_out_init(bo, buffer, sizeof buffer); local
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 387 void ProgramState::print(raw_ostream &Out, CFG &C,
391 Mgr.getStoreManager().print(getStore(), Out, NL, Sep);
402 Out << NL << NL << "Sub-Expressions:" << NL;
405 Out << NL;
408 Out << " (" << (void*) I.getKey() << ") ";
410 I.getKey()->printPretty(Out, 0, PrintingPolicy(LO));
411 Out << " : " << I.getData();
422 Out << NL << NL << "Block-level Expressions:" << NL;
425 Out << NL;
428 Out << " (" << (void*) I.getKey() << ") "
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 234 /// IDs, since they will be written out to an EXTERNAL_DEFINITIONS
243 /// to this set, so that we can write out lexical content updates for it.
638 raw_ostream *Out;
652 StringRef isysroot, raw_ostream *Out);

Completed in 1453 milliseconds

1 2