HomeSort by relevance Sort by last modified time
    Searched defs:Out (Results 1 - 25 of 47) 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/av/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];
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.alg/re.alg.replace/
test1.pass.cpp 15 // regex_replace(OutputIterator out,
32 typedef output_iterator<char*> Out;
35 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
44 typedef output_iterator<char*> Out;
47 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
57 typedef output_iterator<char*> Out;
60 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book))
    [all...]
test2.pass.cpp 15 // regex_replace(OutputIterator out,
32 typedef output_iterator<char*> Out;
35 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
44 typedef output_iterator<char*> Out;
47 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
57 typedef output_iterator<char*> Out;
60 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book))
    [all...]
  /external/clang/include/clang/Basic/
MacroBuilder.h 25 raw_ostream &Out;
27 MacroBuilder(raw_ostream &Output) : Out(Output) {}
31 Out << "#define " << Name << ' ' << Value << '\n';
37 Out << "#undef " << Name << '\n';
42 Out << Str << '\n';
  /external/clang/lib/Rewrite/Frontend/
HTMLPrint.cpp 35 raw_ostream *Out;
42 : Out(OS), PP(pp), SyntaxHighlight(_SyntaxHighlight),
92 Out->write(Buffer, RewriteBuf.size());
  /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...]
DeclPrinter.cpp 11 // AST back out to C/Objective-C/C++/Objective-C++ code.
29 raw_ostream &Out;
41 DeclPrinter(raw_ostream &Out, const PrintingPolicy &Policy,
43 : Out(Out), Policy(Policy), Indentation(Indentation),
92 void Decl::print(raw_ostream &Out, unsigned Indentation,
94 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation);
97 void Decl::print(raw_ostream &Out, const PrintingPolicy &Policy,
99 DeclPrinter Printer(Out, Policy, Indentation, PrintInstantiation);
136 raw_ostream &Out, const PrintingPolicy &Policy
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 159 llvm::raw_svector_ostream Out(OutName);
160 MContext.mangleCXXRTTIName(QualType(ETy, 0), Out);
161 Out.flush();
  /external/llvm/lib/IR/
PrintModulePass.cpp 26 raw_ostream *Out; // raw_ostream to print on
30 PrintModulePass() : ModulePass(ID), Out(&dbgs()),
33 : ModulePass(ID), Banner(B), Out(o), DeleteStream(DS) {}
36 if (DeleteStream) delete Out;
40 (*Out) << Banner << M;
51 raw_ostream *Out; // raw_ostream to print on
55 PrintFunctionPass() : FunctionPass(ID), Banner(""), Out(&dbgs()),
58 : FunctionPass(ID), Banner(B), Out(o), DeleteStream(DS) {}
61 if (DeleteStream) delete Out;
68 (*Out) << Banner << static_cast<Value&>(F)
    [all...]
  /external/llvm/lib/Analysis/
LoopPass.cpp 29 raw_ostream &Out; // raw_ostream to print on.
34 : LoopPass(ID), Banner(B), Out(o) {}
41 Out << Banner;
45 (*b)->print(Out);
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)->print(Out);
  /external/llvm/lib/CodeGen/
LLVMTargetMachine.cpp 138 formatted_raw_ostream &Out,
150 // FIXME: The intent is that this should eventually write out a YAML file,
155 PM.add(createPrintModulePass(&Out));
184 MCStreamer *S = getTarget().createAsmStreamer(*Context, Out,
206 *Context, *MAB, Out,
258 raw_ostream &Out,
280 *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/
llvm-mc.cpp 192 // Figure out the target triple.
216 tool_output_file *Out = new tool_output_file(OutputFilename.c_str(), Err,
220 delete Out;
224 return Out;
245 static int AsLexInput(SourceMgr &SrcMgr, MCAsmInfo &MAI, tool_output_file *Out) {
264 Out->os() << "identifier: " << Lexer.getTok().getString();
267 Out->os() << "int: " << Lexer.getTok().getString();
270 Out->os() << "real: " << Lexer.getTok().getString();
273 Out->os() << "string: " << Lexer.getTok().getString();
276 case AsmToken::Amp: Out->os() << "Amp"; break
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMPLT.cpp 153 uint32_t* Out = NULL;
156 Out = static_cast<uint32_t*>(malloc(ARMPLT1::EntrySize));
158 if (!Out)
165 Out[0] = arm_plt1[0] | ((Offset >> 20) & 0xFF);
166 Out[1] = arm_plt1[1] | ((Offset >> 12) & 0xFF);
167 Out[2] = arm_plt1[2] | (Offset & 0xFFF);
169 plt1->setValue(reinterpret_cast<unsigned char*>(Out));
  /external/clang/lib/Frontend/
ASTConsumers.cpp 39 ASTPrinter(raw_ostream *Out = NULL, bool Dump = false,
41 : Out(Out ? *Out : llvm::outs()), Dump(Dump),
49 D->dump(Out);
51 D->print(Out, /*Indentation=*/0, /*PrintInstantiation=*/true);
62 bool ShowColors = Out.has_colors();
64 Out.changeColor(raw_ostream::BLUE);
65 Out << (Dump ? "Dumping " : "Printing ") << getName(D) << ":\n";
67 Out.resetColor()
    [all...]
CacheTokens.cpp 80 void EmitData(raw_ostream& Out) {
84 ::Emit32(Out, FE->getInode());
85 ::Emit32(Out, FE->getDevice());
86 ::Emit16(Out, FE->getFileMode());
87 ::Emit64(Out, FE->getModificationTime());
88 ::Emit64(Out, FE->getSize());
92 ::Emit32(Out, (uint32_t) StatBuf->st_ino);
93 ::Emit32(Out, (uint32_t) StatBuf->st_dev);
94 ::Emit16(Out, (uint16_t) StatBuf->st_mode);
95 ::Emit64(Out, (uint64_t) StatBuf->st_mtime)
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 245 // Make sure that the Out file gets unlinked from the disk if we get a
251 raw_fd_ostream *Out =
260 return new formatted_raw_ostream(*Out, formatted_raw_ostream::DELETE_STREAM);
297 formatted_raw_ostream *Out = GetOutputStream(Opts, Diags, IsBinary);
298 if (!Out)
346 Str.reset(TheTarget->createAsmStreamer(Ctx, *Out, /*asmverbose*/true,
359 Str.reset(TheTarget->createMCObjectStreamer(Opts.Triple, Ctx, *MAB, *Out,
378 delete Out;
398 // Print a stack trace if we signal out.
  /external/llvm/include/llvm/Analysis/
LoopInfoImpl.h 29 /// which branch out. The returned list is always unique.
123 BlockT *Out = getLoopPredecessor();
124 if (!Out) return 0;
126 // Make sure there is only one exit out of the preheader.
128 typename BlockTraits::ChildIteratorType SI = BlockTraits::child_begin(Out);
130 if (SI != BlockTraits::child_end(Out))
134 return Out;
145 BlockT *Out = 0;
155 if (Out && Out != N
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 26 SmallVectorImpl<char> &Out;
66 Out[ByteNo++] = (unsigned char)(NewWord >> 0);
67 Out[ByteNo++] = (unsigned char)(NewWord >> 8);
68 Out[ByteNo++] = (unsigned char)(NewWord >> 16);
69 Out[ByteNo ] = (unsigned char)(NewWord >> 24);
73 Out.push_back(Value);
82 Out.append(&Bytes[0], &Bytes[4]);
86 return Out.size();
97 : Out(O), CurBit(0), CurValue(0), CurCodeSize(2) {}
226 // Push the outer block's abbrev set onto the stack, start out with a
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 85 assert(N < PassVector.size() && "Pass number out of range!");
205 // entirely and the WeakVH nulled it out.
230 // If I pointed to the last element of the vector, we have to bail out:
417 // If the callgraph was left out of date (because the last pass run was a
587 raw_ostream &Out; // raw_ostream to print on.
592 : CallGraphSCCPass(ID), Banner(B), Out(o) {}
599 Out << Banner;
601 (*I)->getFunction()->print(Out);
  /external/llvm/tools/opt/
opt.cpp 165 raw_ostream &Out;
168 CallGraphSCCPassPrinter(const PassInfo *PI, raw_ostream &out) :
169 CallGraphSCCPass(ID), PassToPrint(PI), Out(out) {
176 Out << "Printing analysis '" << PassToPrint->getPassName() << "':\n";
182 getAnalysisID<Pass>(PassToPrint->getTypeInfo()).print(Out,
201 raw_ostream &Out;
204 ModulePassPrinter(const PassInfo *PI, raw_ostream &out)
205 : ModulePass(ID), PassToPrint(PI), Out(out) {
    [all...]
  /external/llvm/lib/Target/ARM/
A15SDOptimizer.cpp 12 // out-of-order with appropriate forwarding. The ARM architecture allows VFP
183 // MI is known to be dead. Figure out what instructions
279 // Find the thing we're subreg copying out of - is it of the same
435 unsigned Out = MRI->createVirtualRegister(QPR ? &ARM::QPRRegClass :
441 Out)
445 return Out;
455 unsigned Out = MRI->createVirtualRegister(TRC);
459 TII->get(TargetOpcode::COPY), Out)
462 return Out;
471 unsigned Out = MRI->createVirtualRegister(&ARM::QPRRegClass)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 395 void ProgramState::print(raw_ostream &Out,
399 Mgr.getStoreManager().print(getStore(), Out, NL, Sep);
401 // Print out the environment.
402 Env.print(Out, NL, Sep);
404 // Print out the constraints.
405 Mgr.getConstraintManager().print(this, Out, NL, Sep);
408 Mgr.getOwningEngine()->printState(Out, this, NL, Sep);
411 void ProgramState::printDOT(raw_ostream &Out) const {
412 print(Out, "\\l", "\\|");
419 void ProgramState::printTaint(raw_ostream &Out,
    [all...]

Completed in 795 milliseconds

1 2