| /src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| H A D | DiagOutputUtils.h | 18 void printQuotedQualifiedName(llvm::raw_ostream &Os, in printQuotedQualifiedName() argument 20 Os << "'"; in printQuotedQualifiedName() 21 D->getNameForDiagnostic(Os, D->getASTContext().getPrintingPolicy(), in printQuotedQualifiedName() 23 Os << "'"; in printQuotedQualifiedName() 27 void printQuotedName(llvm::raw_ostream &Os, const NamedDeclDerivedT &D) { in printQuotedName() argument 28 Os << "'"; in printQuotedName() 29 D->getNameForDiagnostic(Os, D->getASTContext().getPrintingPolicy(), in printQuotedName() 31 Os << "'"; in printQuotedName()
|
| H A D | NoUncountedMembersChecker.cpp | 130 llvm::raw_svector_ostream Os(Buf); in reportBug() local 132 Os << "Member variable "; in reportBug() 133 printQuotedName(Os, Member); in reportBug() 134 Os << " in "; in reportBug() 135 printQuotedQualifiedName(Os, ClassCXXRD); in reportBug() 136 Os << " is a " in reportBug() 139 printQuotedQualifiedName(Os, MemberCXXRD); in reportBug() 140 Os << "; member variables must be ref-counted."; in reportBug() 144 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
|
| H A D | UncountedLambdaCapturesChecker.cpp | 77 llvm::raw_svector_ostream Os(Buf); in reportBug() local 80 Os << "Captured "; in reportBug() 82 Os << "Implicitly captured "; in reportBug() 85 Os << "raw-pointer "; in reportBug() 88 Os << "reference "; in reportBug() 91 printQuotedQualifiedName(Os, Capture.getCapturedVar()); in reportBug() 92 Os << " to uncounted type is unsafe."; in reportBug() 95 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
|
| H A D | UncountedLocalVarsChecker.cpp | 255 llvm::raw_svector_ostream Os(Buf); in reportBug() local 258 Os << "Assignment to an uncounted parameter "; in reportBug() 259 printQuotedQualifiedName(Os, V); in reportBug() 260 Os << " is unsafe."; in reportBug() 263 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug() 268 Os << "Local variable "; in reportBug() 270 Os << "Static local variable "; in reportBug() 272 Os << "Global variable "; in reportBug() 274 Os << "Variable "; in reportBug() 275 printQuotedQualifiedName(Os, V); in reportBug() [all …]
|
| H A D | UncountedCallArgsChecker.cpp | 248 llvm::raw_svector_ostream Os(Buf); in reportBug() local 251 Os << "Call argument"; in reportBug() 253 Os << " for parameter "; in reportBug() 254 printQuotedQualifiedName(Os, Param); in reportBug() 256 Os << " is uncounted and unsafe."; in reportBug() 263 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
|
| H A D | RefCntblBaseVirtualDtorChecker.cpp | 363 llvm::raw_svector_ostream Os(Buf); in reportBug() local 365 Os << (ProblematicBaseClass->isClass() ? "Class" : "Struct") << " "; in reportBug() 366 printQuotedQualifiedName(Os, ProblematicBaseClass); in reportBug() 368 Os << " is used as a base of " in reportBug() 370 printQuotedQualifiedName(Os, DerivedClass); in reportBug() 372 Os << " but doesn't have virtual destructor"; in reportBug() 376 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
|
| /src/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | MapLattice.h | 116 operator<<(std::ostream &Os, 119 Os << "{"; 121 Os << std::exchange(Separator, ", ") << E.first << " => " << E.second; 123 Os << "}"; 124 return Os; 129 operator<<(std::ostream &Os, 132 Os << "{"; 134 Os << std::exchange(Separator, ", ") << E.first->getName().str() << " => " 137 Os << "}"; 138 return Os;
|
| /src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | PaddingChecker.cpp | 314 llvm::raw_svector_ostream Os(Buf); in reportRecord() local 315 Os << "Excessive padding in '"; in reportRecord() 316 Os << QualType::getAsString(RD->getTypeForDecl(), Qualifiers(), in reportRecord() 326 Os << " instantiated here: " in reportRecord() 330 Os << " (" << BaselinePad.getQuantity() << " padding bytes, where " in reportRecord() 334 Os << FD->getName() << ", "; in reportRecord() 335 Os << "consider reordering the fields or adding explicit padding " in reportRecord() 340 auto Report = std::make_unique<BasicBugReport>(PaddingBug, Os.str(), CELoc); in reportRecord()
|
| H A D | CallAndMessageChecker.cpp | 153 llvm::raw_svector_ostream &Os) { in describeUninitializedArgumentInCall() argument 159 Os << (ArgumentNumber + 1) << llvm::getOrdinalSuffix(ArgumentNumber + 1) in describeUninitializedArgumentInCall() 164 Os << "Argument for property setter is an uninitialized value"; in describeUninitializedArgumentInCall() 168 Os << "Argument for subscript setter is an uninitialized value"; in describeUninitializedArgumentInCall() 170 Os << "Subscript index is an uninitialized value"; in describeUninitializedArgumentInCall() 176 Os << (ArgumentNumber + 1) << llvm::getOrdinalSuffix(ArgumentNumber + 1) in describeUninitializedArgumentInCall() 180 Os << (ArgumentNumber + 1) << llvm::getOrdinalSuffix(ArgumentNumber + 1) in describeUninitializedArgumentInCall() 204 llvm::raw_svector_ostream Os(Buf); in uninitRefOrPointer() local 207 Os << (ArgumentNumber + 1) << llvm::getOrdinalSuffix(ArgumentNumber + 1) in uninitRefOrPointer() 210 Os << (ArgumentNumber + 1) << llvm::getOrdinalSuffix(ArgumentNumber + 1) in uninitRefOrPointer() [all …]
|
| H A D | ObjCContainersASTChecker.cpp | 135 llvm::raw_svector_ostream Os(Buf); in VisitCallExpr() local 138 Os << " The " << ((ArgNum == 1) ? "second" : "third") << " argument to '" in VisitCallExpr() 145 categories::CoreFoundationObjectiveC, Os.str(), CELoc, in VisitCallExpr()
|
| H A D | CStringChecker.cpp | 56 llvm::raw_svector_ostream Os(Message); in createOutOfBoundErrorMsg() local 59 Os << toUppercase(FunctionDescription.front()) in createOutOfBoundErrorMsg() 63 Os << " overflows the destination buffer"; in createOutOfBoundErrorMsg() 65 Os << " accesses out-of-bound array element"; in createOutOfBoundErrorMsg() 431 static void printIdxWithOrdinalSuffix(llvm::raw_ostream &Os, unsigned Idx) { in printIdxWithOrdinalSuffix() argument 432 Os << Idx << llvm::getOrdinalSuffix(Idx); in printIdxWithOrdinalSuffix()
|
| /src/contrib/bearssl/conf/ |
| H A D | Unix32.mk | 10 CFLAGS = -W -Wall -Os -fPIC -m32 -DBR_LOMUL
|
| H A D | samd20.mk | 13 CFLAGS = -W -Wall -Os -mthumb -ffunction-sections -fdata-sections -mcpu=cortex-m0plus -DBR_ARMEL_CO…
|
| H A D | Unix.mk | 41 CFLAGS = -W -Wall -Os -fPIC
|
| /src/contrib/llvm-project/llvm/lib/Passes/ |
| H A D | OptimizationLevel.cpp | 25 const OptimizationLevel OptimizationLevel::Os = { member in OptimizationLevel
|
| /src/sys/contrib/openzfs/cmd/zpool_influxdb/ |
| H A D | README.md | 56 Performance counters measure the I/Os to the pool's devices. 103 | issued | bytes | size of I/Os issued to disks | 104 | pass_issued | bytes | size of I/Os issued to disks for current pass | 115 The ZFS I/O (ZIO) scheduler uses five queues to schedule I/Os to each vdev. 154 of I/Os by type and vdev. 191 of I/Os by type and vdev. 193 Note: trim I/Os can be larger than 16MiB, but the larger sizes are
|
| /src/contrib/llvm-project/llvm/include/llvm/Passes/ |
| H A D | OptimizationLevel.h | 100 static const OptimizationLevel Os; variable
|
| /src/contrib/sqlite3/ |
| H A D | README.txt | 64 $ CFLAGS="-Os" ./configure 72 $ CFLAGS="-Os -DSQLITE_OMIT_DEPRECATED" ./configure
|
| /src/contrib/ntp/sntp/ag-tpl/0-old/ |
| H A D | agmdoc-cmd.tpl | 36 "\n.Os\n") ))
|
| /src/stand/i386/boot2/ |
| H A D | Makefile | 34 CFLAGS.gcc+= -Os \
|
| /src/sys/contrib/device-tree/Bindings/leds/ |
| H A D | leds-pca955x.txt | 4 to control LEDs can be used as general purpose I/Os. The GPIO pins can
|
| /src/crypto/krb5/src/config/ |
| H A D | win-pre.in | 141 # /Os optimize for space. FIXME: Do not use /Ox; it miscompiles the DES lib! 154 CCOPTS=/Os /MD $(CCOPTS)
|
| /src/contrib/llvm-project/clang/lib/Tooling/Transformer/ |
| H A D | Stencil.cpp | 49 llvm::raw_string_ostream Os(Output); in printNode() local 53 NodeOrErr->print(Os, PrintingPolicy(Match.Context->getLangOpts())); in printNode()
|
| /src/stand/ |
| H A D | defs.mk | 105 CFLAGS.gcc+= -Os
|
| /src/sys/contrib/zstd/lib/ |
| H A D | libzstd.mk | 79 CFLAGS += -Os
|