| /openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/ |
| H A D | DomTreeUpdater.h | 32 explicit DomTreeUpdater(UpdateStrategy Strategy_) : Strategy(Strategy_) {} in DomTreeUpdater() 34 : DT(&DT_), Strategy(Strategy_) {} in DomTreeUpdater() 36 : DT(DT_), Strategy(Strategy_) {} in DomTreeUpdater() 38 : PDT(&PDT_), Strategy(Strategy_) {} in DomTreeUpdater() 40 : PDT(PDT_), Strategy(Strategy_) {} in DomTreeUpdater() 43 : DT(&DT_), PDT(&PDT_), Strategy(Strategy_) {} in DomTreeUpdater() 46 : DT(DT_), PDT(PDT_), Strategy(Strategy_) {} in DomTreeUpdater() 51 bool isLazy() const { return Strategy == UpdateStrategy::Lazy; }; in isLazy() 54 bool isEager() const { return Strategy == UpdateStrategy::Eager; }; in isEager() 224 const UpdateStrategy Strategy; variable
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | DomTreeUpdater.cpp | 60 if (Strategy != UpdateStrategy::Lazy || !DT) in applyDomTreeUpdates() 81 if (Strategy != UpdateStrategy::Lazy || !PDT) in applyPostDomTreeUpdates() 122 if (Strategy == UpdateStrategy::Eager) { in recalculate() 167 if (Strategy == UpdateStrategy::Eager || DeletedBBs.empty()) in isBBPendingDeletion() 179 if (Strategy == UpdateStrategy::Lazy) { in deleteBB() 192 if (Strategy == UpdateStrategy::Lazy) { in callbackDeleteBB() 234 if (Strategy == UpdateStrategy::Lazy) { in applyUpdates() 294 if (Strategy == UpdateStrategy::Lazy) in applyUpdatesPermissive() 318 if (Strategy == DomTreeUpdater::UpdateStrategy::Eager) in dropOutOfDateUpdates() 354 if (Strategy == UpdateStrategy::Eager) { in dump()
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | UnsafeBufferUsage.cpp | 129 class Strategy; 205 virtual std::optional<FixItList> getFixits(const Strategy &) const { in getFixits() 433 class Strategy { class 449 Strategy() = default; 450 Strategy(const Strategy &) = delete; // Let's avoid copies. 451 Strategy(Strategy &&) = default; 611 getFixIts(FixableGadgetSets &FixablesForUnsafeVars, const Strategy &S) { in getFixIts() 637 static Strategy 639 Strategy S; in getNaiveStrategy() 641 S.set(VD, Strategy::Kind::Span); in getNaiveStrategy() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | ExpandVectorPredication.cpp | 582 TargetTransformInfo::VPLegalization Strategy; member 584 : PI(PI), Strategy(InitStrat) {} in TransformJob() 586 bool isDone() const { return Strategy.shouldDoNothing(); } in isDone() 648 switch (Job.Strategy.EVLParamStrategy) { in expandVectorPredication() 659 Job.Strategy.EVLParamStrategy = VPLegalization::Legal; in expandVectorPredication() 662 switch (Job.Strategy.OpStrategy) { in expandVectorPredication() 672 Job.Strategy.OpStrategy = VPLegalization::Legal; in expandVectorPredication()
|
| H A D | MachineTraceMetrics.cpp | 383 MachineTraceMetrics::getEnsemble(MachineTraceMetrics::Strategy strategy) { in getEnsemble()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/Adapter/ |
| H A D | Deflate.pm | 32 -Strategy => $strategy, 55 -Strategy => $strategy,
|
| /openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/lib/Compress/ |
| H A D | Zlib.pm | 113 Strategy => Z_DEFAULT_STRATEGY(), 121 $defOpts{Strategy} = Z_FILTERED() if $mode =~ /f/i; 122 $defOpts{Strategy} = Z_HUFFMAN_ONLY() if $mode =~ /h/i; 287 -Strategy => $strategy); 1152 =item B<-Strategy> 1236 =item B<-Strategy>
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | X86FoldTablesEmitter.cpp | 37 UnfoldStrategy Strategy; member 40 UnfoldStrategy Strategy = NO_STRATEGY) in ManualMapEntry() 41 : RegInstStr(RegInstStr), MemInstStr(MemInstStr), Strategy(Strategy) {} in ManualMapEntry() 592 &(Target.getInstruction(MemInstIter)), Entry.Strategy); in run()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | ThreadPool.cpp | 36 : Strategy(S), MaxThreadCount(S.compute_thread_count()) {} in ThreadPool() 46 Strategy.apply_thread_strategy(ThreadID); in grow()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | MachineTraceMetrics.h | 376 enum Strategy { enum 386 Ensemble *getEnsemble(Strategy);
|
| /openbsd-src/gnu/llvm/llvm/lib/FuzzMutate/ |
| H A D | IRMutator.cpp | 72 for (const auto &Strategy : Strategies) in mutateModule() local 73 RS.sample(Strategy.get(), in mutateModule() 74 Strategy->getWeight(CurSize, MaxSize, RS.totalWeight())); in mutateModule() 75 auto Strategy = RS.getSelection(); in mutateModule() local 77 Strategy->mutate(M, IB); in mutateModule()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/t/ |
| H A D | cz-06gzsetp.t | 73 # Change both Level & Strategy 124 # Change both Level & Strategy
|
| H A D | cz-03zlib-v1.t | 727 -Strategy => Z_DEFAULT_STRATEGY) ) ; 740 #like $@, mkErr("^Compress::Raw::Zlib::deflateParams needs Level and/or Strategy"); 741 like $@, "/^Compress::Raw::Zlib::deflateParams needs Level and/or Strategy/"; 752 # change both Level & Strategy 753 $status = $x->deflateParams(-Level => Z_BEST_SPEED, -Strategy => Z_HUFFMAN_ONLY) ; 776 # change only Strategy 777 $status = $x->deflateParams(-Strategy => Z_FILTERED) ;
|
| H A D | 005defhdr.t | 151 [ {-Strategy => Z_HUFFMAN_ONLY}, { FLEVEL => ZLIB_FLG_LEVEL_FASTEST} ], 152 [ {-Strategy => Z_HUFFMAN_ONLY,
|
| /openbsd-src/gnu/llvm/llvm/lib/MCA/HardwareUnits/ |
| H A D | Scheduler.cpp | 24 Strategy = S ? std::move(S) : std::make_unique<DefaultSchedulerStrategy>(); in initializeStrategy() 197 Strategy->compare(IR, ReadySet[QueueIndex])) { in select()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | GCNIterativeScheduler.h | 77 const StrategyKind Strategy; variable
|
| H A D | GCNIterativeScheduler.cpp | 221 , Strategy(S) in GCNIterativeScheduler() 305 switch (Strategy) { in finalizeSchedule()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/t/ |
| H A D | 02zlib.t | 548 -Strategy => Z_DEFAULT_STRATEGY)) ; 561 like $@, mkErr('^Compress::Raw::Zlib::deflateParams needs Level and\/or Strategy'); 572 # change both Level & Strategy 573 $status = $x->deflateParams(-Level => Z_BEST_SPEED, -Strategy => Z_HUFFMAN_ONLY, -Bufsize => 1234) ; 579 # change both Level & Strategy again without any calls to deflate 580 $status = $x->deflateParams(-Level => Z_DEFAULT_COMPRESSION, -Strategy => Z_DEFAULT_STRATEGY, -Bufsize => 1234) ; 601 # change only Strategy 602 $status = $x->deflateParams(-Strategy => Z_FILTERED) ;
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/ |
| H A D | Zlib.xs | 302 int Strategy; 867 ret = CRZ_deflateParams(&(s->stream), s->Level, s->Strategy); in flushParams() 1094 s->Strategy = strategy; 1529 /* printf("_deflateParams(Flags %d Level %d Strategy %d Bufsize %d)\n", flags, level, strategy, bufsize); 1530 printf("Before -- Level %d, Strategy %d, Bufsize %d\n", s->Level, s->Strategy, s->bufsize); */ 1535 if (flags & 2 && strategy != s->Strategy) { 1536 s->Strategy = strategy ; 1546 RETVAL = deflateParams(&(s->stream), s->Level, s->Strategy); 1550 /* printf("Level %d Strategy 286 int Strategy; global() member [all...] |
| /openbsd-src/gnu/llvm/llvm/include/llvm/MCA/HardwareUnits/ |
| H A D | Scheduler.h | 74 std::unique_ptr<SchedulerStrategy> Strategy; variable
|
| /openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/lib/IO/Compress/ |
| H A D | RawDeflate.pm | 209 my $status = *$self->{Compress}->deflateParams(Level => $level, Strategy => $strategy) ; 700 =item -Strategy 1011 These symbolic constants are used by the C<Strategy> option in the constructor.
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | ThreadPool.h | 214 const ThreadPoolStrategy Strategy; variable
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | CodeOfConduct.rst | 177 .. _hate speech: https://www.un.org/en/genocideprevention/documents/UN%20Strategy%20and%20Plan%20of…
|
| /openbsd-src/games/cribbage/ |
| H A D | cribbage.n | 209 Strategy:
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/ns32k/ |
| H A D | ns32k.md | 544 ;; Strategy: Use define_expand to
|