Home
last modified time | relevance | path

Searched refs:step (Results 1 – 12 of 12) sorted by relevance

/lib/
Dtest_bitmap.c372 #define step (sizeof(u64) / sizeof(unsigned long)) macro
375 {0, "1", &exp1[1 * step], 8, 0},
376 {0, "0-15", &exp1[2 * step], 32, 0},
377 {0, "16-31", &exp1[3 * step], 32, 0},
378 {0, "0-31:1/2", &exp1[4 * step], 32, 0},
379 {0, "1-31:1/2", &exp1[5 * step], 32, 0},
380 {0, "0-31:1/4", &exp1[6 * step], 32, 0},
381 {0, "1-31:1/4", &exp1[7 * step], 32, 0},
382 {0, "0-31:4/4", &exp1[8 * step], 32, 0},
383 {0, "1-31:4/4", &exp1[9 * step], 32, 0},
[all …]
Dlinear_ranges.c72 return r->min + (r->max_sel - r->min_sel) * r->step; in linear_range_get_max_value()
93 *val = r->min + (selector - r->min_sel) * r->step; in linear_range_get_value()
154 if (r->step == 0) in linear_range_get_selector_low()
157 *selector = (val - r->min) / r->step + r->min_sel; in linear_range_get_selector_low()
235 if (r->step == 0) in linear_range_get_selector_high()
238 *selector = DIV_ROUND_UP(val - r->min, r->step) + r->min_sel; in linear_range_get_selector_high()
268 if (r->step == 0) in linear_range_get_selector_within()
271 *selector = (val - r->min) / r->step + r->min_sel; in linear_range_get_selector_within()
Dtest_rhashtable.c618 int i, step, err = 0, insert_retries = 0; in threadfunc() local
651 for (step = 10; step > 0; step--) { in threadfunc()
652 for (i = 0; i < tdata->entries; i += step) { in threadfunc()
DKconfig.kgdb88 exception handler which will allow kgdb to step through a
113 0x0040 - allow flow control management (breakpoint, single step)
Dvsprintf.c1314 int step; in ip4_string() local
1320 step = 1; in ip4_string()
1323 step = -1; in ip4_string()
1328 step = -1; in ip4_string()
1334 step = 1; in ip4_string()
1351 index += step; in ip4_string()
DKconfig.debug492 additional step to occur:
/lib/zstd/common/
Dfse_decompress.c107 size_t const step = FSE_TABLESTEP(tableSize); in FSE_buildDTable_internal() local
143 size_t const uPosition = (position + (u * step)) & tableMask; in FSE_buildDTable_internal()
146 position = (position + (unroll * step)) & tableMask; in FSE_buildDTable_internal()
152 U32 const step = FSE_TABLESTEP(tableSize); in FSE_buildDTable_internal() local
158 position = (position + step) & tableMask; in FSE_buildDTable_internal()
159 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable_internal()
/lib/zstd/compress/
Dfse_compress.c77 U32 const step = FSE_TABLESTEP(tableSize); in FSE_buildCTable_wksp() local
146 size_t const uPosition = (position + (u * step)) & tableMask; in FSE_buildCTable_wksp()
149 position = (position + (unroll * step)) & tableMask; in FSE_buildCTable_wksp()
161 position = (position + step) & tableMask; in FSE_buildCTable_wksp()
163 position = (position + step) & tableMask; /* Low proba area */ in FSE_buildCTable_wksp()
486 U64 const step = ZSTD_div64((U64)1<<62, (U32)total); /* <== here, one division ! */ in FSE_normalizeCount() local
501 short proba = (short)((count[s]*step) >> scale); in FSE_normalizeCount()
504 proba += (count[s]*step) - ((U64)proba<<scale) > restToBeat; in FSE_normalizeCount()
Dzstd_fast.c135 size_t step; in ZSTD_compressBlock_fast_noDict_generic() local
151 step = stepSize; in ZSTD_compressBlock_fast_noDict_generic()
156 ip2 = ip0 + step; in ZSTD_compressBlock_fast_noDict_generic()
240 ip2 = ip0 + step; in ZSTD_compressBlock_fast_noDict_generic()
241 ip3 = ip1 + step; in ZSTD_compressBlock_fast_noDict_generic()
245 step++; in ZSTD_compressBlock_fast_noDict_generic()
317 #define ZSTD_GEN_FAST_FN(dictMode, mls, step) … argument
318 …static size_t ZSTD_compressBlock_fast_##dictMode##_##mls##_##step( …
322 … return ZSTD_compressBlock_fast_##dictMode##_generic(ms, seqStore, rep, src, srcSize, mls, step); \
Dzstd_double_fast.c80 size_t step; /* the current step size */ in ZSTD_compressBlock_doubleFast_noDict_generic() local
109 step = 1; in ZSTD_compressBlock_doubleFast_noDict_generic()
111 ip1 = ip + step; in ZSTD_compressBlock_doubleFast_noDict_generic()
163 step++; in ZSTD_compressBlock_doubleFast_noDict_generic()
167 ip1 += step; in ZSTD_compressBlock_doubleFast_noDict_generic()
209 if (step < 4) { in ZSTD_compressBlock_doubleFast_noDict_generic()
/lib/lz4/
Dlz4_compress.c252 unsigned int step = 1; in LZ4_compress_generic() local
259 forwardIp += step; in LZ4_compress_generic()
260 step = (searchMatchNb++ >> LZ4_SKIPTRIGGER); in LZ4_compress_generic()
575 unsigned int step = 1; in LZ4_compress_destSize_generic() local
582 forwardIp += step; in LZ4_compress_destSize_generic()
583 step = (searchMatchNb++ >> LZ4_SKIPTRIGGER); in LZ4_compress_destSize_generic()
/lib/zstd/decompress/
Dzstd_decompress_block.c490 size_t const step = FSE_TABLESTEP(tableSize); in ZSTD_buildFSETable_body() local
526 size_t const uPosition = (position + (u * step)) & tableMask; in ZSTD_buildFSETable_body()
529 position = (position + (unroll * step)) & tableMask; in ZSTD_buildFSETable_body()
535 U32 const step = FSE_TABLESTEP(tableSize); in ZSTD_buildFSETable_body() local
542 position = (position + step) & tableMask; in ZSTD_buildFSETable_body()
543 … while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */ in ZSTD_buildFSETable_body()