MCPcopy Create free account
hub / github.com/F-Stack/f-stack / defaultFastCoverParams

Function defaultFastCoverParams

freebsd/contrib/zstd/programs/zstdcli.c:493–505  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

491}
492
493static ZDICT_fastCover_params_t defaultFastCoverParams(void)
494{
495 ZDICT_fastCover_params_t params;
496 memset(&params, 0, sizeof(params));
497 params.d = 8;
498 params.f = 20;
499 params.steps = 4;
500 params.splitPoint = 0.75; /* different from default splitPoint of cover */
501 params.accel = DEFAULT_ACCEL;
502 params.shrinkDict = 0;
503 params.shrinkDictMaxRegression = kDefaultRegression;
504 return params;
505}
506#endif
507
508

Callers 1

mainFunction · 0.85

Calls 1

memsetFunction · 0.85

Tested by

no test coverage detected