/external/python/cpython3/Doc/library/ |
D | xml.rst | 68 external entity expansion Safe (4) Safe (1) Safe (2) Safe (4) Saf… 69 `DTD`_ retrieval Safe (4) Safe Safe Safe (4) Safe 70 decompression bomb Safe Safe Safe Safe **V…
|
/external/python/cpython2/Doc/library/ |
D | xml.rst | 64 external entity expansion **Vulnerable** Safe (1) Safe (2) **Vulnerable** Saf… 65 `DTD`_ retrieval **Vulnerable** Safe Safe **Vulnerable** Safe 66 decompression bomb Safe Safe Safe Safe **V…
|
/external/swiftshader/third_party/LLVM/tools/bugpoint/ |
D | Miscompilation.cpp | 692 static bool TestOptimizer(BugDriver &BD, Module *Test, Module *Safe, in TestOptimizer() argument 704 Module *New = TestMergedProgram(BD, Optimized, Safe, true, Error, Broken); in TestOptimizer() 761 Module *Safe) { in CleanupAndPrepareModules() argument 771 if (Function *oldMain = Safe->getFunction("main")) in CleanupAndPrepareModules() 794 BasicBlock *BB = BasicBlock::Create(Safe->getContext(), "entry", newMain); in CleanupAndPrepareModules() 798 ReturnInst::Create(Safe->getContext(), call, BB); in CleanupAndPrepareModules() 809 Safe->getOrInsertFunction("getPointerToNamedFunction", in CleanupAndPrepareModules() 810 Type::getInt8PtrTy(Safe->getContext()), in CleanupAndPrepareModules() 811 Type::getInt8PtrTy(Safe->getContext()), in CleanupAndPrepareModules() 815 for (Module::iterator F = Safe->begin(), E = Safe->end(); F != E; ++F) { in CleanupAndPrepareModules() [all …]
|
/external/llvm/tools/bugpoint/ |
D | Miscompilation.cpp | 695 std::unique_ptr<Module> Safe, std::string &Error) { in TestOptimizer() argument 713 BD, std::move(Optimized), std::move(Safe), Error, Broken); in TestOptimizer() 767 Module *Safe) { in CleanupAndPrepareModules() argument 777 if (Function *oldMain = Safe->getFunction("main")) in CleanupAndPrepareModules() 800 BasicBlock *BB = BasicBlock::Create(Safe->getContext(), "entry", newMain); in CleanupAndPrepareModules() 804 ReturnInst::Create(Safe->getContext(), call, BB); in CleanupAndPrepareModules() 815 Safe->getOrInsertFunction("getPointerToNamedFunction", in CleanupAndPrepareModules() 816 Type::getInt8PtrTy(Safe->getContext()), in CleanupAndPrepareModules() 817 Type::getInt8PtrTy(Safe->getContext()), in CleanupAndPrepareModules() 821 for (Module::iterator F = Safe->begin(), E = Safe->end(); F != E; ++F) { in CleanupAndPrepareModules() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/ |
D | Miscompilation.cpp | 700 std::unique_ptr<Module> Safe) { in TestOptimizer() argument 719 auto Result = testMergedProgram(BD, *Optimized, *Safe, Broken); in TestOptimizer() 781 Module *Safe) { in CleanupAndPrepareModules() argument 792 if (Function *oldMain = Safe->getFunction("main")) in CleanupAndPrepareModules() 816 BasicBlock *BB = BasicBlock::Create(Safe->getContext(), "entry", newMain); in CleanupAndPrepareModules() 820 ReturnInst::Create(Safe->getContext(), call, BB); in CleanupAndPrepareModules() 830 Constant *resolverFunc = Safe->getOrInsertFunction( in CleanupAndPrepareModules() 831 "getPointerToNamedFunction", Type::getInt8PtrTy(Safe->getContext()), in CleanupAndPrepareModules() 832 Type::getInt8PtrTy(Safe->getContext())); in CleanupAndPrepareModules() 835 for (Module::iterator F = Safe->begin(), E = Safe->end(); F != E; ++F) { in CleanupAndPrepareModules() [all …]
|
/external/libchrome/third_party/markupsafe/ |
D | README.chromium | 1 Name: MarkupSafe Python Safe String Class 10 Safe string class, used by Jinja2 template engine.
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | GVNHoist.cpp | 598 SmallVectorImpl<CHIArg> &Safe) { in checkSafety() argument 606 Safe.push_back(CHI); in checkSafety() 610 Safe.push_back(CHI); in checkSafety() 715 SmallVector<CHIArg, 2> Safe; in findHoistableCandidates() local 720 checkSafety(make_range(PrevIt, PHIIt), BB, K, Safe); in findHoistableCandidates() 723 if (valueAnticipable(make_range(Safe.begin(), Safe.end()), TI)) { in findHoistableCandidates() 726 for (auto B : Safe) in findHoistableCandidates()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
D | ArgumentPromotion.cpp | 276 std::set<ArgPromotion::IndicesVector> &Safe) { in MarkIndicesSafe() argument 278 Low = Safe.upper_bound(ToMark); in MarkIndicesSafe() 280 if (Low != Safe.begin()) in MarkIndicesSafe() 285 if (Low != Safe.end()) { in MarkIndicesSafe() 295 Low = Safe.insert(Low, ToMark); in MarkIndicesSafe() 298 std::set<ArgPromotion::IndicesVector>::iterator End = Safe.end(); in MarkIndicesSafe() 302 Safe.erase(Remove); in MarkIndicesSafe()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | machine-outliner-bad-register.mir | 10 ; No problematic register appears at all. Safe for outlining. 13 ; A problematic register is live, but after the candidate. Safe for outlining. 17 ; entry to the candidate. Safe for outlining.
|
D | O0-pipeline.ll | 32 ; CHECK-NEXT: Safe Stack instrumentation pass
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | ArgumentPromotion.cpp | 529 std::set<IndicesVector> &Safe) { in markIndicesSafe() argument 531 Low = Safe.upper_bound(ToMark); in markIndicesSafe() 533 if (Low != Safe.begin()) in markIndicesSafe() 538 if (Low != Safe.end()) { in markIndicesSafe() 548 Low = Safe.insert(Low, ToMark); in markIndicesSafe() 551 std::set<IndicesVector>::iterator End = Safe.end(); in markIndicesSafe() 555 Safe.erase(Remove); in markIndicesSafe()
|
/external/llvm/lib/Transforms/IPO/ |
D | ArgumentPromotion.cpp | 423 std::set<IndicesVector> &Safe) { in MarkIndicesSafe() argument 425 Low = Safe.upper_bound(ToMark); in MarkIndicesSafe() 427 if (Low != Safe.begin()) in MarkIndicesSafe() 432 if (Low != Safe.end()) { in MarkIndicesSafe() 442 Low = Safe.insert(Low, ToMark); in MarkIndicesSafe() 445 std::set<IndicesVector>::iterator End = Safe.end(); in MarkIndicesSafe() 449 Safe.erase(Remove); in MarkIndicesSafe()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | LoadStoreVectorizer.cpp | 304 bool Safe = false; in isConsecutiveAccess() local 311 Safe = cast<BinaryOperator>(OpB)->hasNoSignedWrap(); in isConsecutiveAccess() 313 Safe = cast<BinaryOperator>(OpB)->hasNoUnsignedWrap(); in isConsecutiveAccess() 321 if (!Safe) { in isConsecutiveAccess() 327 Safe = true; in isConsecutiveAccess() 330 if (!Safe) in isConsecutiveAccess()
|
/external/tensorflow/tensorflow/lite/models/testdata/ |
D | smartreply_samples.tsv | 11 have a safe flight Thanks, love you too Safe travels 32 safe travels. Thanks, love you too Safe travels
|
/external/llvm/test/Transforms/SafeStack/ |
D | byval.ll | 9 ; Safe access to a byval argument.
|
/external/llvm/lib/CodeGen/ |
D | SafeStack.cpp | 236 bool Safe = AllocaRange.contains(AccessRange); in IsAccessSafe() local 247 << " " << (Safe ? "safe" : "unsafe") << "\n"); in IsAccessSafe() 249 return Safe; in IsAccessSafe()
|
D | MachineLICM.cpp | 502 bool Safe = true; in HoistRegionPostRA() local 512 Safe = false; in HoistRegionPostRA() 516 if (Safe) in HoistRegionPostRA()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/ |
D | LoadStoreVectorizer.cpp | 416 bool Safe = false; in lookThroughComplexAddresses() local 423 Safe = cast<BinaryOperator>(OpB)->hasNoSignedWrap(); in lookThroughComplexAddresses() 425 Safe = cast<BinaryOperator>(OpB)->hasNoUnsignedWrap(); in lookThroughComplexAddresses() 434 if (!Safe) { in lookThroughComplexAddresses()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | SafeStack.cpp | 243 bool Safe = AllocaRange.contains(AccessRange); in IsAccessSafe() local 255 << " " << (Safe ? "safe" : "unsafe") << "\n"); in IsAccessSafe() 257 return Safe; in IsAccessSafe()
|
/external/openssh/ |
D | moduli.0 | 27 2 "Safe" prime; (p-1)/2 is also prime.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | O0-pipeline.ll | 33 ; CHECK-NEXT: Safe Stack instrumentation pass
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/SafeStack/X86/ |
D | byval.ll | 9 ; Safe access to a byval argument.
|
/external/icu/icu4c/source/config/ |
D | mh-beos | 14 # Safe optimizations
|
/external/linux-kselftest/tools/testing/selftests/powerpc/math/ |
D | vmx_asm.S | 88 # Safe from C
|
/external/clang/include/clang/Basic/ |
D | Sanitizers.def | 95 // Safe Stack
|