| /freebsd/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 | RawPtrRefMemberChecker.cpp | 281 llvm::raw_svector_ostream Os(Buf); in reportBug() local 285 Os << "Property "; in reportBug() 287 Os << "Instance variable "; in reportBug() 289 Os << "Member variable "; in reportBug() 290 printQuotedName(Os, Member); in reportBug() 291 Os << " in "; in reportBug() 292 printQuotedQualifiedName(Os, ClassCXXRD); in reportBug() 294 Os << " is a "; in reportBug() 296 Os << " contains a "; in reportBug() 297 if (printPointer(Os, MemberType) == PrintDeclKind::Pointer) { in reportBug() [all …]
|
| H A D | ForwardDeclChecker.cpp | 172 llvm::raw_svector_ostream Os(Buf); in visitRecordDecl() local 175 Os << "Member variable "; in visitRecordDecl() 176 printQuotedName(Os, Member); in visitRecordDecl() 177 Os << " uses a forward declared type '" << TypeName << "'"; in visitRecordDecl() 181 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in visitRecordDecl() 199 llvm::raw_svector_ostream Os(Buf); in visitVarDecl() local 200 Os << "Local variable "; in visitVarDecl() 201 printQuotedQualifiedName(Os, V); in visitVarDecl() 203 reportBug(V->getBeginLoc(), V->getSourceRange(), DeclWithIssue, Os.str(), in visitVarDecl() 297 llvm::raw_svector_ostream Os(Buf); in reportUnknownArgType() local [all …]
|
| H A D | RawPtrRefLocalVarsChecker.cpp | 357 llvm::raw_svector_ostream Os(Buf); in reportBug() local 360 Os << "Assignment to an " << ptrKind() << " parameter "; in reportBug() 361 printQuotedQualifiedName(Os, V); in reportBug() 362 Os << " is unsafe."; in reportBug() 365 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug() 370 Os << "Local variable "; in reportBug() 372 Os << "Static local variable "; in reportBug() 374 Os << "Global variable "; in reportBug() 376 Os << "Variable "; in reportBug() 377 printQuotedQualifiedName(Os, V); in reportBug() [all …]
|
| H A D | RawPtrRefCallArgsChecker.cpp | 342 llvm::raw_svector_ostream Os(Buf); in reportBug() local 345 Os << "Call argument"; in reportBug() 347 Os << " for parameter "; in reportBug() 348 printQuotedQualifiedName(Os, Param); in reportBug() 350 Os << " is " << ptrKind() << " and unsafe."; in reportBug() 358 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug() 370 llvm::raw_svector_ostream Os(Buf); in reportBugOnThis() local 371 Os << "Call argument for 'this' parameter is " << ptrKind(); in reportBugOnThis() 372 Os << " and unsafe."; in reportBugOnThis() 375 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBugOnThis() [all …]
|
| H A D | RawPtrRefLambdaCapturesChecker.cpp | 414 llvm::raw_svector_ostream Os(Buf); in reportBug() local 417 Os << "Captured "; in reportBug() 419 Os << "Implicitly captured "; in reportBug() 422 Os << "raw-pointer "; in reportBug() 424 Os << "reference "; in reportBug() 427 printQuotedQualifiedName(Os, CapturedVar); in reportBug() 428 Os << " to " << ptrKind(T) << " type is unsafe."; in reportBug() 431 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug() 438 llvm::raw_svector_ostream Os(Buf); in reportBugOnThisPtr() local 441 Os << "Captured "; in reportBugOnThisPtr() [all …]
|
| H A D | RetainPtrCtorAdoptChecker.cpp | 591 llvm::raw_svector_ostream Os(Buf); in reportUseAfterFree() local 593 Os << "Incorrect use of " << Name in reportUseAfterFree() 596 Os << " " << condition; in reportUseAfterFree() 597 Os << "."; in reportUseAfterFree() 602 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportUseAfterFree() 612 llvm::raw_svector_ostream Os(Buf); in reportLeak() local 614 Os << "Incorrect use of " << Name in reportLeak() 617 Os << " " << condition; in reportLeak() 618 Os << "."; in reportLeak() 623 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportLeak() [all …]
|
| H A D | RefCntblBaseVirtualDtorChecker.cpp | 403 llvm::raw_svector_ostream Os(Buf); in reportBug() local 405 Os << (ProblematicBaseClass->isClass() ? "Class" : "Struct") << " "; in reportBug() 406 printQuotedQualifiedName(Os, ProblematicBaseClass); in reportBug() 408 Os << " is used as a base of " in reportBug() 410 printQuotedQualifiedName(Os, DerivedClass); in reportBug() 412 Os << " but doesn't have virtual destructor"; in reportBug() 416 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
|
| /freebsd/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;
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | PaddingChecker.cpp | 312 llvm::raw_svector_ostream Os(Buf); in reportRecord() local 313 Os << "Excessive padding in '"; in reportRecord() 314 Os << QualType::getAsString(RD->getTypeForDecl(), Qualifiers(), in reportRecord() 324 Os << " instantiated here: " in reportRecord() 328 Os << " (" << BaselinePad.getQuantity() << " padding bytes, where " in reportRecord() 332 Os << FD->getName() << ", "; in reportRecord() 333 Os << "consider reordering the fields or adding explicit padding " in reportRecord() 338 auto Report = std::make_unique<BasicBugReport>(PaddingBug, Os.str(), CELoc); in reportRecord()
|
| H A D | CallAndMessageChecker.cpp | 151 llvm::raw_svector_ostream &Os) { in describeUninitializedArgumentInCall() argument 157 Os << (ArgumentNumber + 1) << llvm::getOrdinalSuffix(ArgumentNumber + 1) in describeUninitializedArgumentInCall() 162 Os << "Argument for property setter is an uninitialized value"; in describeUninitializedArgumentInCall() 166 Os << "Argument for subscript setter is an uninitialized value"; in describeUninitializedArgumentInCall() 168 Os << "Subscript index is an uninitialized value"; in describeUninitializedArgumentInCall() 174 Os << (ArgumentNumber + 1) << llvm::getOrdinalSuffix(ArgumentNumber + 1) in describeUninitializedArgumentInCall() 178 Os << (ArgumentNumber + 1) << llvm::getOrdinalSuffix(ArgumentNumber + 1) in describeUninitializedArgumentInCall() 202 llvm::raw_svector_ostream Os(Buf); in uninitRefOrPointer() local 205 Os << (ArgumentNumber + 1) << llvm::getOrdinalSuffix(ArgumentNumber + 1) in uninitRefOrPointer() 208 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()
|
| /freebsd/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
|
| /freebsd/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
|
| /freebsd/contrib/llvm-project/llvm/lib/Passes/ |
| H A D | OptimizationLevel.cpp | 25 const OptimizationLevel OptimizationLevel::Os = { member in OptimizationLevel
|
| H A D | PassRegistry.def | 255 parseOptLevelParam, "O0;O1;O2;O3;Os;Oz") 261 parseOptLevelParam, "O0;O1;O2;O3;Os;Oz") 267 parseOptLevelParam, "O0;O1;O2;O3;Os;Oz") 279 parseOptLevelParam, "O0;O1;O2;O3;Os;Oz") 285 parseOptLevelParam, "O0;O1;O2;O3;Os;Oz") 292 parseFatLTOOptions, "O0;O1;O2;O3;Os;Oz;thinlto;emit-summary") 585 parseFunctionSimplificationPipelineOptions, "O1;O2;O3;Os;Oz")
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Passes/ |
| H A D | OptimizationLevel.h | 101 LLVM_ABI static const OptimizationLevel Os; variable
|
| /freebsd/contrib/sqlite3/ |
| H A D | README.txt | 64 $ CFLAGS="-Os" ./configure 72 $ CFLAGS="-Os -DSQLITE_OMIT_DEPRECATED" ./configure
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/ |
| H A D | Stencil.cpp | 48 llvm::raw_string_ostream Os(Output); in printNode() local 55 ND->getNameForDiagnostic(Os, PP, false); in printNode() 57 NodeOrErr->print(Os, PP); in printNode()
|
| /freebsd/contrib/ntp/sntp/ag-tpl/0-old/ |
| H A D | agmdoc-cmd.tpl | 36 "\n.Os\n") ))
|
| /freebsd/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)
|
| /freebsd/stand/i386/boot2/ |
| H A D | Makefile | 34 CFLAGS.gcc+= -Os \
|
| /freebsd/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
|