Home
last modified time | relevance | path

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

/lib/
Dtest_bitmap.c311 #define step (sizeof(u64) / sizeof(unsigned long)) macro
314 {0, "1", &exp1[1 * step], 8, 0},
315 {0, "0-15", &exp1[2 * step], 32, 0},
316 {0, "16-31", &exp1[3 * step], 32, 0},
317 {0, "0-31:1/2", &exp1[4 * step], 32, 0},
318 {0, "1-31:1/2", &exp1[5 * step], 32, 0},
319 {0, "0-31:1/4", &exp1[6 * step], 32, 0},
320 {0, "1-31:1/4", &exp1[7 * step], 32, 0},
321 {0, "0-31:4/4", &exp1[8 * step], 32, 0},
322 {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()
Dtest_linear_ranges.c114 .step = RANGE1_STEP,
119 .step = RANGE2_STEP
Dtest_rhashtable.c633 int i, step, err = 0, insert_retries = 0; in threadfunc() local
666 for (step = 10; step > 0; step--) { in threadfunc()
667 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.c1340 int step; in ip4_string() local
1346 step = 1; in ip4_string()
1349 step = -1; in ip4_string()
1354 step = -1; in ip4_string()
1360 step = 1; in ip4_string()
1377 index += step; in ip4_string()
DKconfig.debug351 additional step to occur:
/lib/zstd/
Dfse_decompress.c131 U32 const step = FSE_TABLESTEP(tableSize); in FSE_buildDTable_wksp() local
137 position = (position + step) & tableMask; in FSE_buildDTable_wksp()
139 position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable_wksp()
Dfse_compress.c100 U32 const step = FSE_TABLESTEP(tableSize); in FSE_buildCTable_wksp() local
147 position = (position + step) & tableMask; in FSE_buildCTable_wksp()
149 position = (position + step) & tableMask; /* Low proba area */ in FSE_buildCTable_wksp()
623 U64 const step = div_u64((U64)1 << 62, (U32)total); /* <== here, one division ! */ in FSE_normalizeCount() local
642 short proba = (short)((count[s] * step) >> scale); in FSE_normalizeCount()
645 proba += (count[s] * step) - ((U64)proba << scale) > restToBeat; in FSE_normalizeCount()
/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()