Home
last modified time | relevance | path

Searched refs:ZSTD_MAGIC_DICTIONARY (Results 1 – 7 of 7) sorted by relevance

/f-stack/freebsd/contrib/zstd/lib/decompress/
H A Dzstd_ddict.c103 if (magic != ZSTD_MAGIC_DICTIONARY) { in ZSTD_loadEntropy_intoDDict()
H A Dzstd_decompress.c1075 assert(MEM_readLE32(dict) == ZSTD_MAGIC_DICTIONARY); /* dict must be valid */ in ZSTD_loadDEntropy()
1159 if (magic != ZSTD_MAGIC_DICTIONARY) { in ZSTD_decompress_insertDictionary()
1238 if (MEM_readLE32(dict) != ZSTD_MAGIC_DICTIONARY) return 0; in ZSTD_getDictID_fromDict()
/f-stack/freebsd/contrib/zstd/lib/dictBuilder/
H A Dzdict.c100 if (MEM_readLE32(dictBuffer) != ZSTD_MAGIC_DICTIONARY) return 0; in ZDICT_getDictID()
107 …if (dictSize <= 8 || MEM_readLE32(dictBuffer) != ZSTD_MAGIC_DICTIONARY) return ERROR(dictionary_co… in ZDICT_getDictHeaderSize()
905 MEM_writeLE32(header, ZSTD_MAGIC_DICTIONARY); in ZDICT_finalizeDictionary()
958 MEM_writeLE32(dictBuffer, ZSTD_MAGIC_DICTIONARY); in ZDICT_addEntropyTablesFromBuffer_advanced()
/f-stack/freebsd/contrib/openzfs/module/zstd/lib/
H A Dzstd.h124 #define ZSTD_MAGIC_DICTIONARY 0xEC30A437 /* valid since v0.7.0 */ macro
H A Dzstd.c3184 #define ZSTD_MAGIC_DICTIONARY 0xEC30A437 /* valid since v0.7.0 */ macro
16089 assert(MEM_readLE32(dictPtr) == ZSTD_MAGIC_DICTIONARY); in ZSTD_loadZstdDictionary()
16145 if (MEM_readLE32(dict) != ZSTD_MAGIC_DICTIONARY) { in ZSTD_compress_insertDictionary()
24303 if (magic != ZSTD_MAGIC_DICTIONARY) { in ZSTD_loadEntropy_intoDDict()
25569 assert(MEM_readLE32(dict) == ZSTD_MAGIC_DICTIONARY); /* dict must be valid */ in ZSTD_loadDEntropy()
25647 if (magic != ZSTD_MAGIC_DICTIONARY) { in ZSTD_decompress_insertDictionary()
25726 if (MEM_readLE32(dict) != ZSTD_MAGIC_DICTIONARY) return 0; in ZSTD_getDictID_fromDict()
/f-stack/freebsd/contrib/zstd/lib/
H A Dzstd.h104 #define ZSTD_MAGIC_DICTIONARY 0xEC30A437 /* valid since v0.7.0 */ macro
/f-stack/freebsd/contrib/zstd/lib/compress/
H A Dzstd_compress.c3283 assert(MEM_readLE32(dictPtr) == ZSTD_MAGIC_DICTIONARY); in ZSTD_loadZstdDictionary()
3323 if (MEM_readLE32(dict) != ZSTD_MAGIC_DICTIONARY) { in ZSTD_compress_insertDictionary()