Searched refs:Print (Results 51 - 75 of 180) sorted by relevance

12345678

/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_descriptions.cc62 StackDepotGet(context->stack_id).Print();
90 descr.Print();
190 descr.Print();
273 descr.Print();
318 descr.Print(bug_type);
322 void ShadowAddressDescription::Print() const { function in class:__asan::ShadowAddressDescription
326 void GlobalAddressDescription::Print(const char *bug_type) const { function in class:__asan::GlobalAddressDescription
333 StackDepotGet(reg_sites[i]).Print();
358 void StackAddressDescription::Print() const { function in class:__asan::StackAddressDescription
379 alloca_stack.Print();
[all...]
H A Dasan_stats.h49 void Print(); // Prints formatted stats to stderr.
H A Dasan_stack.h105 stack.Print(); \
111 stack.Print(); \
H A Dasan_activation.cc80 void Print() { function in struct:__asan::AsanDeactivatedFlags
140 asan_deactivated_flags.Print();
H A Dasan_stats.cc43 void AsanStats::Print() { function in class:__asan::AsanStats
127 stats.Print();
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_descriptions.cc60 StackDepotGet(context->stack_id).Print();
88 descr.Print();
188 descr.Print();
271 descr.Print();
316 descr.Print(bug_type);
320 void ShadowAddressDescription::Print() const { function in class:__asan::ShadowAddressDescription
324 void GlobalAddressDescription::Print(const char *bug_type) const { function in class:__asan::GlobalAddressDescription
331 StackDepotGet(reg_sites[i]).Print();
356 void StackAddressDescription::Print() const { function in class:__asan::StackAddressDescription
377 alloca_stack.Print();
[all...]
H A Dasan_stats.h47 void Print(); // Prints formatted stats to stderr.
H A Dasan_stack.h107 stack.Print(); \
113 stack.Print(); \
H A Dasan_activation.cc78 void Print() { function in struct:__asan::AsanDeactivatedFlags
138 asan_deactivated_flags.Print();
H A Dasan_stats.cc41 void AsanStats::Print() { function in class:__asan::AsanStats
125 stats.Print();
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/hwasan/
H A Dhwasan_malloc_bisect.h45 stack->Print();
H A Dhwasan_thread.h68 Print("Thread: ");
77 void Print(const char *prefix);
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_stack.h68 stack.Print(); \
H A Dasan_stats.h48 void Print(); // Prints formatted stats to stderr.
H A Dasan_activation.cpp79 void Print() { function in struct:__asan::AsanDeactivatedFlags
139 asan_deactivated_flags.Print();
/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/
H A DCreateInvocationFromCommandLine.cpp55 C->getJobs().Print(llvm::errs(), "\n", true);
81 Jobs.Print(OS, "; ", true);
H A DASTConsumers.cpp36 enum Kind { DumpFull, Dump, Print, None }; enumerator in enum:__anon613::ASTPrinter::Kind
60 Out << (OutputKind != Print ? "Dumping " : "Printing ") << getName(D)
91 } else if (OutputKind == Print) {
126 /// incompatible with OutputKind == Print.
159 return std::make_unique<ASTPrinter>(std::move(Out), ASTPrinter::Print,
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/msan/
H A Dmsan_report.cc56 StackTrace(&pc, 1).Print();
69 stack.Print();
95 stack.Print();
108 stack->Print();
119 stack->Print();
218 // Print shadow byte.
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DRDFGraph.h924 struct Print { struct
925 Print(const T &x, const DataFlowGraph &g) : Obj(x), G(g) {} function in struct:Print
932 struct PrintNode : Print<NodeAddr<T>> {
934 : Print<NodeAddr<T>>(x, g) {}
937 raw_ostream &operator<<(raw_ostream &OS, const Print<RegisterRef> &P);
938 raw_ostream &operator<<(raw_ostream &OS, const Print<NodeId> &P);
939 raw_ostream &operator<<(raw_ostream &OS, const Print<NodeAddr<DefNode *>> &P);
940 raw_ostream &operator<<(raw_ostream &OS, const Print<NodeAddr<UseNode *>> &P);
942 const Print<NodeAddr<PhiUseNode *>> &P);
943 raw_ostream &operator<<(raw_ostream &OS, const Print<NodeAdd
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DRDFLiveness.cpp63 raw_ostream &operator<< (raw_ostream &OS, const Print<Liveness::RefMap> &P) {
68 OS << Print<NodeId>(J->first, P.G) << PrintLaneMaskOpt(J->second);
624 dbgs() << "phi " << Print<NodeId>(I.first, DFG) << " -> {";
626 dbgs() << ' ' << Print<NodeId>(R.first, DFG)
627 << Print<RegisterAggr>(R.second, DFG);
725 dbgs() << "phi " << Print<NodeId>(I.first, DFG);
730 dbgs() << '<' << Print<RegisterRef>(RR, DFG) << '>';
734 dbgs() << " -> " << Print<RefMap>(I.second, DFG) << '\n';
793 << Print<RefMap>(I.second, DFG) << '\n';
856 << Print<RefMa
[all...]
H A DRDFGraph.cpp57 raw_ostream &operator<< (raw_ostream &OS, const Print<RegisterRef> &P) {
67 raw_ostream &operator<< (raw_ostream &OS, const Print<NodeId> &P) {
110 OS << Print<NodeId>(RA.Id, G) << '<'
111 << Print<RegisterRef>(RA.Addr->getRegRef(G), G) << '>';
116 raw_ostream &operator<< (raw_ostream &OS, const Print<NodeAddr<DefNode*>> &P) {
120 OS << Print<NodeId>(N, P.G);
123 OS << Print<NodeId>(N, P.G);
126 OS << Print<NodeId>(N, P.G);
129 OS << Print<NodeId>(N, P.G);
133 raw_ostream &operator<< (raw_ostream &OS, const Print<NodeAdd
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Driver/
H A DJob.h174 virtual void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote,
235 void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote,
254 void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote,
273 void Print(llvm::raw_ostream &OS, const char *Terminator,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DRDFCopy.cpp110 dbgs() << ' ' << Print<RegisterRef>(J.first, DFG) << '='
111 << Print<RegisterRef>(J.second, DFG);
174 dbgs() << "Can replace " << Print<RegisterRef>(DR, DFG)
175 << " with " << Print<RegisterRef>(SR, DFG) << " in "
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/aarch64/
H A Darmv8_4-a.s0 # Print a 4 operand instruction
44 # Print a 3 operand instruction
57 # Print a 2 operand instruction
70 # Print a 1 operand instruction
/netbsd-current/external/apache2/llvm/dist/clang/lib/Driver/
H A DJob.cpp201 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, function in class:Command
369 void CC1Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, function in class:CC1Command
373 Command::Print(OS, Terminator, Quote, CrashInfo);
425 void ForceSuccessCommand::Print(raw_ostream &OS, const char *Terminator, function in class:ForceSuccessCommand
427 Command::Print(OS, "", Quote, CrashInfo);
441 void JobList::Print(raw_ostream &OS, const char *Terminator, bool Quote, function in class:JobList
444 Job.Print(OS, Terminator, Quote, CrashInfo);

Completed in 144 milliseconds

12345678