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

  /src/external/bsd/zstd/dist/lib/decompress/
zstd_ddict.c 103 if (magic != ZSTD_MAGIC_DICTIONARY) {
zstd_decompress.c 1459 assert(MEM_readLE32(dict) == ZSTD_MAGIC_DICTIONARY); /* dict must be valid */
1543 if (magic != ZSTD_MAGIC_DICTIONARY) {
1627 if (MEM_readLE32(dict) != ZSTD_MAGIC_DICTIONARY) return 0;
  /src/external/bsd/zstd/dist/lib/dictBuilder/
zdict.c 105 if (MEM_readLE32(dictBuffer) != ZSTD_MAGIC_DICTIONARY) return 0;
112 if (dictSize <= 8 || MEM_readLE32(dictBuffer) != ZSTD_MAGIC_DICTIONARY) return ERROR(dictionary_corrupted);
878 MEM_writeLE32(header, ZSTD_MAGIC_DICTIONARY);
962 MEM_writeLE32(dictBuffer, ZSTD_MAGIC_DICTIONARY);
  /src/external/bsd/zstd/dist/lib/
zstd.h 143 #define ZSTD_MAGIC_DICTIONARY 0xEC30A437 /* valid since v0.7.0 */
1374 ZSTD_dct_auto = 0, /* dictionary is "full" when starting with ZSTD_MAGIC_DICTIONARY, otherwise it is "rawContent" */
1375 ZSTD_dct_rawContent = 1, /* ensures dictionary is always loaded as rawContent, even if it starts with ZSTD_MAGIC_DICTIONARY */
1376 ZSTD_dct_fullDict = 2 /* refuses to load a dictionary if it does not respect Zstandard's specification, starting with ZSTD_MAGIC_DICTIONARY */
2654 * it begins with ZSTD_MAGIC_DICTIONARY, else as raw content) and ZSTD_dlm_byCopy.
  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress.c 5176 assert(MEM_readLE32(dictPtr) == ZSTD_MAGIC_DICTIONARY);
5217 if (MEM_readLE32(dict) != ZSTD_MAGIC_DICTIONARY) {
  /src/external/bsd/zstd/dist/tests/
fuzzer.c 2961 MEM_writeLE32((char*)rawDictBuffer, ZSTD_MAGIC_DICTIONARY);

Completed in 90 milliseconds