Lines Matching defs:param
333 * @param compressionLevel If params are derived from a compression level then that compression level, otherwise ZSTD_NO_CLEVEL.
362 * @param param Validated zstd parameters.
376 ZSTD_bounds ZSTD_cParam_getBounds(ZSTD_cParameter param)
380 switch(param)
576 static int ZSTD_isUpdateAuthorized(ZSTD_cParameter param)
578 switch(param)
621 size_t ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value)
623 DEBUGLOG(4, "ZSTD_CCtx_setParameter (%i, %i)", (int)param, value);
625 if (ZSTD_isUpdateAuthorized(param)) {
631 switch(param)
675 return ZSTD_CCtxParams_setParameter(&cctx->requestedParams, param, value);
679 ZSTD_cParameter param, int value)
681 DEBUGLOG(4, "ZSTD_CCtxParams_setParameter (%i, %i)", (int)param, value);
682 switch(param)
690 FORWARD_IF_ERROR(ZSTD_cParam_clampBounds(param, &value), "");
873 size_t ZSTD_CCtx_getParameter(ZSTD_CCtx const* cctx, ZSTD_cParameter param, int* value)
875 return ZSTD_CCtxParams_getParameter(&cctx->requestedParams, param, value);
879 ZSTD_CCtx_params const* CCtxParams, ZSTD_cParameter param, int* value)
881 switch(param)
1743 * @param loadedDictSize The size of the dictionary to be loaded
2320 * Returns if target compressed block size param is being used.
2330 * Returns if block splitting param is being used