/external/llvm-project/llvm/test/Other/ |
D | opt-hot-cold-split.ll | 1 …ple=x86_64-- -Os -hot-cold-split=true -debug-pass=Structure -enable-new-pm=0 < %s -o /dev/null 2>&… 2 …lit=true -passes='lto-pre-link<Os>' -debug-pass-manager < %s -o /dev/null 2>&1 | FileCheck %s -che… 3 …ue -passes='thinlto-pre-link<Os>' -debug-pass-manager < %s -o /dev/null 2>&1 | FileCheck %s -check… 4 …-cold-split=true -passes='lto<Os>' -debug-pass-manager < %s -o /dev/null 2>&1 | FileCheck %s -chec… 5 …split=true -passes='thinlto<Os>' -debug-pass-manager < %s -o /dev/null 2>&1 | FileCheck %s -check-… 11 ; DEFAULT-Os: Hot Cold Splitting 12 ; DEFAULT-Os: Simplify the CFG 14 ; LTO-PRELINK-Os-NOT: pass: HotColdSplittingPass 16 ; THINLTO-PRELINK-Os-NOT: Running pass: HotColdSplittingPass 18 ; LTO-POSTLINK-Os: HotColdSplitting [all …]
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
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()
|
D | UncountedLambdaCapturesChecker.cpp | 76 llvm::raw_svector_ostream Os(Buf); in reportBug() local 79 Os << "Captured "; in reportBug() 81 Os << "Implicitly captured "; in reportBug() 84 Os << "raw-pointer "; in reportBug() 87 Os << "reference "; in reportBug() 90 printQuotedQualifiedName(Os, Capture.getCapturedVar()); in reportBug() 91 Os << " to uncounted type is unsafe."; in reportBug() 94 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
|
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()
|
D | RefCntblBaseVirtualDtorChecker.cpp | 136 llvm::raw_svector_ostream Os(Buf); in reportBug() local 138 Os << (ProblematicBaseClass->isClass() ? "Class" : "Struct") << " "; in reportBug() 139 printQuotedQualifiedName(Os, ProblematicBaseClass); in reportBug() 141 Os << " is used as a base of " in reportBug() 143 printQuotedQualifiedName(Os, DerivedClass); in reportBug() 145 Os << " but doesn't have virtual destructor"; in reportBug() 149 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
|
D | UncountedCallArgsChecker.cpp | 168 llvm::raw_svector_ostream Os(Buf); in reportBug() local 171 Os << "Call argument"; in reportBug() 173 Os << " for parameter "; in reportBug() 174 printQuotedQualifiedName(Os, Param); in reportBug() 176 Os << " is uncounted and unsafe."; in reportBug() 183 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
|
D | UncountedLocalVarsChecker.cpp | 231 llvm::raw_svector_ostream Os(Buf); in reportBug() local 233 Os << "Local variable "; in reportBug() 234 printQuotedQualifiedName(Os, V); in reportBug() 235 Os << " is uncounted and unsafe."; in reportBug() 238 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
|
/external/icu/android_icu4j/libcore_bridge/src/java/com/android/i18n/timezone/internal/ |
D | MemoryMappedFile.java | 20 import android.system.Os; 50 FileDescriptor fd = Os.open(path, 0 /* O_RDONLY */, 0); in mmapRO() 52 long size = Os.fstat(fd).st_size; in mmapRO() 53 long address = Os.mmap(0L, size, 0x1 /* PROT_READ */, 0x01 /* MAP_SHARED */, fd, 0); in mmapRO() 56 Os.close(fd); in mmapRO() 71 Os.munmap(address, size); in close()
|
/external/llvm-project/llvm/test/Transforms/LoopVectorize/X86/ |
D | metadata-enable.ll | 6 ; RUN: opt < %s -mcpu=corei7 -Os -S -unroll-allow-partial=0 | FileCheck %s --check-prefix=Os 489 ; Os-LABEL: @enabled( 490 ; Os-NEXT: entry: 491 ; Os-NEXT: [[BROADCAST_SPLATINSERT:%.*]] = insertelement <4 x i32> undef, i32 [[N:%.*]], i32 0 492 ; Os-NEXT: [[BROADCAST_SPLAT:%.*]] = shufflevector <4 x i32> [[BROADCAST_SPLATINSERT]], <4 x i32… 493 ; Os-NEXT: [[TMP0:%.*]] = bitcast i32* [[B:%.*]] to <4 x i32>* 494 ; Os-NEXT: [[WIDE_LOAD:%.*]] = load <4 x i32>, <4 x i32>* [[TMP0]], align 4 495 ; Os-NEXT: [[TMP1:%.*]] = add nsw <4 x i32> [[WIDE_LOAD]], [[BROADCAST_SPLAT]] 496 ; Os-NEXT: [[TMP2:%.*]] = bitcast i32* [[A:%.*]] to <4 x i32>* 497 ; Os-NEXT: store <4 x i32> [[TMP1]], <4 x i32>* [[TMP2]], align 4 [all …]
|
/external/libtextclassifier/coverage/src/com/android/textclassifier/testing/ |
D | TextClassifierInstrumentationListener.java | 20 import android.system.Os; 84 Os.getpid(), Os.getuid())); in maybeDumpNativeCoverage() 86 Os.kill(Os.getpid(), COVERAGE_SIGNAL); in maybeDumpNativeCoverage()
|
/external/llvm-project/clang/test/Driver/ |
D | hip-toolchain-opt.hip | 40 // RUN: %clang -### -Os \ 45 // RUN: 2>&1 | FileCheck --check-prefixes=ALL,Os %s 67 // Os-SAME: "-Os" 81 // Os-SAME: "-plugin-opt=O2" 91 // Os-SAME: "-Os"
|
/external/ant-glob/src/org/apache/tools/ant/util/ |
D | FileUtils.java | 21 import org.apache.tools.ant.taskdefs.condition.Os; 42 private static final boolean ON_NETWARE = Os.isFamily("netware"); 43 private static final boolean ON_DOS = Os.isFamily("dos"); 44 private static final boolean ON_WIN9X = Os.isFamily("win9x"); 45 private static final boolean ON_WINDOWS = Os.isFamily("windows");
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | NSFastEnumeration.m | 1 // RUN: %clang_cc1 -triple i686-apple-ios10.3 -fobjc-runtime=ios-6.0 -Os -emit-llvm -o - %s | FileC… 2 // RUN: %clang_cc1 -triple i686--windows-msvc -fobjc-runtime=ios-6.0 -Os -emit-llvm -o - %s | FileC… 3 // RUN: %clang_cc1 -triple x86_64-apple-ios10.3 -fobjc-runtime=ios-6.0 -Os -emit-llvm -o - %s | Fil… 4 // RUN: %clang_cc1 -triple x86_64--windows-msvc -fobjc-runtime=ios-6.0 -Os -emit-llvm -o - %s | Fil…
|
/external/conscrypt/test-support/src/java/org/conscrypt/ |
D | ConscryptInstrumentationListener.java | 21 import android.system.Os; 148 Os.getpid(), Os.getuid())); in maybeDumpNativeCoverage() 150 Os.kill(Os.getpid(), COVERAGE_SIGNAL); in maybeDumpNativeCoverage()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
D | PaddingChecker.cpp | 313 llvm::raw_svector_ostream Os(Buf); in reportRecord() local 314 Os << "Excessive padding in '"; in reportRecord() 315 Os << QualType::getAsString(RD->getTypeForDecl(), Qualifiers(), in reportRecord() 325 Os << " instantiated here: " in reportRecord() 329 Os << " (" << BaselinePad.getQuantity() << " padding bytes, where " in reportRecord() 333 Os << FD->getName() << ", \n"; in reportRecord() 334 Os << "consider reordering the fields or adding explicit padding " in reportRecord() 340 std::make_unique<BasicBugReport>(*PaddingBug, Os.str(), CELoc); in reportRecord()
|
D | CallAndMessageChecker.cpp | 154 llvm::raw_svector_ostream &Os) { in describeUninitializedArgumentInCall() argument 160 Os << (ArgumentNumber + 1) << llvm::getOrdinalSuffix(ArgumentNumber + 1) in describeUninitializedArgumentInCall() 165 Os << "Argument for property setter is an uninitialized value"; in describeUninitializedArgumentInCall() 169 Os << "Argument for subscript setter is an uninitialized value"; in describeUninitializedArgumentInCall() 171 Os << "Subscript index is an uninitialized value"; in describeUninitializedArgumentInCall() 177 Os << (ArgumentNumber + 1) << llvm::getOrdinalSuffix(ArgumentNumber + 1) in describeUninitializedArgumentInCall() 181 Os << (ArgumentNumber + 1) << llvm::getOrdinalSuffix(ArgumentNumber + 1) in describeUninitializedArgumentInCall() 205 llvm::raw_svector_ostream Os(Buf); in uninitRefOrPointer() local 208 Os << (ArgumentNumber + 1) << llvm::getOrdinalSuffix(ArgumentNumber + 1) in uninitRefOrPointer() 211 Os << (ArgumentNumber + 1) << llvm::getOrdinalSuffix(ArgumentNumber + 1) in uninitRefOrPointer() [all …]
|
/external/mesa3d/src/gallium/frontends/clover/util/ |
D | range.hpp | 228 template<typename F, typename... Os> 230 public detail::basic_range<adaptor_range<F, Os...>, 232 F, detail::preferred_iterator_type<Os>...>, 234 F, detail::preferred_iterator_type<const Os>...> 237 typedef detail::basic_range<adaptor_range<F, Os...>, 239 F, detail::preferred_iterator_type<Os>...>, 241 F, detail::preferred_iterator_type<const Os>...> 283 std::tuple<Os...> os;
|
/external/llvm/test/Transforms/LoopVectorize/X86/ |
D | metadata-enable.ll | 4 ; RUN: opt < %s -mcpu=corei7 -Os -S -unroll-allow-partial=0 | FileCheck %s --check-prefix=Os 32 ; Os-LABEL: @enabled( 33 ; Os: store <4 x i32> 34 ; Os: ret i32 83 ; Os-LABEL: @nopragma( 84 ; Os: store <4 x i32> 85 ; Os: ret i32 134 ; Os-LABEL: @disabled( 135 ; Os-NOT: store <4 x i32> 136 ; Os: ret i32
|
/external/swiftshader/third_party/subzero/src/ |
D | IceCompileServer.cpp | 196 std::unique_ptr<Ostream> Os; in run() local 213 Os.reset(FdOs.release()); in run() 216 Os->SetBufferSize(1 << 14); in run() 220 Os = makeStream(Flags.getOutputFilename(), EC); in run() 227 Os->SetUnbuffered(); in run() 248 dumpBuildAttributes(*Os.get()); in run() 252 Ctx.reset(new GlobalContext(Ls.get(), Os.get(), Ls.get(), ELFStr.get())); in run()
|
/external/llvm-project/llvm/test/Other/X86/ |
D | lto-hot-cold-split.ll | 2 …o-action=run %t.bc -debug-pass=Structure 2>&1 | FileCheck %s -check-prefix=OLDPM-ANYLTO-POSTLINK-Os 3 …d-split=true %t.bc -debug-pass=Structure 2>&1 | FileCheck %s -check-prefix=OLDPM-ANYLTO-POSTLINK-Os 10 ; OLDPM-ANYLTO-POSTLINK-Os: Hot Cold Splitting
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/net/ |
D | SocketFacade.java | 22 import android.system.Os; 276 Os.shutdown(fd, 2); in shutdownFileDescriptor() 508 FileDescriptor fd = Os.socket(domain, type, 0); in openSocket() 510 Os.bind(fd, localAddr, port.intValue()); in openSocket() 529 Os.close(fd); in closeSocket() 552 int bytes = Os.sendto(fd, data, 0, data.length, 0, remote, remotePort.intValue()); in sendDataOverSocket() 571 Os.read(fd, data, 0, data.length); in recvDataOverSocket() 589 Os.listen(fd, 10); in listenSocket() 609 Os.connect(fd, remoteAddr, port.intValue()); in connectSocket() 626 FileDescriptor socket = Os.accept(fd, null); in acceptSocket()
|
/external/llvm/test/Transforms/Inline/ |
D | inline-optsize.ll | 3 ; RUN: opt -S -Os < %s | FileCheck %s -check-prefix=OS 6 ; the same as the global inline threshold for -Os. Check that the optsize 28 ; @inner() should be inlined for -O2 and -Os but not for -Oz. 37 ; @inner() should not be inlined for -O2, -Os and -Oz.
|
/external/llvm-project/llvm/test/Transforms/Inline/ |
D | inline-optsize.ll | 3 ; RUN: opt -S -Os < %s | FileCheck %s -check-prefix=OS 6 ; the same as the global inline threshold for -Os. Check that the optsize 29 ; @inner() should be inlined for -O2 and -Os but not for -Oz. 38 ; @inner() should not be inlined for -O2, -Os and -Oz.
|
/external/llvm-project/llvm/test/Transforms/LoopUnroll/ |
D | opt-levels.ll | 3 …-passes="default<Os>" -unroll-runtime=true -unroll-threshold-default=0 -unroll-threshold-aggressiv… 6 ; Check that Os and Oz are optimized like O2, not like O3. To easily highlight 12 ; Os-NOT: loop2.preheader
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | PaddingChecker.cpp | 281 llvm::raw_svector_ostream Os(Buf); in reportRecord() local 283 Os << "Excessive padding in '"; in reportRecord() 284 Os << QualType::getAsString(RD->getTypeForDecl(), Qualifiers()) << "'"; in reportRecord() 292 Os << " instantiated here: " in reportRecord() 296 Os << " (" << BaselinePad.getQuantity() << " padding bytes, where " in reportRecord() 303 auto Report = llvm::make_unique<BugReport>(*PaddingBug, Os.str(), CELoc); in reportRecord()
|