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

  /src/external/bsd/zstd/dist/lib/decompress/
zstd_ddict.c 98 if (dictContentType == ZSTD_dct_fullDict)
104 if (dictContentType == ZSTD_dct_fullDict)
  /src/external/bsd/zstd/dist/lib/
zstd.h 1376 ZSTD_dct_fullDict = 2 /* refuses to load a dictionary if it does not respect Zstandard's specification, starting with ZSTD_MAGIC_DICTIONARY */
  /src/external/bsd/zstd/dist/tests/
zstreamtest.c 1520 ZSTD_CDict* const cdict = ZSTD_createCDict_advanced(dictionary.start, dictionary.filled, ZSTD_dlm_byRef, ZSTD_dct_fullDict, cParams, ZSTD_defaultCMem);
1563 cdict = ZSTD_createCDict_advanced(dictionary.start, dictionary.filled, ZSTD_dlm_byRef, ZSTD_dct_fullDict, cParams, ZSTD_defaultCMem);
1834 ZSTD_dlm_byRef, ZSTD_dct_fullDict,
1887 ZSTD_dlm_byRef, ZSTD_dct_fullDict,
fuzzer.c 2941 DISPLAYLEVEL(3, "test%3i : Building cdict w/ ZSTD_dct_fullDict on a good dictionary : ", testNb++);
2943 ZSTD_CDict* const cdict = ZSTD_createCDict_advanced(dictBuffer, dictSize, ZSTD_dlm_byRef, ZSTD_dct_fullDict, cParams, ZSTD_defaultCMem);
2949 DISPLAYLEVEL(3, "test%3i : Building cdict w/ ZSTD_dct_fullDict on a rawContent (must fail) : ", testNb++);
2951 ZSTD_CDict* const cdict = ZSTD_createCDict_advanced((const char*)dictBuffer+1, dictSize-1, ZSTD_dlm_byRef, ZSTD_dct_fullDict, cParams, ZSTD_defaultCMem);
4292 CHECK_Z(ZSTD_CCtx_refPrefix_advanced(cctx, dict, srcSize, ZSTD_dct_fullDict));
  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress.c 5207 RETURN_ERROR_IF(dictContentType == ZSTD_dct_fullDict, dictionary_wrong, "");
5223 RETURN_ERROR_IF(dictContentType == ZSTD_dct_fullDict, dictionary_wrong, "");

Completed in 37 milliseconds