Home
last modified time | relevance | path

Searched refs:errs (Results 1 – 25 of 335) sorted by relevance

12345678910>>...14

/external/clang/lib/Serialization/
DModule.cpp61 llvm::errs() << " " << Name << ":\n"; in dumpLocalRemap()
64 llvm::errs() << " " << I->first << " -> " << I->second << "\n"; in dumpLocalRemap()
69 llvm::errs() << "\nModule: " << FileName << "\n"; in dump()
71 llvm::errs() << " Imports: "; in dump()
74 llvm::errs() << ", "; in dump()
75 llvm::errs() << Imports[I]->FileName; in dump()
77 llvm::errs() << "\n"; in dump()
81 llvm::errs() << " Base source location offset: " << SLocEntryBaseOffset in dump()
85 llvm::errs() << " Base identifier ID: " << BaseIdentifierID << '\n' in dump()
89 llvm::errs() << " Base macro ID: " << BaseMacroID << '\n' in dump()
[all …]
/external/llvm/tools/llvm-link/
Dllvm-link.cpp114 if (Verbose) errs() << "Loading '" << FN << "'\n"; in loadFile()
118 Err.print(argv0, errs()); in loadFile()
132 errs() << "ERROR: "; in diagnosticHandler()
137 errs() << "WARNING: "; in diagnosticHandler()
144 DiagnosticPrinterRawOStream DP(errs()); in diagnosticHandler()
146 errs() << '\n'; in diagnosticHandler()
162 errs() << "Import parameter bad format: " << Import << "\n"; in importFunctions()
171 errs() << argv0 << ": error loading file '" << FileName << "'\n"; in importFunctions()
175 if (verifyModule(*M, &errs())) { in importFunctions()
176 errs() << argv0 << ": " << FileName in importFunctions()
[all …]
/external/llvm/lib/Support/
DDAGDeltaAlgorithm.cpp228 llvm::errs() << "-- DAGDeltaAlgorithmImpl --\n"; in DAGDeltaAlgorithmImpl()
229 llvm::errs() << "Changes: ["; in DAGDeltaAlgorithmImpl()
232 if (it != Changes.begin()) llvm::errs() << ", "; in DAGDeltaAlgorithmImpl()
233 llvm::errs() << *it; in DAGDeltaAlgorithmImpl()
236 llvm::errs() << "("; in DAGDeltaAlgorithmImpl()
239 if (it2 != succ_begin(*it)) llvm::errs() << ", "; in DAGDeltaAlgorithmImpl()
240 llvm::errs() << "->" << *it2; in DAGDeltaAlgorithmImpl()
242 llvm::errs() << ")"; in DAGDeltaAlgorithmImpl()
245 llvm::errs() << "]\n"; in DAGDeltaAlgorithmImpl()
247 llvm::errs() << "Roots: ["; in DAGDeltaAlgorithmImpl()
[all …]
DGraphWriter.cpp72 errs() << "Error: " << EC.message() << "\n"; in createGraphFilename()
76 errs() << "Writing '" << Filename << "'... "; in createGraphFilename()
88 errs() << "Error: " << ErrMsg << "\n"; in ExecGraphViewer()
92 errs() << " done. \n"; in ExecGraphViewer()
95 errs() << "Remember to erase graph file: " << Filename << "\n"; in ExecGraphViewer()
151 errs() << "Trying 'open' program... "; in DisplayGraph()
161 errs() << "Trying 'xdg-open' program... "; in DisplayGraph()
173 errs() << "Running 'Graphviz' program... "; in DisplayGraph()
188 errs() << "Running 'xdot.py' program... "; in DisplayGraph()
235 errs() << "Running '" << GeneratorPath << "' program... "; in DisplayGraph()
[all …]
/external/clang/tools/libclang/
DARCMigrate.cpp39 llvm::errs() << "error: feature not enabled in this build\n"; in clang_getRemappings()
46 llvm::errs() << "clang_getRemappings was called with NULL parameter\n"; in clang_getRemappings()
52 llvm::errs() << "Error by clang_getRemappings(\"" << migrate_dir_path in clang_getRemappings()
54 llvm::errs() << "\"" << migrate_dir_path << "\" does not exist\n"; in clang_getRemappings()
66 llvm::errs() << "Error by clang_getRemappings(\"" << migrate_dir_path in clang_getRemappings()
70 llvm::errs() << I->second << '\n'; in clang_getRemappings()
82 llvm::errs() << "error: feature not enabled in this build\n"; in clang_getRemappingsFromFileList()
91 llvm::errs() << "clang_getRemappingsFromFileList was called with " in clang_getRemappingsFromFileList()
98 llvm::errs() << "clang_getRemappingsFromFileList was called with " in clang_getRemappingsFromFileList()
111 llvm::errs() << "Error by clang_getRemappingsFromFileList\n"; in clang_getRemappingsFromFileList()
[all …]
/external/llvm/utils/KillTheDoctor/
DKillTheDoctor.cpp312 errs() << ToolName << ": Timeout value too large, must be less than: " in main()
323 errs() << ToolName << ": Failed to find program: '" << CommandLine in main()
329 errs() << ToolName << ": Found Program: " << ProgramToRun << '\n'; in main()
339 errs() << ToolName << ": Program Image Path: " << ProgramToRun << '\n' in main()
364 errs() << ToolName << ": Failed to run program: '" << ProgramToRun << "': " in main()
380 errs() << ToolName << ": Debugging...\n"; in main()
395 errs() << ToolName << ": Failed to get process times: " in main()
408 errs() << ToolName << ": Timeout Failed: Process has been running for" in main()
417 errs() << ToolName << ": Process timed out.\n"; in main()
432 errs() << ToolName << ": Process timed out.\n"; in main()
[all …]
/external/llvm/tools/opt/
DPrintSCC.cpp76 errs() << "SCCs for Function " << F.getName() << " in PostOrder:"; in runOnFunction()
79 errs() << "\nSCC #" << ++sccNum << " : "; in runOnFunction()
82 errs() << (*I)->getName() << ", "; in runOnFunction()
84 errs() << " (Has self-loop)."; in runOnFunction()
86 errs() << "\n"; in runOnFunction()
96 errs() << "SCCs for the program in PostOrder:"; in runOnModule()
100 errs() << "\nSCC #" << ++sccNum << " : "; in runOnModule()
103 errs() << ((*I)->getFunction() ? (*I)->getFunction()->getName() in runOnModule()
106 errs() << " (Has self-loop)."; in runOnModule()
108 errs() << "\n"; in runOnModule()
/external/vboot_reference/tests/
Drun_vbutil_kernel_arg_tests.sh38 errs=0
58 : $(( errs++ ))
75 : $(( errs++ ))
85 : $(( errs++ ))
114 : $(( errs++ ))
127 : $(( errs++ ))
150 : $(( errs++ ))
167 : $(( errs++ ))
179 : $(( errs++ ))
189 : $(( errs++ ))
[all …]
Drun_preamble_tests.sh29 errs=0
50 : $(( errs++ ))
77 : $(( errs++ ))
95 : $(( errs++ ))
105 if [ "$errs" -ne 0 ]; then
106 echo -e "${COL_RED}${ME}: ${errs}/${tests} tests failed${COL_STOP}"
/external/llvm/lib/Analysis/
DAliasAnalysisEvaluator.cpp104 errs() << " " << Msg << ":\t" in PrintResults()
114 errs() << " " << Msg << ": Ptr: "; in PrintModRefResults()
115 Ptr->printAsOperand(errs(), true, M); in PrintModRefResults()
116 errs() << "\t<->" << *I << '\n'; in PrintModRefResults()
124 errs() << " " << Msg << ": " << *CSA.getInstruction() in PrintModRefResults()
133 errs() << " " << Msg << ": " << *V1 in PrintLoadStoreResults()
186 errs() << "Function: " << F.getName() << ": " << Pointers.size() in runOnFunction()
347 errs() << "(" << Num*100ULL/Sum << "." in PrintPercent()
354 errs() << "===== Alias Analysis Evaluator Report =====\n"; in doFinalization()
356 errs() << " Alias Analysis Evaluator Summary: No pointers!\n"; in doFinalization()
[all …]
/external/clang/lib/Lex/
DPreprocessor.cpp212 llvm::errs() << tok::getTokenName(Tok.getKind()) << " '" in DumpToken()
217 llvm::errs() << "\t"; in DumpToken()
219 llvm::errs() << " [StartOfLine]"; in DumpToken()
221 llvm::errs() << " [LeadingSpace]"; in DumpToken()
223 llvm::errs() << " [ExpandDisabled]"; in DumpToken()
226 llvm::errs() << " [UnClean='" << StringRef(Start, Tok.getLength()) in DumpToken()
230 llvm::errs() << "\tLoc=<"; in DumpToken()
232 llvm::errs() << ">"; in DumpToken()
240 llvm::errs() << "MACRO: "; in DumpMacro()
243 llvm::errs() << " "; in DumpMacro()
[all …]
/external/clang/tools/arcmt-test/
Darcmt-test.cpp111 new TextDiagnosticPrinter(llvm::errs(), &*DiagOpts); in checkForMigration()
127 llvm::errs() << "error: no input files\n"; in checkForMigration()
156 new TextDiagnosticPrinter(llvm::errs(), &*DiagOpts); in performTransformations()
167 llvm::errs() << "error: no input files\n"; in performTransformations()
192 llvm::errs() << "\n##### FINAL RESULT #####\n"; in performTransformations()
194 llvm::errs() << "\n##### OUTPUT AFTER "<< i+1 <<". TRANSFORMATION #####\n"; in performTransformations()
195 printResult(migration.getRemapper(), llvm::errs()); in performTransformations()
196 llvm::errs() << "\n##########################\n\n"; in performTransformations()
233 errs() << "error: filename '" << fname in verifyTransformedFiles()
246 errs() << "error: could not read remappings input\n"; in verifyTransformedFiles()
[all …]
/external/compiler-rt/lib/sanitizer_common/scripts/
Dlitlint.py47 errs = 0
52 errs += 1
56 return errs
66 errs = 0 variable
68 errs += LintFile(p)
71 if errs > 0:
/external/mesa3d/src/gallium/drivers/radeon/
DAMDILCFGStructurizer.cpp65 if (DEBUGME) errs() << "New instr: " << *i << "\n"
69 errs() << msg << "BB" << b->getNumber() << "size " << b->size(); \
70 errs() << "\n"; \
76 errs() << msg << "BB" << b->getNumber() << "size " << b->size(); \
77 b->print(errs()); \
78 errs() << "\n"; \
434 errs() << "AMDGPUCFGStructurizer::prepare\n"; in prepare()
458 errs() << "LoopInfo:\n"; in prepare()
459 PrintLoopinfo(*loopInfo, errs()); in prepare()
464 errs() << "Ordered blocks:\n"; in prepare()
[all …]
/external/llvm/tools/llvm-lto/
Dllvm-lto.cpp109 errs() << "llvm-lto: "; in handleDiagnostics()
112 errs() << "note: "; in handleDiagnostics()
115 errs() << "remark: "; in handleDiagnostics()
118 errs() << "error: "; in handleDiagnostics()
121 errs() << "warning: "; in handleDiagnostics()
124 errs() << Msg << "\n"; in handleDiagnostics()
129 raw_ostream &OS = errs(); in diagnosticHandler()
163 errs() << "llvm-lto: " << Msg << '\n'; in error()
313 errs() << argv[0] << ": error adding file '" << InputFilenames[i] << "'\n"; in main()
348 errs() << argv[0] << ": error optimizing the code\n"; in main()
[all …]
/external/llvm/tools/bugpoint/
DOptimizerDriver.cpp99 errs() << "Error opening file '" << Filename << "' for writing!\n"; in EmitProgressBitcode()
140 errs() << getToolName() << ": Error making unique filename: " in runPasses()
152 errs() << getToolName() << ": Error making unique filename: " in runPasses()
162 errs() << "Error writing bitcode file: " << InputFilename << "\n"; in runPasses()
172 errs() << Path.getError().message() << "\n"; in runPasses()
175 errs() << "Cannot find `opt' in PATH!\n"; in runPasses()
184 errs() << Path.getError().message() << "\n"; in runPasses()
188 errs() << "Cannot find `valgrind' in PATH!\n"; in runPasses()
225 DEBUG(errs() << "\nAbout to run:\t"; in runPasses()
227 errs() << " " << Args[i]; in runPasses()
[all …]
/external/llvm/tools/llvm-extract/
Dllvm-extract.cpp117 Err.print(argv[0], errs()); in main()
128 errs() << argv[0] << ": program doesn't contain alias named '" in main()
140 errs() << argv[0] << ": '" << ExtractRegExpAliases[i] << "' " in main()
152 errs() << argv[0] << ": program doesn't contain global named '" in main()
162 errs() << argv[0] << ": program doesn't contain global named '" in main()
174 errs() << argv[0] << ": '" << ExtractRegExpGlobals[i] << "' " in main()
185 errs() << argv[0] << ": program doesn't contain global named '" in main()
195 errs() << argv[0] << ": program doesn't contain function named '" in main()
207 errs() << argv[0] << ": '" << ExtractRegExpFuncs[i] << "' " in main()
219 errs() << argv[0] << ": program doesn't contain global named '" in main()
[all …]
/external/llvm/tools/llc/
Dllc.cpp169 errs() << EC.message() << '\n'; in GetOutputStream()
237 Err.print(argv[0], errs()); in compileModule()
243 if (!NoVerify && verifyModule(*M, &errs())) { in compileModule()
244 errs() << argv[0] << ": " << InputFilename in compileModule()
265 errs() << argv[0] << ": " << Error; in compileModule()
274 errs() << argv[0] << ": invalid optimization level.\n"; in compileModule()
330 errs() << argv[0] in compileModule()
353 errs() << argv[0] << ": start-after and/or stop-after passes are " in compileModule()
359 errs() << argv[0] << ": run-pass pass is not registered.\n"; in compileModule()
367 errs() << argv[0] << ": start-after pass is not registered.\n"; in compileModule()
[all …]
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyISelDAGToDAG.cpp72 DEBUG(errs() << "Selecting: "); in Select()
74 DEBUG(errs() << "\n"); in Select()
78 DEBUG(errs() << "== "; Node->dump(CurDAG); errs() << "\n"); in Select()
97 DEBUG(errs() << "=> "); in Select()
102 DEBUG(errs() << "\n"); in Select()
/external/llvm/tools/lli/
Dlli.cpp370 errs() << "lli: Invalid optimization level.\n"; in getOptLevel()
409 Err.print(argv[0], errs()); in main()
425 errs() << argv[0] << ": bitcode didn't read correctly.\n"; in main()
426 errs() << "Reason: " << EC.message() << "\n"; in main()
461 errs() << "error: Remote process execution does not work with the " in main()
477 errs() << argv[0] << ": error creating EE: " << ErrorMsg << "\n"; in main()
479 errs() << argv[0] << ": unknown error creating EE!\n"; in main()
492 Err.print(argv[0], errs()); in main()
507 Err.print(argv[0], errs()); in main()
518 Err.print(argv[0], errs()); in main()
[all …]
/external/llvm/lib/Target/MSP430/
DMSP430ISelDAGToDAG.cpp66 errs() << "MSP430ISelAddressMode " << this << '\n'; in dump()
68 errs() << "Base.Reg "; in dump()
71 errs() << " Base.FrameIndex " << Base.FrameIndex << '\n'; in dump()
73 errs() << " Disp " << Disp << '\n'; in dump()
75 errs() << "GV "; in dump()
78 errs() << " CP "; in dump()
80 errs() << " Align" << Align << '\n'; in dump()
82 errs() << "ES "; in dump()
83 errs() << ES << '\n'; in dump()
85 errs() << " JT" << JT << " Align" << Align << '\n'; in dump()
[all …]
/external/llvm/lib/MC/
DSubtargetFeature.cpp101 errs() << "Available CPUs for this target:\n\n"; in Help()
103 errs() << format(" %-*s - %s.\n", MaxCPULen, CPU.Key, CPU.Desc); in Help()
104 errs() << '\n'; in Help()
107 errs() << "Available features for this target:\n\n"; in Help()
109 errs() << format(" %-*s - %s.\n", MaxFeatLen, Feature.Key, Feature.Desc); in Help()
110 errs() << '\n'; in Help()
112 errs() << "Use +feature to enable a feature, or -feature to disable it.\n" in Help()
188 errs() << "'" << Feature in ToggleFeature()
221 errs() << "'" << Feature in ApplyFeatureFlag()
272 errs() << "'" << CPU in getFeatureBits()
/external/llvm/lib/CodeGen/
DMachineVerifier.cpp329 errs() << "Instruction: " << *MBBI; in runOnMachineFunction()
394 errs() << '\n'; in report()
397 errs() << "# " << Banner << '\n'; in report()
399 LiveInts->print(errs()); in report()
401 MF->print(errs(), Indexes); in report()
403 errs() << "*** Bad machine code: " << msg << " ***\n" in report()
410 errs() << "- basic block: BB#" << MBB->getNumber() in report()
414 errs() << " [" << Indexes->getMBBStartIdx(MBB) in report()
416 errs() << '\n'; in report()
422 errs() << "- instruction: "; in report()
[all …]
/external/autotest/client/tests/monotonic_time/src/
Dtime_test.c233 int errs; in run_test() local
293 errs = (test->warps != 0); in run_test()
295 if (!errs) in run_test()
301 return errs; in run_test()
310 int errs; in main() local
332 errs = 0; in main()
337 ++errs; in main()
353 ++errs; in main()
358 if (errs || optind != argc-1) { in main()
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
Dsmooth_out_data.c31 int32_t errs; in WebRtcIlbcfix_Smooth_odata() local
37 errs=0; in WebRtcIlbcfix_Smooth_odata()
40 errs += err * err; /* errs in Q-6 */ in WebRtcIlbcfix_Smooth_odata()
43 return errs; in WebRtcIlbcfix_Smooth_odata()

12345678910>>...14