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

1 2 3 4 5 6

  /external/swiftshader/third_party/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) {
  /external/libcxx/test/std/re/re.alg/re.alg.replace/
test1.pass.cpp 15 // regex_replace(OutputIterator out,
33 typedef output_iterator<char*> Out;
36 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
45 typedef output_iterator<char*> Out;
48 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
58 typedef output_iterator<char*> Out;
61 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book))
    [all...]
test2.pass.cpp 15 // regex_replace(OutputIterator out,
33 typedef output_iterator<char*> Out;
36 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
45 typedef output_iterator<char*> Out;
48 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
58 typedef output_iterator<char*> Out;
61 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/llvm/tools/llvm-pdbdump/
YAMLOutputStyle.h 38 llvm::yaml::Output Out;
  /external/llvm/tools/opt/
BreakpointPrinter.cpp 26 raw_ostream &Out;
29 BreakpointPrinter(raw_ostream &out) : ModulePass(ID), Out(out) {}
56 Out << Name << "\n";
70 ModulePass *llvm::createBreakpointPrinter(raw_ostream &out) {
71 return new BreakpointPrinter(out);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
YAMLOutputStyle.h 42 llvm::yaml::Output Out;
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/opt/
BreakpointPrinter.cpp 26 raw_ostream &Out;
29 BreakpointPrinter(raw_ostream &out) : ModulePass(ID), Out(out) {}
56 Out << Name << "\n";
70 ModulePass *llvm::createBreakpointPrinter(raw_ostream &out) {
71 return new BreakpointPrinter(out);
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/
PciRootBridgeIo.c 38 OUT PTR Out
55 for (;Count > 0; Count--, In.Buffer += InStride, Out.Buffer += OutStride) {
56 *In.Ui8 = *Out.Ui8;
60 for (;Count > 0; Count--, In.Buffer += InStride, Out.Buffer += OutStride) {
61 *In.Ui16 = *Out.Ui16;
65 for (;Count > 0; Count--, In.Buffer += InStride, Out.Buffer += OutStride) {
66 *In.Ui32 = *Out.Ui32;
83 IN OUT VOID *UserBuffer
111 IN OUT VOID *Buffer
    [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 \"" << llvm::DOT::EscapeString(Type.getAsString())
48 Out << "}\n";
52 /// WriteNode - Write out the description of node in the inheritance
56 /// WriteNodeReference - Write out a reference to the given node,
76 Out << " ";
    [all...]
  /external/clang/lib/Frontend/Rewrite/
HTMLPrint.cpp 35 raw_ostream *Out;
42 : Out(OS), PP(pp), SyntaxHighlight(_SyntaxHighlight),
93 Out->write(Buffer, RewriteBuf.size());
  /external/google-benchmark/src/
csv_reporter.cc 46 std::ostream& Out = GetOutputStream();
60 Out << *B++;
61 if (B != elements.end()) Out << ",";
65 Out << ",\"" << *B++ << "\"";
67 Out << "\n";
91 std::ostream& Out = GetOutputStream();
97 Out << '"' << name << "\",";
99 Out << std::string(elements.size() - 3, ',');
100 Out << "true,";
103 Out << '"' << msg << "\"\n"
    [all...]
reporter.cc 34 void BenchmarkReporter::PrintBasicContext(std::ostream *out,
36 CHECK(out) << "cannot be null";
37 auto &Out = *out;
39 Out << LocalDateTimeString() << "\n";
42 Out << "Running " << context.executable_name << "\n";
45 Out << "Run on (" << info.num_cpus << " X "
49 Out << "CPU Caches:\n";
51 Out << " L" << CInfo.level << " " << CInfo.type << " "
54 Out << " (x" << (info.num_cpus / CInfo.num_sharing) << ")"
    [all...]
  /external/libcxx/utils/google-benchmark/src/
csv_reporter.cc 46 std::ostream& Out = GetOutputStream();
60 Out << *B++;
61 if (B != elements.end()) Out << ",";
65 Out << ",\"" << *B++ << "\"";
67 Out << "\n";
91 std::ostream& Out = GetOutputStream();
97 Out << '"' << name << "\",";
99 Out << std::string(elements.size() - 3, ',');
100 Out << "true,";
103 Out << '"' << msg << "\"\n"
    [all...]
reporter.cc 34 void BenchmarkReporter::PrintBasicContext(std::ostream *out,
36 CHECK(out) << "cannot be null";
37 auto &Out = *out;
39 Out << LocalDateTimeString() << "\n";
42 Out << "Running " << context.executable_name << "\n";
45 Out << "Run on (" << info.num_cpus << " X "
49 Out << "CPU Caches:\n";
51 Out << " L" << CInfo.level << " " << CInfo.type << " "
54 Out << " (x" << (info.num_cpus / CInfo.num_sharing) << ")"
    [all...]
  /external/llvm/lib/IR/
IRPrintingPasses.cpp 97 raw_ostream &Out;
102 PrintBasicBlockPass() : BasicBlockPass(ID), Out(dbgs()) {}
103 PrintBasicBlockPass(raw_ostream &Out, const std::string &Banner)
104 : BasicBlockPass(ID), Out(Out), Banner(Banner) {}
107 Out << Banner << BB;
  /external/llvm/tools/llvm-dwp/
DWPStringPool.h 33 MCStreamer &Out;
39 DWPStringPool(MCStreamer &Out, MCSection *Sec) : Out(Out), Sec(Sec) {}
46 Out.SwitchSection(Sec);
47 Out.EmitBytes(StringRef(Str, Length));
  /external/swiftshader/third_party/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Testing/Support/
SupportHelpers.h 32 inline void PrintTo(const ErrorHolder &Err, std::ostream *Out) {
33 raw_os_ostream OS(*Out);
47 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
49 *Out << "succeeded with value " << ::testing::PrintToString(*Item.Exp);
51 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dwp/
DWPStringPool.h 33 MCStreamer &Out;
39 DWPStringPool(MCStreamer &Out, MCSection *Sec) : Out(Out), Sec(Sec) {}
46 Out.SwitchSection(Sec);
47 Out.EmitBytes(StringRef(Str, Length));
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
llvm-mca.cpp 217 // we reached the end of the comment. Bail out.
258 auto Out =
261 return std::move(Out);
404 WithColor::error() << "please specify an out-of-order cpu. '" << MCPU
511 // Create a basic pipeline simulating an out-of-order backend.
  /external/swiftshader/third_party/subzero/src/
IceELFStreamer.h 93 explicit ELFFileStreamer(Fdstream &Out) : Out(Out) {}
95 void write8(uint8_t Value) override { Out << char(Value); }
97 void writeBytes(llvm::StringRef Bytes) override { Out << Bytes; }
99 uint64_t tell() const override { return Out.tell(); }
101 void seek(uint64_t Off) override { Out.seek(Off); }
104 Fdstream &Out;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
bgenOutput.py 144 def Out(text):
153 Out('''
193 Out("""
  /external/guava/guava-tests/test/com/google/common/io/
TestByteSink.java 60 return new Out();
63 private final class Out extends TestOutputStream {
65 public Out() throws IOException {
  /external/llvm/lib/Analysis/
RegionPass.cpp 189 raw_ostream &Out; // raw_ostream to print on.
194 : RegionPass(ID), Banner(B), Out(o) {}
201 Out << Banner;
204 BB->print(Out);
206 Out << "Printing <null> Block";

Completed in 1329 milliseconds

1 2 3 4 5 6