HomeSort by: relevance | last modified time | path
    Searched refs:staticSize (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress_internal.h 155 size_t staticSize;
zstd_decompress.c 254 dctx->staticSize = 0;
289 dctx->staticSize = workspaceSize;
327 RETURN_ERROR_IF(dctx->staticSize, memory_allocation, "not compatible with static DCtx");
1092 RETURN_ERROR_IF(dctx->staticSize, memory_allocation,
1792 assert(!dctx->staticSize); /* Impossible: ddictSet cannot have been allocated if static dctx */
1927 if (dctx->staticSize != 0) {
2128 RETURN_ERROR_IF(zds->staticSize, memory_allocation,
2147 RETURN_ERROR_IF(zds->staticSize, memory_allocation,
2250 if (zds->staticSize) { /* static DCtx */
2251 DEBUGLOG(4, "staticSize : %u", (U32)zds->staticSize)
    [all...]
  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress.c 138 cctx->staticSize = workspaceSize;
171 assert(cctx->staticSize == 0);
183 RETURN_ERROR_IF(cctx->staticSize, memory_allocation,
722 RETURN_ERROR_IF((value!=0) && cctx->staticSize, parameter_unsupported,
1291 RETURN_ERROR_IF(cctx->staticSize, memory_allocation,
2139 &params->cParams, &params->ldmParams, zc->staticSize != 0, params->useRowMatchFinder,
2144 if (!zc->staticSize) ZSTD_cwksp_bump_oversized_duration(ws, 0);
2158 RETURN_ERROR_IF(zc->staticSize, memory_allocation, "static cctx : no resize");
zstd_compress_internal.h 424 size_t staticSize;

Completed in 38 milliseconds