Searched refs:offcodeHeaderSize (Results 1 – 6 of 6) sorted by relevance
| /f-stack/freebsd/contrib/zstd/lib/legacy/ |
| H A D | zstd_v06.c | 3813 size_t hSize, offcodeHeaderSize, matchlengthHeaderSize, litlengthHeaderSize; in ZSTDv06_loadEntropy() local 3822 …offcodeHeaderSize = FSEv06_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize… in ZSTDv06_loadEntropy() 3823 if (FSEv06_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); in ZSTDv06_loadEntropy() 3827 dict = (const char*)dict + offcodeHeaderSize; in ZSTDv06_loadEntropy() 3828 dictSize -= offcodeHeaderSize; in ZSTDv06_loadEntropy() 3852 return hSize + offcodeHeaderSize + matchlengthHeaderSize + litlengthHeaderSize; in ZSTDv06_loadEntropy()
|
| H A D | zstd_v05.c | 3672 size_t hSize, offcodeHeaderSize, matchlengthHeaderSize, errorCode, litlengthHeaderSize; in ZSTDv05_loadEntropy() local 3685 …offcodeHeaderSize = FSEv05_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize… in ZSTDv05_loadEntropy() 3686 if (FSEv05_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); in ZSTDv05_loadEntropy() 3690 dict = (const char*)dict + offcodeHeaderSize; in ZSTDv05_loadEntropy() 3691 dictSize -= offcodeHeaderSize; in ZSTDv05_loadEntropy() 3708 return hSize + offcodeHeaderSize + matchlengthHeaderSize + litlengthHeaderSize; in ZSTDv05_loadEntropy()
|
| H A D | zstd_v07.c | 4109 …size_t const offcodeHeaderSize = FSEv07_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, d… in ZSTDv07_loadEntropy() local 4110 if (FSEv07_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); in ZSTDv07_loadEntropy() 4114 dictPtr += offcodeHeaderSize; in ZSTDv07_loadEntropy()
|
| /f-stack/freebsd/contrib/zstd/lib/decompress/ |
| H A D | zstd_decompress.c | 1099 …size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict… in ZSTD_loadDEntropy() local 1100 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); in ZSTD_loadDEntropy() 1109 dictPtr += offcodeHeaderSize; in ZSTD_loadDEntropy()
|
| /f-stack/freebsd/contrib/zstd/lib/compress/ |
| H A D | zstd_compress.c | 3193 …size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict… in ZSTD_loadCEntropy() local 3194 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); in ZSTD_loadCEntropy() 3203 dictPtr += offcodeHeaderSize; in ZSTD_loadCEntropy()
|
| /f-stack/freebsd/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.c | 16011 …size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, offcodeMaxValue, &offcodeLog, dictP… in ZSTD_loadCEntropy() local 16012 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); in ZSTD_loadCEntropy() 16021 dictPtr += offcodeHeaderSize; in ZSTD_loadCEntropy() 25593 …size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict… in ZSTD_loadDEntropy() local 25594 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); in ZSTD_loadDEntropy() 25601 dictPtr += offcodeHeaderSize; in ZSTD_loadDEntropy()
|