Home
last modified time | relevance | path

Searched full:stepsize (Results 1 – 14 of 14) sorted by relevance

/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_fast.c55 /* support stepSize of 0 */ in ZSTD_compressBlock_fast_generic()
56 size_t const stepSize = cParams->targetLength + !(cParams->targetLength) + 1; in ZSTD_compressBlock_fast_generic() local
133 { size_t const step = ((size_t)(ip0-anchor) >> (kSearchStrength - 1)) + stepSize; in ZSTD_compressBlock_fast_generic()
214 /* support stepSize of 0 */ in ZSTD_compressBlock_fast_dictMatchState_generic()
215 U32 const stepSize = cParams->targetLength + !(cParams->targetLength); in ZSTD_compressBlock_fast_dictMatchState_generic() local
282 assert(stepSize >= 1); in ZSTD_compressBlock_fast_dictMatchState_generic()
283 ip += ((ip-anchor) >> kSearchStrength) + stepSize; in ZSTD_compressBlock_fast_dictMatchState_generic()
299 assert(stepSize >= 1); in ZSTD_compressBlock_fast_dictMatchState_generic()
300 ip += ((ip-anchor) >> kSearchStrength) + stepSize; in ZSTD_compressBlock_fast_dictMatchState_generic()
382 /* support stepSize of 0 */ in ZSTD_compressBlock_fast_extDict_generic()
[all …]
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_fast.c101 /* support stepSize of 0 */ in ZSTD_compressBlock_fast_noDict_generic()
102 size_t const stepSize = hasStep ? (cParams->targetLength + !(cParams->targetLength) + 1) : 2; in ZSTD_compressBlock_fast_noDict_generic() local
151 step = stepSize; in ZSTD_compressBlock_fast_noDict_generic()
379 /* support stepSize of 0 */ in ZSTD_compressBlock_fast_dictMatchState_generic()
380 U32 const stepSize = cParams->targetLength + !(cParams->targetLength); in ZSTD_compressBlock_fast_dictMatchState_generic() local
449 assert(stepSize >= 1); in ZSTD_compressBlock_fast_dictMatchState_generic()
450 ip += ((ip-anchor) >> kSearchStrength) + stepSize; in ZSTD_compressBlock_fast_dictMatchState_generic()
466 assert(stepSize >= 1); in ZSTD_compressBlock_fast_dictMatchState_generic()
467 ip += ((ip-anchor) >> kSearchStrength) + stepSize; in ZSTD_compressBlock_fast_dictMatchState_generic()
555 /* support stepSize of 0 */ in ZSTD_compressBlock_fast_extDict_generic()
[all …]
/freebsd/sys/cddl/contrib/opensolaris/common/lz4/
H A Dlz4.c344 #define STEPSIZE 8 macro
353 #define STEPSIZE 4 macro
567 while likely(ip < matchlimit - (STEPSIZE - 1)) { in LZ4_compressCtx()
570 ip += STEPSIZE; in LZ4_compressCtx()
571 ref += STEPSIZE; in LZ4_compressCtx()
760 while (ip < matchlimit - (STEPSIZE - 1)) { in LZ4_compress64kCtx()
763 ip += STEPSIZE; in LZ4_compress64kCtx()
764 ref += STEPSIZE; in LZ4_compress64kCtx()
975 if unlikely(op - ref < STEPSIZE) { in LZ4_uncompress_unknownOutputSize()
989 op += STEPSIZE - 4; in LZ4_uncompress_unknownOutputSize()
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dlz4_zfs.c345 #define STEPSIZE 8 macro
354 #define STEPSIZE 4 macro
567 while (likely(ip < matchlimit - (STEPSIZE - 1))) { in LZ4_compressCtx()
570 ip += STEPSIZE; in LZ4_compressCtx()
571 ref += STEPSIZE; in LZ4_compressCtx()
755 while (ip < matchlimit - (STEPSIZE - 1)) { in LZ4_compress64kCtx()
758 ip += STEPSIZE; in LZ4_compress64kCtx()
759 ref += STEPSIZE; in LZ4_compress64kCtx()
/freebsd/contrib/dialog/
H A Dformbox.c227 int stepsize, in tab_next() argument
237 *choice += stepsize; in tab_next()
289 scroll_next(WINDOW *win, DIALOG_FORMITEM item[], int stepsize, int *choice, int *scrollamt) in scroll_next() argument
295 int target = old_scroll + stepsize; in scroll_next()
297 if (stepsize < 0) { in scroll_next()
301 target = old_scroll + stepsize; in scroll_next()
/freebsd/sys/contrib/device-tree/Bindings/phy/
H A Dqcom,qusb2-phy.yaml118 Possible range is - 15mA to 24mA (stepsize of 600 uA).
128 Possible range is 0 to 15% (stepsize of 5%).
/freebsd/usr.bin/jot/
H A Djot.c220 errx(1, "impossible stepsize"); in main()
268 errx(1, "impossible stepsize"); in main()
/freebsd/contrib/lua/src/
H A Dlbaselib.c244 int stepsize = (int)luaL_optinteger(L, 4, 0); in luaB_collectgarbage() local
245 return pushmode(L, lua_gc(L, o, pause, stepmul, stepsize)); in luaB_collectgarbage()
H A Dlapi.c1213 int stepsize = va_arg(argp, int); in lua_gc() local
1219 if (stepsize != 0) in lua_gc()
1220 g->gcstepsize = stepsize; in lua_gc()
H A Dlgc.c1668 l_mem stepsize = (g->gcstepsize <= log2maxs(l_mem)) in incstep() local
1674 } while (debt > -stepsize && g->gcstate != GCSpause); in incstep()
/freebsd/sys/netgraph/
H A Dng_lmi.c540 #define STEPBY(stepsize) \ argument
542 packetlen -= (stepsize); \
543 data += (stepsize); \
/freebsd/contrib/mandoc/
H A Droff.71401 .It Ic \&nr Ar register Oo Cm + Ns | Ns Cm - Oc Ns Ar expression Op Ar stepsize
1414 .Ar stepsize
2161 .Ar stepsize
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp620 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) { in getCopyToParts() local
621 for (unsigned i = 0; i < NumParts; i += StepSize) { in getCopyToParts()
622 unsigned ThisBits = StepSize * PartBits / 2; in getCopyToParts()
625 SDValue &Part1 = Parts[i+StepSize/2]; in getCopyToParts()
/freebsd/contrib/lua/doc/
H A Dmanual.html4047 <li><b><code>LUA_GCSTEP</code> <code>(int stepsize)</code>: </b>
4049 corresponding to the allocation of <code>stepsize</code> Kbytes.
4057 <li><b><code>LUA_GCINC</code> (int pause, int stepmul, stepsize): </b>