Searched defs:Out (Results 1 - 25 of 69) sorted by relevance

123

/external/llvm/utils/FileUpdate/
H A DFileUpdate.cpp55 OwningPtr<MemoryBuffer> Out; local
56 MemoryBuffer::getFile(OutputFilename.c_str(), Out);
59 if (Out && In->getBufferSize() == Out->getBufferSize() &&
60 memcmp(In->getBufferStart(), Out->getBufferStart(),
61 Out->getBufferSize()) == 0) {
/external/clang/lib/Basic/
H A DVersionTuple.cpp22 llvm::raw_string_ostream Out(Result);
23 Out << *this;
28 raw_ostream& clang::operator<<(raw_ostream &Out, argument
30 Out << V.getMajor();
32 Out << '.' << *Minor;
34 Out << '.' << *Subminor;
35 return Out;
/external/clang/include/clang/Basic/
H A DMacroBuilder.h23 raw_ostream &Out; member in class:clang::MacroBuilder
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/
H A DCodeGenTBAA.cpp151 llvm::raw_svector_ostream Out(OutName);
152 MContext.mangleCXXRTTIName(QualType(ETy, 0), Out); local
153 Out.flush();
/external/clang/lib/AST/
H A DInheritViz.cpp36 raw_ostream &Out; member in class:clang::InheritanceHierarchyWriter
41 InheritanceHierarchyWriter(ASTContext& Context, raw_ostream& Out) argument
42 : Context(Context), Out(Out) { }
45 Out << "digraph \"" << DOT::EscapeString(Type.getAsString()) << "\" {\n";
47 Out << "}\n";
74 Out << " ";
79 Out << " [ shape=\"box\", label=\"" << DOT::EscapeString(TypeName);
85 Out << "\\n(" << CanonType.getAsString() << ")";
89 Out << " \"];\
[all...]
H A DMangle.cpp42 raw_ostream &Out) {
43 Out << "__" << Outer << "_block_invoke_" << Context.getBlockId(BD, true);
65 raw_ostream &Out) {
66 Out << "__block_global_" << getBlockId(BD, false);
74 llvm::raw_svector_ostream Out(Buffer);
75 mangleCXXCtor(CD, CT, Out);
76 Out.flush();
85 llvm::raw_svector_ostream Out(Buffer);
86 mangleCXXDtor(DD, DT, Out);
87 Out
39 mangleFunctionBlock(MangleContext &Context, StringRef Outer, const BlockDecl *BD, raw_ostream &Out) argument
64 mangleGlobalBlock(const BlockDecl *BD, raw_ostream &Out) argument
91 mangleBlock(const DeclContext *DC, const BlockDecl *BD, raw_ostream &Out) argument
117 mangleObjCMethodName(const ObjCMethodDecl *MD, raw_ostream &Out) argument
133 mangleBlock(const BlockDecl *BD, raw_ostream &Out) argument
[all...]
H A DTemplateBase.cpp35 /// \param Out the raw_ostream instance to use for printing.
37 raw_ostream &Out) {
42 Out << (Val->getBoolValue() ? "true" : "false");
45 Out << ((Ch == '\'') ? "'\\" : "'");
46 Out.write_escaped(StringRef(&Ch, 1), /*UseHexEscapes=*/ true);
47 Out << "'";
49 Out << Val->toString(10);
316 raw_ostream &Out) const {
319 Out << "<no value>";
327 Out << TypeSt
36 printIntegral(const TemplateArgument &TemplArg, raw_ostream &Out) argument
[all...]
/external/clang/lib/Rewrite/
H A DHTMLPrint.cpp35 raw_ostream *Out; member in class:__anon3246::HTMLPrinter
42 : Out(OS), PP(pp), SyntaxHighlight(_SyntaxHighlight),
92 Out->write(Buffer, RewriteBuf.size());
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp21 MCStreamer &Out);
41 MCStreamer &Out) {
39 MatchAndEmitInstruction(SMLoc IDLoc, SmallVectorImpl<MCParsedAsmOperand*> &Operands, MCStreamer &Out) argument
/external/webrtc/src/common_audio/signal_processing/
H A Dresample_fractional.c44 void WebRtcSpl_Resample48khzTo32khz(const WebRtc_Word32 *In, WebRtc_Word32 *Out, argument
66 Out[0] = tmp;
77 Out[1] = tmp;
81 Out += 2;
90 void WebRtcSpl_Resample32khzTo24khz(const WebRtc_Word32 *In, WebRtc_Word32 *Out, argument
112 Out[0] = tmp;
123 Out[1] = tmp;
134 Out[2] = tmp;
138 Out += 3;
199 void WebRtcSpl_Resample44khzTo32khz(const WebRtc_Word32 *In, WebRtc_Word32 *Out, argument
[all...]
H A Dresample.c22 static void WebRtcSpl_32khzTo22khzIntToShort(const WebRtc_Word32 *In, WebRtc_Word16 *Out,
25 void WebRtcSpl_32khzTo22khzIntToInt(const WebRtc_Word32 *In, WebRtc_Word32 *Out,
423 WebRtc_Word32* Out,
436 Out[0] = ((WebRtc_Word32)In[3] << 15) + (1 << 14);
439 WebRtcSpl_DotProdIntToInt(&In[0], &In[22], kCoefficients32To22[0], &Out[1], &Out[10]);
442 WebRtcSpl_DotProdIntToInt(&In[2], &In[20], kCoefficients32To22[1], &Out[2], &Out[9]);
445 WebRtcSpl_DotProdIntToInt(&In[3], &In[19], kCoefficients32To22[2], &Out[3], &Out[
422 WebRtcSpl_32khzTo22khzIntToInt(const WebRtc_Word32* In, WebRtc_Word32* Out, const WebRtc_Word32 K) argument
464 WebRtcSpl_32khzTo22khzIntToShort(const WebRtc_Word32 *In, WebRtc_Word16 *Out, const WebRtc_Word32 K) argument
[all...]
/external/llvm/lib/VMCore/
H A DPrintModulePass.cpp27 raw_ostream *Out; // raw_ostream to print on member in class:__anon7854::PrintModulePass
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 member in class:__anon7854::PrintFunctionPass
56 PrintFunctionPass() : FunctionPass(ID), Banner(""), Out(&dbgs()),
59 : FunctionPass(ID), Banner(B), Out(o), DeleteStream(DS) {}
62 if (DeleteStream) delete Out;
69 (*Out) << Banne
[all...]
/external/llvm/include/llvm/Support/
H A DOutputBuffer.h31 OutputBuffer(std::vector<unsigned char> &Out, argument
33 : Output(Out), is64Bit(is64bit), isLittleEndian(le) {}
50 // Out Functions - Output the specified value to the data buffer.
/external/llvm/lib/Analysis/
H A DDbgInfoPrinter.cpp40 raw_ostream &Out; member in class:__anon7280::PrintDbgInfo
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 << B
[all...]
H A DLoopPass.cpp29 raw_ostream &Out; // raw_ostream to print on. member in class:__anon7296::PrintLoopPass
34 : LoopPass(ID), Banner(B), Out(o) {}
41 Out << Banner;
45 (*b)->print(Out);
H A DRegionPass.cpp184 raw_ostream &Out; // raw_ostream to print on. member in class:__anon7307::PrintRegionPass
188 PrintRegionPass() : RegionPass(ID), Out(dbgs()) {}
190 : RegionPass(ID), Banner(B), Out(o) {}
197 Out << Banner;
200 (*I)->getEntry()->print(Out);
/external/llvm/lib/CodeGen/
H A DLLVMTargetMachine.cpp156 formatted_raw_ostream &Out,
187 MCStreamer *S = getTarget().createAsmStreamer(*Context, Out,
208 *Context, *MAB, Out, local
262 raw_ostream &Out,
283 *MAB, Out, MCE, local
155 addPassesToEmitFile(PassManagerBase &PM, formatted_raw_ostream &Out, CodeGenFileType FileType, bool DisableVerify) argument
260 addPassesToEmitMC(PassManagerBase &PM, MCContext *&Ctx, raw_ostream &Out, bool DisableVerify) argument
/external/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp224 tool_output_file *Out = new tool_output_file(OutputFilename.c_str(), Err, local
228 delete Out;
232 return Out;
246 static int AsLexInput(SourceMgr &SrcMgr, MCAsmInfo &MAI, tool_output_file *Out) { argument
265 Out->os() << "identifier: " << Lexer.getTok().getString();
268 Out->os() << "int: " << Lexer.getTok().getString();
271 Out->os() << "real: " << Lexer.getTok().getString();
274 Out->os() << "register: " << Lexer.getTok().getRegVal();
277 Out->os() << "string: " << Lexer.getTok().getString();
280 case AsmToken::Amp: Out
[all...]
H A DDisassembler.cpp57 SourceMgr &SM, raw_ostream &Out,
149 raw_ostream &Out) {
168 ErrorOccurred |= PrintInsts(*DisAsm, ByteArray, SM, Out, Streamer);
186 raw_ostream &Out = *(raw_ostream *)((void **)Arg)[1]; local
189 Out << "[" << regName << "/" << R << "]";
192 Out << "(sp)";
194 Out << "(pc)";
203 raw_ostream &Out) {
267 Out << '[';
271 Out << operandInde
55 PrintInsts(const MCDisassembler &DisAsm, const ByteArrayTy &Bytes, SourceMgr &SM, raw_ostream &Out, MCStreamer &Streamer) argument
143 disassemble(const Target &T, const std::string &Triple, MCSubtargetInfo &STI, MCStreamer &Streamer, MemoryBuffer &Buffer, SourceMgr &SM, raw_ostream &Out) argument
200 disassembleEnhanced(const std::string &TS, MemoryBuffer &Buffer, SourceMgr &SM, raw_ostream &Out) argument
[all...]
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DArguments.h53 inline Arguments0 Out() function in namespace:CoreIPC
88 template<typename T1> Arguments1<T1&> Out(T1& t1) function in namespace:CoreIPC
129 template<typename T1, typename T2> Arguments2<T1&, T2&> Out(T1& t1, T2& t2) function in namespace:CoreIPC
171 template<typename T1, typename T2, typename T3> Arguments3<T1&, T2&, T3&> Out(T1& t1, T2& t2, T3& t3) function in namespace:CoreIPC
214 template<typename T1, typename T2, typename T3, typename T4> Arguments4<T1&, T2&, T3&, T4&> Out(T1& t1, T2& t2, T3& t3, T4& t4) function in namespace:CoreIPC
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) function in namespace:CoreIPC
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) function in namespace:CoreIPC
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) function in namespace:CoreIPC
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) function in namespace:CoreIPC
/external/clang/lib/Frontend/
H A DASTConsumers.cpp34 raw_ostream &Out; member in class:__anon3195::ASTPrinter
39 : Out(o? *o : llvm::outs()), Dump(Dump) { }
44 Context.getTranslationUnitDecl()->print(Out, Policy, /*Indentation=*/0,
100 raw_ostream& Out; member in class:__anon3197::DeclContextPrinter
102 DeclContextPrinter() : Out(llvm::errs()) {}
117 Out << "[translation unit] " << DC;
120 Out << "[namespace] ";
122 Out << *ND;
128 Out << "[enum] ";
130 Out << "<enu
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DBasicConstraintManager.cpp112 raw_ostream &Out,
333 raw_ostream &Out,
340 Out << nl << sep << "'==' constraints:";
342 Out << nl << " $" << I.getKey() << " : " << *I.getData();
350 Out << nl << sep << "'!=' constraints:";
353 Out << nl << " $" << I.getKey() << " : ";
361 else Out << ", ";
363 Out << (*J)->getSExtValue(); // Hack: should print to raw_ostream.
332 print(ProgramStateRef state, raw_ostream &Out, const char* nl, const char *sep) argument
H A DEnvironment.cpp253 void Environment::print(raw_ostream &Out, const char *NL, argument
255 printAux(Out, false, NL, Sep);
256 printAux(Out, true, NL, Sep);
259 void Environment::printAux(raw_ostream &Out, bool printLocations, argument
277 Out << NL << NL
282 Out << NL;
290 Out << " (" << (void*) En.getLocationContext() << ',' << (void*) S << ") ";
292 S->printPretty(Out, 0, PrintingPolicy(LO));
293 Out << " : " << I.getData();
/external/clang/tools/driver/
H A Dcc1as_main.cpp239 // Make sure that the Out file gets unlinked from the disk if we get a
245 raw_fd_ostream *Out = local
254 return new formatted_raw_ostream(*Out, formatted_raw_ostream::DELETE_STREAM);
291 formatted_raw_ostream *Out = GetOutputStream(Opts, Diags, IsBinary); local
292 if (!Out)
334 Str.reset(TheTarget->createAsmStreamer(Ctx, *Out, /*asmverbose*/true,
347 Str.reset(TheTarget->createMCObjectStreamer(Opts.Triple, Ctx, *MAB, *Out,
366 delete Out;
/external/llvm/lib/Analysis/IPA/
H A DCallGraphSCCPass.cpp582 raw_ostream &Out; // raw_ostream to print on. member in class:__anon7285::CGPassManager::__anon7286::PrintCallGraphPass
587 : CallGraphSCCPass(ID), Banner(B), Out(o) {}
594 Out << Banner;
596 (*I)->getFunction()->print(Out);

Completed in 428 milliseconds

123