| /linux-6.15/lib/zstd/compress/ |
| H A D | zstd_compress_literals.c | 116 ZSTD_minLiteralsToCompress(ZSTD_strategy strategy, HUF_repeat huf_repeat) in ZSTD_minLiteralsToCompress() argument 118 assert((int)strategy >= 0); in ZSTD_minLiteralsToCompress() 119 assert((int)strategy <= 9); in ZSTD_minLiteralsToCompress() 123 { int const shift = MIN(9-(int)strategy, 3); in ZSTD_minLiteralsToCompress() 136 ZSTD_strategy strategy, in ZSTD_compressLiterals() argument 159 if (srcSize < ZSTD_minLiteralsToCompress(strategy, prevHuf->repeatMode)) in ZSTD_compressLiterals() 166 | (strategy < ZSTD_lazy && srcSize <= 1024 ? HUF_flags_preferRepeat : 0) in ZSTD_compressLiterals() 167 | (strategy >= HUF_OPTIMAL_DEPTH_THRESHOLD ? HUF_flags_optimalDepth : 0) in ZSTD_compressLiterals() 188 { size_t const minGain = ZSTD_minGain(srcSize, strategy); in ZSTD_compressLiterals()
|
| H A D | zstd_ldm.c | 150 assert(1 <= (int)cParams->strategy && (int)cParams->strategy <= 9); in ZSTD_ldm_adjustParameters() 152 params->hashRateLog = 7 - (cParams->strategy/3); in ZSTD_ldm_adjustParameters() 160 if (cParams->strategy >= ZSTD_btultra) in ZSTD_ldm_adjustParameters() 164 assert(1 <= (int)cParams->strategy && (int)cParams->strategy <= 9); in ZSTD_ldm_adjustParameters() 165 …params->bucketSizeLog = BOUNDED(LDM_BUCKET_SIZE_LOG, (U32)cParams->strategy, ZSTD_LDM_BUCKETSIZELO… in ZSTD_ldm_adjustParameters() 257 switch(ms->cParams.strategy) in ZSTD_ldm_fillFastTables() 690 … ZSTD_selectBlockCompressor(cParams->strategy, useRowMatchFinder, ZSTD_matchState_dictMode(ms)); in ZSTD_ldm_blockCompress() 699 if (cParams->strategy >= ZSTD_btopt) { in ZSTD_ldm_blockCompress()
|
| H A D | zstd_compress.c | 217 return (strategy >= ZSTD_greedy && strategy <= ZSTD_lazy2); in ZSTD_rowMatchFinderSupported() 295 return cParams->strategy == ZSTD_fast || cParams->strategy == ZSTD_dfast; in ZSTD_CDictIndicesAreTagged() 1441 cPar.strategy = ZSTD_lazy; in ZSTD_adjustCParams_internal() 1570 if (overrides->strategy) cParams->strategy = overrides->strategy; in ZSTD_overrideCParams() 1841 assert(cParams1.strategy == cParams2.strategy); in ZSTD_assertEqualCParams() 2279 assert(cctx->appliedParams.cParams.strategy == adjusted_cdict_cParams.strategy); in ZSTD_resetCCtx_byAttachingCDict() 2349 assert(cctx->appliedParams.cParams.strategy == cdict_cParams->strategy); in ZSTD_resetCCtx_byCopyingCDict() 2812 ZSTD_strategy const strategy = cctxParams->cParams.strategy; in ZSTD_entropyCompressSeqStore_internal() local 3681 ZSTD_strategy const strategy = cctxParams->cParams.strategy; in ZSTD_buildBlockEntropyStats_sequences() local 7471 switch (cParams.strategy) { in ZSTD_dedicatedDictSearch_getCParams() [all …]
|
| H A D | zstd_compress_literals.h | 36 ZSTD_strategy strategy, int disableLiteralCompression,
|
| H A D | zstd_compress_sequences.h | 31 ZSTD_strategy const strategy);
|
| H A D | zstd_compress_sequences.c | 164 ZSTD_strategy const strategy) in ZSTD_selectEncodingType() argument 180 if (strategy < ZSTD_lazy) { in ZSTD_selectEncodingType() 183 size_t const mult = 10 - strategy; in ZSTD_selectEncodingType()
|
| /linux-6.15/tools/lib/bpf/ |
| H A D | hashmap.c | 155 enum hashmap_insert_strategy strategy, in hashmap_insert() argument 168 if (strategy != HASHMAP_APPEND && in hashmap_insert() 175 if (strategy == HASHMAP_SET || strategy == HASHMAP_UPDATE) { in hashmap_insert() 179 } else if (strategy == HASHMAP_ADD) { in hashmap_insert() 184 if (strategy == HASHMAP_UPDATE) in hashmap_insert()
|
| H A D | hashmap.h | 130 enum hashmap_insert_strategy strategy, 133 #define hashmap__insert(map, key, value, strategy, old_key, old_value) \ argument 134 hashmap_insert((map), (long)(key), (long)(value), (strategy), \
|
| /linux-6.15/tools/perf/util/ |
| H A D | hashmap.c | 155 enum hashmap_insert_strategy strategy, in hashmap_insert() argument 168 if (strategy != HASHMAP_APPEND && in hashmap_insert() 175 if (strategy == HASHMAP_SET || strategy == HASHMAP_UPDATE) { in hashmap_insert() 179 } else if (strategy == HASHMAP_ADD) { in hashmap_insert() 184 if (strategy == HASHMAP_UPDATE) in hashmap_insert()
|
| H A D | hashmap.h | 130 enum hashmap_insert_strategy strategy, 133 #define hashmap__insert(map, key, value, strategy, old_key, old_value) \ argument 134 hashmap_insert((map), (long)(key), (long)(value), (strategy), \
|
| /linux-6.15/tools/testing/selftests/net/tcp_ao/ |
| H A D | unsigned-md5.c | 368 unsigned int strategy, in open_add() argument 384 if (strategy & PREINSTALL_MD5_FIRST) { in open_add() 389 if (strategy & PREINSTALL_AO) { in open_add() 399 if (strategy & PREINSTALL_MD5) { in open_add() 412 unsigned int strategy, in try_to_preadd() argument 427 sk = open_add(tst_name, port, strategy, md5_addr, md5_prefix, md5_vrf, in try_to_preadd() 438 unsigned int strategy, in try_to_add() argument 450 sk = open_add(tst_name, port, strategy, md5_addr, md5_prefix, md5_vrf, in try_to_add() 465 if (strategy & POSTINSTALL_MD5) { in try_to_add() 479 if (strategy & POSTINSTALL_AO) { in try_to_add()
|
| /linux-6.15/lib/zlib_dfltcc/ |
| H A D | dfltcc_util.h | 120 int strategy, in dfltcc_are_params_ok() argument 126 (strategy == Z_DEFAULT_STRATEGY); in dfltcc_are_params_ok()
|
| /linux-6.15/lib/zlib_deflate/ |
| H A D | deflate.c | 191 int strategy in zlib_deflateInit2() argument 218 strategy < 0 || strategy > Z_HUFFMAN_ONLY) { in zlib_deflateInit2() 272 s->strategy = strategy; in zlib_deflateInit2() 956 if (s->strategy != Z_HUFFMAN_ONLY) { in deflate_fast() 1054 if (s->strategy != Z_HUFFMAN_ONLY) { in deflate_slow() 1059 if (s->match_length <= 5 && (s->strategy == Z_FILTERED || in deflate_slow()
|
| /linux-6.15/Documentation/admin-guide/pm/ |
| H A D | strategies.rst | 22 is affected by the state changes, this strategy is referred to as the 25 The other strategy, referred to as the :doc:`working-state power management 28 this strategy is in use, the working state of the system usually does not
|
| /linux-6.15/Documentation/networking/ |
| H A D | ipvs-sysctl.rst | 21 enough available memory, the respective strategy will be 23 the strategy is disabled and the variable is set to 1. 112 that this strategy is always disabled, 1 and 2 mean automatic 113 modes (when there is no enough available memory, the strategy 115 otherwise the strategy is disabled and the variable is set to 116 1), and 3 means that the strategy is always enabled.
|
| /linux-6.15/Documentation/firmware-guide/acpi/ |
| H A D | osi.rst | 95 That is the *only* viable strategy, as that is what modern Windows does, 124 This strategy is problematic, as Linux is never completely compatible with 140 The result is a strategy for Linux to maximize compatibility with 172 Like Linux's _OSI("*Windows*") strategy, Linux defaults to 175 Just like on Windows-tested platforms, this strategy has risks.
|
| /linux-6.15/arch/arm/boot/dts/nxp/lpc/ |
| H A D | lpc4357.dtsi | 6 * This code is released using a dual license strategy: BSD/GPL
|
| H A D | lpc4350.dtsi | 6 * This code is released using a dual license strategy: BSD/GPL
|
| H A D | lpc4337-ciaa.dts | 6 * This code is released using a dual license strategy: BSD/GPL
|
| /linux-6.15/Documentation/ABI/testing/ |
| H A D | sysfs-fs-erofs | 13 Description: Control strategy of sync decompression:
|
| H A D | sysfs-driver-uacce | 27 isolation strategy. This size is a configured integer value, which is the
|
| /linux-6.15/include/linux/ |
| H A D | zlib.h | 588 int strategy);
|
| /linux-6.15/Documentation/admin-guide/hw-vuln/ |
| H A D | reg-file-data-sampling.rst | 36 mitigation strategy to force the CPU to clear the affected buffers before an
|
| /linux-6.15/fs/ubifs/ |
| H A D | Kconfig | 61 so be careful. How often atime is updated depends on the selected strategy:
|
| /linux-6.15/lib/zstd/ |
| H A D | zstd_compress_module.c | 48 cctx, ZSTD_c_strategy, parameters->cParams.strategy)); in zstd_cctx_init()
|