/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/t/ |
H A D | safe.t | 11 unless (eval { require Safe; 1 }) { 12 plan skip_all => 'Safe.pm is required for this test'; 32 my $c = Safe->new or die; 49 # (4) Safe and non-safe fills of different template objects with the 58 # (5) Safe and non-safe fills of the same template object 114 $text2 = $template1->fill_in(SAFE => Safe->new); 132 SAFE => Safe->new);
|
H A D | safe2.t | 10 unless (eval { require Safe; 1 }) { 11 plan skip_all => 'Safe.pm is required for this test'; 19 my $c = Safe->new or die;
|
/third_party/openssl/external/perl/Text-Template-1.56/t/ |
H A D | safe.t | 11 unless (eval { require Safe; 1 }) { 12 plan skip_all => 'Safe.pm is required for this test'; 32 my $c = Safe->new or die; 49 # (4) Safe and non-safe fills of different template objects with the 58 # (5) Safe and non-safe fills of the same template object 114 $text2 = $template1->fill_in(SAFE => Safe->new); 132 SAFE => Safe->new);
|
H A D | safe2.t | 10 unless (eval { require Safe; 1 }) { 11 plan skip_all => 'Safe.pm is required for this test'; 19 my $c = Safe->new or die;
|
/third_party/node/deps/v8/src/compiler/ |
H A D | map-inference.cc | 29 MapInference::~MapInference() { CHECK(Safe()); } in ~MapInference() 31 bool MapInference::Safe() const { return maps_state_ != kUnreliableNeedGuard; } in Safe() function in v8::internal::compiler::MapInference 123 if (Safe()) return false; in RelyOnMapsPreferStability() 133 if (Safe()) return true; in RelyOnMapsHelper()
|
H A D | map-inference.h | 93 bool Safe() const;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | GVNHoist.cpp | 596 // [Begin, End) and accumulate them in Safe. 598 SmallVectorImpl<CHIArg> &Safe) { in checkSafety() 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() local 723 if (valueAnticipable(make_range(Safe.begin(), Safe.end()), TI)) { in findHoistableCandidates() 726 for (auto B : Safe) in findHoistableCandidates() 597 checkSafety(CHIArgs C, BasicBlock *BB, InsKind K, SmallVectorImpl<CHIArg> &Safe) checkSafety() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | ArgumentPromotion.cpp | 531 /// (Safe). Marking safe usually means adding ToMark to Safe. However, if there 532 /// is already a prefix of Indices in Safe, Indices are implicitely marked safe 534 /// removed from Safe (since they are implicitely safe because of Indices now). 536 std::set<IndicesVector> &Safe) { in markIndicesSafe() 538 Low = Safe.upper_bound(ToMark); in markIndicesSafe() 539 // Guard against the case where Safe is empty in markIndicesSafe() 540 if (Low != Safe.begin()) in markIndicesSafe() 545 if (Low != Safe.end()) { in markIndicesSafe() 555 Low = Safe in markIndicesSafe() 535 markIndicesSafe(const IndicesVector &ToMark, std::set<IndicesVector> &Safe) markIndicesSafe() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | LoopAccessAnalysis.h | 72 /// Safe: tmp = a[i + 1]; OR a[i + 1] = x; 88 /// Safe distance: 2 x sizeof(a[0]), and 2 x sizeof(b[0]), respectively. 105 Safe, member in llvm::MemoryDepChecker::VectorizationSafetyStatus 180 Status(VectorizationSafetyStatus::Safe), RecordDependences(true) {} in MemoryDepChecker() 209 return Status == VectorizationSafetyStatus::Safe; in isSafeForVectorization() 326 /// Updates the current safety status with \p S. We can go from Safe to
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | SafeStack.cpp | 1 //===- SafeStack.cpp - Safe Stack Insertion -------------------------------===// 243 bool Safe = AllocaRange.contains(AccessRange); in IsAccessSafe() local 255 << " " << (Safe ? "safe" : "unsafe") << "\n"); in IsAccessSafe() 257 return Safe; in IsAccessSafe() 813 // Safe stack object that stores the current unsafe stack top. It is updated in run() 898 "Safe Stack instrumentation pass", false, false) 901 "Safe Stack instrumentation pass", false, false)
|
H A D | MachineLICM.cpp | 587 bool Safe = true; in HoistRegionPostRA() local 597 Safe = false; in HoistRegionPostRA() 601 if (Safe) in HoistRegionPostRA()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
H A D | LoadStoreVectorizer.cpp | 449 bool Safe = false; in lookThroughComplexAddresses() 456 Safe = cast<BinaryOperator>(OpB)->hasNoSignedWrap(); in lookThroughComplexAddresses() 458 Safe = cast<BinaryOperator>(OpB)->hasNoUnsignedWrap(); in lookThroughComplexAddresses() 467 if (!Safe) { in lookThroughComplexAddresses()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceTargetLoweringARM32.cpp | 3805 SafeBoolChain Safe = lowerInt1(T_Lo, Src0); 3806 if (Safe == SBC_No) { 3822 SafeBoolChain Safe = lowerInt1(T, Src0); 3823 if (Safe == SBC_No) { 6523 SafeBoolChain Safe = SBC_Yes; 6560 Safe = SBC_No; 6564 Safe = lowerInt1Arithmetic(ArithProducer); 6573 return Safe;
|
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 652 # Evaluate program fragments in Safe compartment with restricted permissions 1350 compartment object from the C<Safe> package. All evaluation of 1351 program fragments will be performed in this compartment. See L<Safe> 1367 root namespace of the C<Safe> compartment. 1559 Nevertheless, there's really no way (except with C<Safe>) to protect 2311 for telling me how to do the C<Safe> support (I spent two years
|
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 652 # Evaluate program fragments in Safe compartment with restricted permissions 1350 compartment object from the C<Safe> package. All evaluation of 1351 program fragments will be performed in this compartment. See L<Safe> 1367 root namespace of the C<Safe> compartment. 1559 Nevertheless, there's really no way (except with C<Safe>) to protect 2311 for telling me how to do the C<Safe> support (I spent two years
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | LoopAccessAnalysis.cpp | 1242 return VectorizationSafetyStatus::Safe; in isSafeForVectorization()
|
/third_party/node/deps/brotli/c/dec/ |
H A D | decode.c | 1725 if (!Safe##METHOD) { \
|
/third_party/skia/third_party/externals/brotli/c/dec/ |
H A D | decode.c | 1725 if (!Safe##METHOD) { \
|