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

  /src/external/bsd/zstd/dist/zlibWrapper/examples/
zwrapbench.c 433 rSize = ZSTD_DCtx_loadDictionary(zbd, dictBuffer, dictBufferSize);
434 if (ZSTD_isError(rSize)) EXM_THROW(1, "ZSTD_DCtx_loadDictionary() failed : %s", ZSTD_getErrorName(rSize));
  /src/external/bsd/zstd/dist/lib/
zstd.h 1146 /*! ZSTD_DCtx_loadDictionary() : Requires v1.4.0+
1161 ZSTDLIB_API size_t ZSTD_DCtx_loadDictionary(ZSTD_DCtx* dctx, const void* dict, size_t dictSize);
2463 * Same as ZSTD_DCtx_loadDictionary(),
2470 * Same as ZSTD_DCtx_loadDictionary(),
2775 * ZSTD_DCtx_loadDictionary(zds, dict, dictSize);
2779 ZSTD_DEPRECATED("use ZSTD_DCtx_reset + ZSTD_DCtx_loadDictionary, see zstd.h for detailed instructions")
  /src/external/bsd/zstd/dist/programs/
benchzstd.c 297 CHECK_Z(ZSTD_DCtx_loadDictionary(dctx, dictBuffer, dictBufferSize));
  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress.c 1720 size_t ZSTD_DCtx_loadDictionary(ZSTD_DCtx* dctx, const void* dict, size_t dictSize)
1745 FORWARD_IF_ERROR( ZSTD_DCtx_loadDictionary(zds, dict, dictSize) , "");
  /src/external/bsd/zstd/dist/zlibWrapper/
zstd_zlibwrapper.c 711 { size_t const loadErr = ZSTD_DCtx_loadDictionary(zwd->zbd, dictionary, dictLength);
  /src/external/bsd/zstd/dist/tests/
paramgrill.c 1066 ZSTD_DCtx_loadDictionary(ag->dctx, ag->dictBuffer, ag->dictBufferSize);
zstreamtest.c 1210 CHECK_Z( ZSTD_DCtx_loadDictionary(dctx, dictionary.start, dictionary.filled) );
1245 CHECK_Z( ZSTD_DCtx_loadDictionary(dctx, dictionary.start, dictionary.filled) );
fuzzer.c 3134 CHECK_Z( ZSTD_DCtx_loadDictionary(dctx, dictBuffer, dictSize) );

Completed in 87 milliseconds