Searched refs:ZSTD_MAGIC_DICTIONARY (Results 1 - 4 of 4) sorted by relevance

/linux-master/lib/zstd/decompress/
H A Dzstd_ddict.c100 if (magic != ZSTD_MAGIC_DICTIONARY) {
H A Dzstd_decompress.c1294 assert(MEM_readLE32(dict) == ZSTD_MAGIC_DICTIONARY); /* dict must be valid */
1378 if (magic != ZSTD_MAGIC_DICTIONARY) {
1458 if (MEM_readLE32(dict) != ZSTD_MAGIC_DICTIONARY) return 0;
/linux-master/include/linux/
H A Dzstd_lib.h97 #define ZSTD_MAGIC_DICTIONARY 0xEC30A437 /* valid since v0.7.0 */ macro
1218 ZSTD_dct_auto = 0, /* dictionary is "full" when starting with ZSTD_MAGIC_DICTIONARY, otherwise it is "rawContent" */
1219 ZSTD_dct_rawContent = 1, /* ensures dictionary is always loaded as rawContent, even if it starts with ZSTD_MAGIC_DICTIONARY */
1220 ZSTD_dct_fullDict = 2 /* refuses to load a dictionary if it does not respect Zstandard's specification, starting with ZSTD_MAGIC_DICTIONARY */
2197 * it begins with ZSTD_MAGIC_DICTIONARY, else as raw content) and ZSTD_dlm_byCopy.
/linux-master/lib/zstd/compress/
H A Dzstd_compress.c4338 assert(MEM_readLE32(dictPtr) == ZSTD_MAGIC_DICTIONARY);
4378 if (MEM_readLE32(dict) != ZSTD_MAGIC_DICTIONARY) {

Completed in 189 milliseconds