| /freebsd-src/crypto/openssh/regress/unittests/test_helper/ |
| H A D | fuzz.c | 61 int strategy; member 108 switch (fuzz->strategy) { in fuzz_fmt() 111 fuzz_ntop(fuzz->strategy), in fuzz_fmt() 116 fuzz_ntop(fuzz->strategy), in fuzz_fmt() 123 fuzz_ntop(fuzz->strategy), in fuzz_fmt() 128 fuzz_ntop(fuzz->strategy), in fuzz_fmt() 135 fuzz_ntop(fuzz->strategy), in fuzz_fmt() 140 fuzz_ntop(fuzz->strategy), in fuzz_fmt() 146 fuzz_ntop(fuzz->strategy), in fuzz_fmt() 263 FUZZ_DBG(("fuzz = %p, strategy = %s, o1 = %zu, o2 = %zu, slen = %zu", in fuzz_strategy_done() [all …]
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | DomTreeUpdater.h | 54 /// explicitly call Flush APIs. It is recommended to use this update strategy in isEager() 224 const UpdateStrategy Strategy; global() variable
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/FuzzMutate/ |
| H A D | IRMutator.h | 39 /// Provide a weight to bias towards choosing this strategy for a mutation. 42 /// distinct ways in which this strategy can mutate a unit". This can also be 55 llvm_unreachable("Strategy does not implement any mutators"); in mutate() 80 /// Mutate given module. No change will be made if no strategy is selected. 88 /// Strategy that injects operations into the function. 111 /// Strategy that deletes instructions when the Module is too large. 122 /// Strategy that modifies instruction attributes and operands. 134 /// Strategy that generates new function calls and inserts function signatures 148 /// Strategy to split a random block and insert a random CFG in between. 168 /// Strategy to insert PHI Nodes at the head of each basic block. [all …]
|
| /freebsd-src/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | UnsafeBufferUsage.cpp | 536 /// the current strategy. Returns std::nullopt if the fix cannot be produced; in getBaseStmt() 1615 // TLDR: Implementing fixits for non-Wontfix strategy on both LHS and RHS is in getPointeeTypeText() 1618 // CArrayToPtrAssignmentGadget doesn't have strategy implications because in getPointeeTypeText() 1626 // variable on RHS is fixed by a different fixit and its strategy for LHS in getPointeeTypeText() 1629 // The only exception is Wontfix strategy for a given variable as that is in getPointeeTypeText() 2045 llvm_unreachable("Invalid strategy!"); 2806 llvm_unreachable("Invalid strategy!"); in checkUnsafeBufferUsage() 2808 llvm_unreachable("Unknown strategy!"); in checkUnsafeBufferUsage() 3298 // fixed. Other variables have the default "Won't fix" strategy. 985 class Strategy { global() class
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Threading.h | 132 /// Retrieves the max available threads for the current strategy. This 147 /// Build a strategy from a number of threads as a string provided in \p Num. 149 /// strategy, we attempt to equally allocate the threads on all CPU sockets. 150 /// "0" or an empty string will return the \p Default strategy. 155 /// Returns a thread strategy for tasks requiring significant memory or other 157 /// be less efficient. Avoid this strategy if doing lots of I/O. Currently 169 /// Like heavyweight_hardware_concurrency() above, but builds a strategy 171 /// If \p Num is invalid, returns a default strategy where one thread per 181 /// Returns a default thread strategy where all available hardware resources 191 /// Returns an optimal thread strategy to execute specified amount of tasks. [all …]
|
| H A D | Parallel.h | 27 // Strategy for the default executor used by the parallel routines provided by 30 extern ThreadPoolStrategy strategy; 34 if (parallel::strategy.ThreadsRequested == 1) \ 220 if (parallel::strategy.ThreadsRequested != 1) { 241 if (parallel::strategy.ThreadsRequested != 1) { in parallelTransformReduce()
|
| /freebsd-src/contrib/libarchive/libarchive/ |
| H A D | archive_entry_link_resolver.c | 60 /* Users pass us a format code, we translate that into a strategy here. */ 83 int strategy; member 130 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_OLD_CPIO; in archive_entry_linkresolver_set_strategy() 136 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_NEW_CPIO; in archive_entry_linkresolver_set_strategy() 139 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_OLD_CPIO; in archive_entry_linkresolver_set_strategy() 144 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_MTREE; in archive_entry_linkresolver_set_strategy() 150 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_TAR; in archive_entry_linkresolver_set_strategy() 153 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_OLD_CPIO; in archive_entry_linkresolver_set_strategy() 199 switch (res->strategy) { in archive_entry_linkify()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | DomTreeUpdater.cpp | 61 if (Strategy == UpdateStrategy::Lazy) { in applyDomTreeUpdates() 74 if (Strategy == UpdateStrategy::Lazy) { in flush()
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | GCStrategy.h | 86 /// Return the name of the GC strategy. This is the value of the collector 87 /// name string specified on functions which use this strategy. 90 /// Returns true if this strategy is expecting the use of gc.statepoints, 109 "GC strategy has useRS4GC but not useStatepoints set"); in useRS4GC() 137 /// "my custom supper fancy gc strategy");
|
| /freebsd-src/share/man/man9/ |
| H A D | physio.9 | 57 .Fn strategy 59 .Fn strategy 104 will return any error resulting from calls to the device strategy routine,
|
| /freebsd-src/share/doc/psd/03.iosys/ |
| H A D | iosys | 802 This bit is set when the buffer is handed to the device strategy routine 813 to 0 when a block is handed to the device strategy 929 .I strategy 936 The role of the strategy routine 965 to the strategy routines 974 uses the strategy routine 1001 the strategy routines are never 1016 strategy module has finished with the buffer, 1047 and call the device's strategy routine. 1059 the strategy module; [all …]
|
| /freebsd-src/contrib/llvm-project/llvm/lib/IR/ |
| H A D | BuiltinGCs.cpp | 46 /// A GC strategy for uncooperative targets. This implements lowering for the 60 /// lowering strategy. This GCStrategy is intended to suitable as a default 88 /// A GCStrategy for the CoreCLR Runtime. The strategy is similar to 128 "an example strategy for statepoint");
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ |
| H A D | ResourceManager.h | 11 /// strategy. These classes are managed by the Scheduler. 46 /// Resource allocation strategy used by hardware scheduler resources. 61 /// The default strategy uses this information to bias its selection logic. 65 /// Default resource allocation strategy used by processor resource groups and 98 /// by other groups other than the one associated with this strategy object. 103 /// this group. The idea is to bias the selection strategy, so that resources 108 /// usage. Therefore, this strategy is expected to be less accurate when same 380 // Overrides the selection strategy for the processor resource with the given 389 // Overrides the selection strategy for the resource at index ResourceID in
|
| H A D | Scheduler.h | 39 /// Default instruction selection strategy used by class Scheduler. 73 // Instruction selection strategy for this Scheduler. 74 std::unique_ptr<SchedulerStrategy> Strategy; variable 131 /// Verify the given selection strategy and set the Strategy member 132 /// accordingly. If no strategy is provided, the DefaultSchedulerStrategy is
|
| /freebsd-src/sys/ddb/ |
| H A D | db_sym.c | 369 db_search_symbol(db_addr_t val, db_strategy_t strategy, db_expr_t *offp) in db_search_symbol() argument 391 sym = X_db_search_symbol(&db_symtabs[i], val, strategy, &newdiff); in db_search_symbol() 426 * After matching the symbol according to the given strategy 442 db_printsym(db_expr_t off, db_strategy_t strategy) in db_printsym() argument 454 cursym = db_search_symbol(off, strategy, &d); in db_printsym() 467 if (strategy == DB_STGY_PROC) { in db_printsym()
|
| /freebsd-src/sys/contrib/zstd/lib/compress/ |
| H A D | zstd_compress.c | 62 * full-block strategy. 220 /* Returns true if the strategy supports using a row based matchfinder */ 221 static int ZSTD_rowMatchFinderSupported(const ZSTD_strategy strategy) { in ZSTD_rowMatchFinderSupported() argument 222 return (strategy >= ZSTD_greedy && strategy <= ZSTD_lazy2); in ZSTD_rowMatchFinderSupported() 225 /* Returns true if the strategy and useRowMatchFinder mode indicate that we will use the row based … 228 static int ZSTD_rowMatchFinderUsed(const ZSTD_strategy strategy, const ZSTD_paramSwitch_e mode) { in ZSTD_rowMatchFinderUsed() argument 230 return ZSTD_rowMatchFinderSupported(strategy) && (mode == ZSTD_ps_enable); in ZSTD_rowMatchFinderUsed() 243 if (!ZSTD_rowMatchFinderSupported(cParams->strategy)) return mode; in ZSTD_resolveRowMatchFinderMode() 256 …return (cParams->strategy >= ZSTD_btopt && cParams->windowLog >= 17) ? ZSTD_ps_enable : ZSTD_ps_di… in ZSTD_resolveBlockSplitterMode() 260 static int ZSTD_allocateChainTable(const ZSTD_strategy strategy, in ZSTD_allocateChainTable() argument [all …]
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | GCNSchedStrategy.h | 1 //===-- GCNSchedStrategy.h - GCN Scheduler Strategy -*- C++ -*-------------===// 39 /// This is a minimal scheduler strategy. The main difference between this 67 // Scheduling stages for this strategy. 121 /// The goal of this scheduling strategy is to maximize kernel occupancy (i.e. 128 /// The goal of this scheduling strategy is to maximize ILP for a single wave
|
| /freebsd-src/sys/contrib/openzfs/.github/workflows/ |
| H A D | zfs-linux.yml | |
| /freebsd-src/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Parallel.cpp | 19 llvm::ThreadPoolStrategy llvm::parallel::strategy; 94 static void *call() { return new ThreadPoolExecutor(strategy); } 174 : Parallel((parallel::strategy.ThreadsRequested != 1) && in getDefaultExecutor() 205 if (parallel::strategy.ThreadsRequested != 1) { in ~TaskGroup() 20 llvm::ThreadPoolStrategy llvm::parallel::strategy; global() member in llvm::parallel
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZMachineScheduler.h | 10 // SystemZPostRASchedStrategy is a scheduling strategy which is plugged into 132 /// Tell the strategy that MBB is about to be processed. 135 /// Tell the strategy that current MBB is done.
|
| /freebsd-src/tests/sys/cddl/zfs/tests/acl/nontrivial/ |
| H A D | zfs_acl_chmod_inherit_001_pos.ksh | 37 # different inherit strategy to them. 39 # STRATEGY: 114 function verify_inherit #<object> [strategy]
|
| /freebsd-src/sys/contrib/zlib/ |
| H A D | zlib.h | 201 /* compression strategy; see deflateInit2() below for details */ 544 int strategy); 588 The strategy parameter is used to tune the compression algorithm. Use the 598 strategy parameter only affects the compression ratio but not the 686 compression state which can be quite large, so this strategy is slow and can 708 int strategy); 710 Dynamically update the compression level and compression strategy. The 711 interpretation of level and strategy is as in deflateInit2(). This can be 713 to switch to a different kind of input data requiring a different strategy. 715 strategy is changed, and if there have been any deflate() calls since the [all …]
|
| /freebsd-src/sys/contrib/zstd/zlibWrapper/ |
| H A D | gzwrite.c | 50 MAX_WBITS + 16, DEF_MEM_LEVEL, state.state->strategy); 591 int ZEXPORT gzsetparams(file, level, strategy) in gzsetparams() argument 594 int strategy; 610 if (level == state.state->level && strategy == state.state->strategy) 625 deflateParams(strm, level, strategy); 628 state.state->strategy = strategy;
|
| /freebsd-src/sys/contrib/openzfs/module/zstd/lib/compress/ |
| H A D | zstd_compress.c | 39 * full-block strategy. 589 CCtxParams->cParams.strategy = (ZSTD_strategy)value; in ZSTD_CCtxParams_setParameter() 590 return (size_t)CCtxParams->cParams.strategy; in ZSTD_CCtxParams_setParameter() 749 *value = (unsigned)CCtxParams->cParams.strategy; in ZSTD_CCtxParams_getParameter() 991 BOUNDCHECK(ZSTD_c_strategy, cParams.strategy); in ZSTD_checkCParams() 1013 CLAMP_TYPE(ZSTD_c_strategy,cParams.strategy, ZSTD_strategy); in ZSTD_clampCParams() 1053 { U32 const cycleLog = ZSTD_cycleLog(cPar.chainLog, cPar.strategy); in ZSTD_adjustCParams_internal() 1092 if (CCtxParams->cParams.strategy) cParams.strategy = CCtxParams->cParams.strategy; in ZSTD_getCParamsFromCCtxParams() 1102 … size_t const chainSize = (cParams->strategy == ZSTD_fast) ? 0 : ((size_t)1 << cParams->chainLog); in ZSTD_sizeof_matchState() 1118 size_t const optSpace = (forCCtx && (cParams->strategy >= ZSTD_btopt)) in ZSTD_sizeof_matchState() [all …]
|
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | ExpandVectorPredication.cpp | 780 TargetTransformInfo::VPLegalization Strategy; in sanitizeStrategy() 782 : PI(PI), Strategy(InitStrat) {} 784 bool isDone() const { return Strategy.shouldDoNothing(); } in getVPLegalizationStrategy() 828 // strategy. in expandVectorPredication() 846 switch (Job.Strategy.EVLParamStrategy) { in expandVectorPredication() 857 Job.Strategy.EVLParamStrategy = VPLegalization::Legal; 860 switch (Job.Strategy.OpStrategy) { in runOnFunction() 864 llvm_unreachable("Invalid strategy for operators."); in getAnalysisUsage() 870 Job.Strategy.OpStrategy = VPLegalization::Legal; 754 TargetTransformInfo::VPLegalization Strategy; global() member
|