HomeSort by relevance Sort by last modified time
    Searched refs:outs (Results 26 - 50 of 267) sorted by null

12 3 4 5 6 7 8 91011

  /external/clang/tools/diagtool/
diagtool_main.cpp 21 return tool->run(argc - 2, &argv[2], llvm::outs());
  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 127 outs() << "We just constructed this LLVM module:\n\n" << *M;
128 outs() << "\n\nRunning foo: ";
129 outs().flush();
136 outs() << "Result: " << gv.IntVal << "\n";
  /external/llvm/tools/llvm-size/
llvm-size.cpp 218 outs() << "Segment " << Seg.segname << ": "
221 outs() << " (vmaddr 0x" << format("%" PRIx64, Seg.vmaddr) << " fileoff "
223 outs() << "\n";
229 outs() << "\tSection (" << format("%.16s", &Sec.segname) << ", "
232 outs() << "\tSection " << format("%.16s", &Sec.sectname) << ": ";
233 outs() << format(fmt.str().c_str(), Sec.size);
235 outs() << " (addr 0x" << format("%" PRIx64, Sec.addr) << " offset "
237 outs() << "\n";
241 outs() << "\ttotal " << format(fmt.str().c_str(), sec_total) << "\n";
245 outs() << "Segment " << Seg.segname << ":
    [all...]
  /external/swiftshader/third_party/LLVM/examples/HowToUseJIT/
HowToUseJIT.cpp 119 outs() << "We just constructed this LLVM module:\n\n" << *M;
120 outs() << "\n\nRunning foo: ";
121 outs().flush();
128 outs() << "Result: " << gv.IntVal << "\n";
  /frameworks/compile/mclinker/lib/Script/
EntryCmd.cpp 28 mcld::outs() << "ENTRY ( " << m_Entry << " )\n";
OutputArchCmd.cpp 25 mcld::outs() << "OUTPUT_ARCH ( " << m_Arch << " )\n";
OutputCmd.cpp 27 mcld::outs() << "OUTPUT ( " << m_OutputFile << " )\n";
SearchDirCmd.cpp 28 mcld::outs() << "SEARCH_DIR ( " << m_Path << " )\n";
StringList.cpp 37 mcld::outs() << (*it)->name() << "\t";
38 mcld::outs() << "\n";
SectionsCmd.cpp 31 mcld::outs() << "SECTIONS\n{\n";
38 mcld::outs() << "\t";
47 mcld::outs() << "}\n";
GroupCmd.cpp 47 mcld::outs() << "GROUP ( ";
57 mcld::outs() << "AS_NEEDED ( ";
59 mcld::outs() << " )";
62 mcld::outs() << "-l";
63 mcld::outs() << input->name() << " ";
69 mcld::outs() << " )";
71 mcld::outs() << " )\n";
  /external/swiftshader/third_party/LLVM/tools/llvm-prof/
