Searched refs:step (Results 1 – 8 of 8) sorted by relevance
/lib/ |
D | test_bitmap.c | 241 #define step (sizeof(u64) / sizeof(unsigned long)) macro 244 {0, "1", &exp[1 * step], 8, 0}, 245 {0, "0-15", &exp[2 * step], 32, 0}, 246 {0, "16-31", &exp[3 * step], 32, 0}, 247 {0, "0-31:1/2", &exp[4 * step], 32, 0}, 248 {0, "1-31:1/2", &exp[5 * step], 32, 0}, 249 {0, "0-31:1/4", &exp[6 * step], 32, 0}, 250 {0, "1-31:1/4", &exp[7 * step], 32, 0}, 251 {0, "0-31:4/4", &exp[8 * step], 32, 0}, 252 {0, "1-31:4/4", &exp[9 * step], 32, 0}, [all …]
|
D | test_rhashtable.c | 633 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()
|
D | Kconfig.kgdb | 68 exception handler which will allow kgdb to step through a 93 0x0040 - allow flow control management (breakpoint, single step)
|
D | vsprintf.c | 1263 int step; in ip4_string() local 1269 step = 1; in ip4_string() 1272 step = -1; in ip4_string() 1277 step = -1; in ip4_string() 1283 step = 1; in ip4_string() 1300 index += step; in ip4_string()
|
D | Kconfig.debug | 338 additional step to occur:
|
/lib/zstd/ |
D | fse_decompress.c | 138 U32 const step = FSE_TABLESTEP(tableSize); in FSE_buildDTable_wksp() local 144 position = (position + step) & tableMask; in FSE_buildDTable_wksp() 146 position = (position + step) & tableMask; /* lowprob area */ in FSE_buildDTable_wksp()
|
D | fse_compress.c | 100 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/ |
D | lz4_compress.c | 252 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()
|