Searched refs:step (Results 1 – 7 of 7) sorted by relevance
/lib/ |
D | test_bitmap.c | 199 #define step (sizeof(u64) / sizeof(unsigned long)) macro 202 {0, "1", &exp[1 * step], 8, 0}, 203 {0, "0-15", &exp[2 * step], 32, 0}, 204 {0, "16-31", &exp[3 * step], 32, 0}, 205 {0, "0-31:1/2", &exp[4 * step], 32, 0}, 206 {0, "1-31:1/2", &exp[5 * step], 32, 0}, 207 {0, "0-31:1/4", &exp[6 * step], 32, 0}, 208 {0, "1-31:1/4", &exp[7 * step], 32, 0}, 209 {0, "0-31:4/4", &exp[8 * step], 32, 0}, 210 {0, "1-31:4/4", &exp[9 * step], 32, 0}, [all …]
|
D | test_rhashtable.c | 279 int i, step, err = 0, insert_retries = 0; in threadfunc() local 309 for (step = 10; step > 0; step--) { in threadfunc() 310 for (i = 0; i < entries; i += step) { in threadfunc()
|
D | Kconfig.kgdb | 67 exception handler which will allow kgdb to step through a 92 0x0040 - allow flow control management (breakpoint, single step)
|
D | vsprintf.c | 982 int step; in ip4_string() local 988 step = 1; in ip4_string() 991 step = -1; in ip4_string() 996 step = -1; in ip4_string() 1002 step = 1; in ip4_string() 1019 index += step; in ip4_string()
|
/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()
|