Lines Matching defs:row
84 * row-based matchfinder. Unless the cdict is reloaded, we will use
210 /* Returns true if the strategy supports using a row based matchfinder */
215 /* Returns true if the strategy and useRowMatchFinder mode indicate that we will use the row based matchfinder
223 /* Returns row matchfinder usage given an initial mode and cParams */
231 if (mode != ZSTD_ps_auto) return mode; /* if requested enabled, but no SIMD, we still will use row matchfinder */
255 * We do not allocate a chaintable if we are using ZSTD_fast, or are using the row-based matchfinder.
1353 /* chain table size should be 0 for fast or row-hash strategies */
1453 /* Pick bigger of not using and using row-based matchfinder for greedy and lazy strategies */
1515 /* Pick bigger of not using and using row-based matchfinder for greedy and lazy strategies */
1650 /* disable chain table allocation for fast or row-based strategies */
2697 DEBUGLOG(4, "Selecting a row-based matchfinder");
4180 DEBUGLOG(4, "Using row-based hash table for lazy dict");
4647 * in case we are using DDS with row-hash. */
4881 /* enableDedicatedDictSearch == 1 ensures matchstate is not too small in case this CDict will be used for DDS + row hash */
6076 int row;
6079 /* row */
6080 if (compressionLevel == 0) row = ZSTD_CLEVEL_DEFAULT; /* 0 == default */
6081 else if (compressionLevel < 0) row = 0; /* entry 0 is baseline for fast mode */
6082 else if (compressionLevel > ZSTD_MAX_CLEVEL) row = ZSTD_MAX_CLEVEL;
6083 else row = compressionLevel;
6085 { ZSTD_compressionParameters cp = ZSTD_defaultCParameters[tableID][row];
6086 DEBUGLOG(5, "ZSTD_getCParams_internal selected tableID: %u row: %u strat: %u", tableID, row, (U32)cp.strategy);