llvm-prof.cpp 179 outs() << "===" << std::string(73, '-') << "===\n"
181 if (PIL.getNumExecutions() != 1) outs() << "s";
182 outs() << ":\n";
185 outs() << " ";
186 if (e != 1) outs() << i+1 << ". ";
187 outs() << PIL.getExecution(i) << "\n";
190 outs() << "\n===" << std::string(73, '-') << "===\n";
191 outs() << "Function execution frequencies:\n\n";
194 outs() << " ## Frequency\n";
197 outs() << "\n NOTE: " << e-i << " function"
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-size/
llvm-size.cpp 74 outs() << ToolName << ": error reading file: " << ec.message() << ".\n";
75 outs().flush();
145 outs() << format(fmt.str().c_str(),
171 outs() << format(fmt.str().c_str(),
181 outs() << format(fmt.str().c_str(),
221 outs() << format(fmt.str().c_str(),
228 outs() << format(fmt.str().c_str(),
264 outs() << o->getFileName() << " (ex " << a->getFileName()
268 outs() << o->getFileName() << " (ex " << a->getFileName() << ")\n";
273 outs() << o->getFileName() << " :\n"
    [all...]
  /external/llvm/tools/llvm-cxxdump/
llvm-cxxdump.cpp 48 outs() << "\nError reading file: " << EC.message() << ".\n";
49 outs().flush();
55 logAllUnhandledErrors(std::move(Err), outs(), "Error reading file: ");
56 outs().flush();
340 outs() << VFTableName << '[' << Offset << "]: " << SymName << '\n';
346 outs() << VBTableName << '[' << Idx << "]: " << Offset << '\n';
353 outs() << COLName << "[IsImageRelative]: " << COL.Data[0] << '\n';
354 outs() << COLName << "[OffsetToTop]: " << COL.Data[1] << '\n';
355 outs() << COLName << "[VFPtrOffset]: " << COL.Data[2] << '\n';
356 outs() << COLName << "[TypeDescriptor]: " << COL.Symbols[0] << '\n'
    [all...]
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 357 outs() << Str << ' ';
359 outs() << Str << ' ';
361 outs() << Str << ' ';
363 outs() << Str << ' ';
365 outs() << Str << ' ';
366 outs() << I->Name << "\n";
375 outs() << SymbolAddrStr << ' ';
381 outs() << "(common) ";
383 outs() << "(alignment 2^" << (int)MachO::GET_COMM_ALIGN(NDesc) << ") ";
386 outs() << "(prebound "
    [all...]
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 67 outs() << "Checking to see if '" << getPassesString(Suffix)
86 outs() << " nope.\n";
94 outs() << " yup.\n"; // No miscompilation!
100 outs() << "Checking to see if '" << getPassesString(Prefix)
123 outs() << " nope.\n";
127 outs() << " yup.\n"; // No miscompilation!
145 outs() << "Checking to see if '" << getPassesString(Suffix)
166 outs() << " nope.\n";
171 outs() << " yup.\n"; // No miscompilation!
243 outs() << "Checking to see if the program is misoptimized when
    [all...]
OptimizerDriver.cpp 103 outs() << "Emitted bitcode to '" << Filename << "'\n";
105 outs() << "\n*** You can reproduce the problem with: ";
106 if (UseValgrind) outs() << "valgrind ";
107 outs() << "opt " << Filename;
109 outs() << " -load " << PluginLoader::getPlugin(i);
111 outs() << " " << getPassesString(PassesToRun) << "\n";
126 /// outs() a single line message indicating whether compilation was successful
135 outs().flush();
250 outs() << "Success!\n";
252 outs() << "Exited with error code '" << result << "'\n"
    [all...]
  /external/llvm/tools/obj2yaml/
obj2yaml.cpp 24 return coff2yaml(outs(), cast<COFFObjectFile>(Obj));
26 return elf2yaml(outs(), Obj);
40 return macho2yaml(outs(), Binary);
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
Miscompilation.cpp 66 outs() << "Checking to see if '" << getPassesString(Suffix)
85 outs() << " nope.\n";
93 outs() << " yup.\n"; // No miscompilation!
99 outs() << "Checking to see if '" << getPassesString(Prefix)
122 outs() << " nope.\n";
126 outs() << " yup.\n"; // No miscompilation!
144 outs() << "Checking to see if '" << getPassesString(Suffix)
164 outs() << " nope.\n";
169 outs() << " yup.\n"; // No miscompilation!
250 outs() << "Checking to see if the program is misoptimized when "
    [all...]
OptimizerDriver.cpp 84 outs() << "Emitted bitcode to '" << Filename << "'\n";
86 outs() << "\n*** You can reproduce the problem with: ";
87 if (UseValgrind) outs() << "valgrind ";
88 outs() << "opt " << Filename << " ";
89 outs() << getPassesString(PassesToRun) << "\n";
104 /// outs() a single line message indicating whether compilation was successful
113 outs().flush();
219 outs() << "Success!\n";
221 outs() << "Exited with error code '" << result << "'\n";
224 outs() << "Execute failed: " << ErrMsg << "\n";
    [all...]
  /external/v8/tools/clang/value_cleanup/
ValueCleanup.cpp 56 llvm::outs() << "==== BEGIN EDITS ====\n";
60 llvm::outs() << "r:::" << r.getFilePath() << ":::" << r.getOffset()
63 llvm::outs() << "==== END EDITS ====\n";
  /external/clang/tools/clang-format/
ClangFormat.cpp 207 outs() << Text.substr(From, Index - From);
210 outs() << "&#10;";
213 outs() << "&#13;";
216 outs() << "&lt;";
219 outs() << "&amp;";
226 outs() << Text.substr(From);
231 outs() << "<replacement "
235 outs() << "</replacement>\n";
273 outs() << "<?xml version='1.0'?>\n<replacements "
277 outs() << "<cursor>
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
GCOV.cpp 155 outs() << "===== " << Name << " @ " << Filename << ":" << LineNumber << "\n";
195 outs() << "Block : " << Number << " Counter : " << Counter << "\n";
197 outs() << "\tEdges : ";
200 outs() << (*I) << ",";
201 outs() << "\n";
204 outs() << "\tLines : ";
207 outs() << LI->first() << " -> ";
209 outs() << "\n";
230 outs() << (*I) << ",";
259 outs() << Filename << "\n"
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuScriptGroup.cpp 92 if (sl->outs[ct]) {
94 (uint8_t *)sl->outs[ct]->mHal.drvState.lod[0].mallocPtr;
96 ostep = sl->outs[ct]->mHal.state.elementSizeBytes;
101 sl->outs[ct]->mHal.drvState.lod[0].stride * kinfo->current.y;
103 } else if (sl->outs[ct]->mHal.drvState.lod[0].dimY > kinfo->lid) {
106 sl->outs[ct]->mHal.drvState.lod[0].stride * kinfo->lid;
127 std::vector<Allocation *> outs; local
197 outs.push_back(aout);
224 bool launchOK = si->forEachMtlsSetup(ains, inLen, outs[ct], nullptr, 0, nullptr, &mtls);
227 si->preLaunch(slot, ains, inLen, outs[ct], mtls.fep.usr
    [all...]
  /frameworks/ml/nn/tools/test_generator/
test_generator.py 108 i.outs.append(self)
112 def __init__(self, outs = []):
113 self.outs = outs.copy()
114 for o in outs:
384 def __init__(self, optype, ins, outs):
386 Definitions.__init__(self, outs)
399 outputs = Operand.print_operands(self.outs);
425 outs = []
426 op = Operation(op_name, ins, outs)
    [all...]

Completed in 1488 milliseconds

12 3 4 5 6 7 8 91011