|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/Support/raw_ostream.h 224 raw_ostream &operator<<(double N);
References
examples/Kaleidoscope/Chapter9/toy.cpp 222 return ExprAST::dump(out << Val, ind);
include/llvm/ADT/Optional.h 421 OS << *O;
include/llvm/CodeGen/PBQP/Math.h 112 OS << "[ " << V[0];
114 OS << ", " << V[i];
include/llvm/Support/FormatVariadicDetails.h 83 << std::declval<U>()),
include/llvm/Support/ScopedPrinter.h 64 stream << Value;
lib/BinaryFormat/MsgPackDocumentYAML.cpp 58 OS << Float;
lib/Bitcode/Reader/BitcodeAnalyzer.cpp 667 << Stats.NumSubBlocks / (double)Stats.NumInstances << "\n";
669 << Stats.NumAbbrevs / (double)Stats.NumInstances << "\n";
671 << Stats.NumRecords / (double)Stats.NumInstances << "\n";
lib/CodeGen/AsmPrinter/AsmPrinter.cpp 862 OS << (double)APF.convertToFloat();
864 OS << APF.convertToDouble();
871 OS << "(long double) " << APF.convertToDouble();
lib/CodeGen/LiveInterval.cpp 1042 OS << " weight:" << weight;
lib/CodeGen/RegAllocBase.cpp 108 << ':' << *VirtReg << " w=" << VirtReg->weight << '\n');
lib/CodeGen/RegAllocGreedy.cpp 857 LLVM_DEBUG(dbgs() << "should evict: " << B << " w= " << B.weight << '\n');
2345 << '-' << Uses[SplitAfter] << " i=" << MaxGap);
2374 LLVM_DEBUG(dbgs() << " w=" << EstWeight);
2418 << Uses[BestAfter] << ", " << BestDiff << ", "
lib/CodeGen/RegAllocPBQP.cpp 688 << LRE.getParent().weight << ", New vregs: ");
lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp 572 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
574 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
lib/DebugInfo/PDB/PDBExtras.cpp 344 OS << Value.Value.Double;
359 OS << Value.Value.Single;
lib/IR/DiagnosticPrinter.cpp 89 Stream << N;
lib/MC/MCInst.cpp 29 OS << "FPImm:" << getFPImm();
lib/Support/FileUtilities.cpp 157 << "Compared: " << V1 << " and " << V2 << '\n'
157 << "Compared: " << V1 << " and " << V2 << '\n'
158 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n'
158 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n'
159 << "Out of tolerance: rel/abs: " << RelTolerance << '/'
160 << AbsTolerance;
lib/Target/AMDGPU/MCTargetDesc/AMDGPUInstPrinter.cpp 1424 O << Imm << '(' << BitsToFloat(Imm) << ')';
1484 O << Op.getFPImm();
lib/Target/ARM/MCTargetDesc/ARMInstPrinter.cpp 1333 O << markup("<imm:") << '#' << ARM_AM::getFPImmFloat(MO.getImm())
lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp 149 OS << "Flt:" << Flt.Val;
lib/Transforms/Scalar/LoopPredication.cpp 935 << LatchExitProbabilityScale << "\n");
lib/Transforms/Scalar/LoopStrengthReduce.cpp 4791 dbgs() << " with min reg num " << FMinRegNum << '\n');
lib/Transforms/Scalar/LoopVersioningLICM.cpp 446 << InvariantThreshold << "%\n");
tools/clang/lib/AST/APValue.cpp 406 OS << "Float: " << GetApproxValue(getFloat());
423 OS << "ComplexFloat: " << GetApproxValue(getComplexFloatReal())
424 << ", " << GetApproxValue(getComplexFloatImag());
489 Out << GetApproxValue(getFloat());
509 Out << GetApproxValue(getComplexFloatReal()) << "+"
510 << GetApproxValue(getComplexFloatImag()) << "i";
tools/clang/lib/AST/TextNodeDumper.cpp 779 OS << " " << Node->getValueAsApproximateDouble();
tools/clang/tools/extra/clangd/index/dex/Iterator.cpp 300 return OS << "(* " << Factor << ' ' << *Child << ')';
tools/clang/tools/extra/clangd/unittests/FuzzyMatchTests.cpp 221 *OS << "\nRanks '" << Str.Word << "'=" << *Score << " above '"
222 << LastMatch->Word << "'=" << *LastScore << "\n"
tools/lldb/include/lldb/Utility/ReproducerInstrumentation.h 26 ss << t;
tools/llvm-exegesis/lib/MCInstrDescView.cpp 354 OS << Op.getFPImm();
tools/llvm-xray/xray-account.cpp 374 OS << FuncId << ',' << Count << ',' << Row.Min << ',' << Row.Median << ','
374 OS << FuncId << ',' << Count << ',' << Row.Min << ',' << Row.Median << ','
375 << Row.Pct90 << ',' << Row.Pct99 << ',' << Row.Max << "," << Row.Sum
375 << Row.Pct90 << ',' << Row.Pct99 << ',' << Row.Max << "," << Row.Sum
375 << Row.Pct90 << ',' << Row.Pct99 << ',' << Row.Max << "," << Row.Sum
375 << Row.Pct90 << ',' << Row.Pct99 << ',' << Row.Max << "," << Row.Sum
tools/llvm-xray/xray-graph.cpp 347 S << (*this).*
tools/opt/Debugify.cpp 414 << Stats.NumDbgLocsMissing << ',' << Stats.getMissingValueRatio() << ','
415 << Stats.getEmptyLocationRatio() << '\n';
unittests/Support/raw_ostream_test.cpp 21 llvm::raw_string_ostream(res) << Value;
46 OS << Value;
utils/unittest/googletest/include/gtest/internal/custom/raw-ostream.h 57 OS << V.V;