Searched refs:offcodeHeaderSize (Results 1 – 5 of 5) sorted by relevance
/external/zstd/lib/legacy/ |
D | zstd_v05.c | 3668 size_t hSize, offcodeHeaderSize, matchlengthHeaderSize, errorCode, litlengthHeaderSize; in ZSTDv05_loadEntropy() local 3681 …offcodeHeaderSize = FSEv05_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize… in ZSTDv05_loadEntropy() 3682 if (FSEv05_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); in ZSTDv05_loadEntropy() 3686 dict = (const char*)dict + offcodeHeaderSize; in ZSTDv05_loadEntropy() 3687 dictSize -= offcodeHeaderSize; in ZSTDv05_loadEntropy() 3704 return hSize + offcodeHeaderSize + matchlengthHeaderSize + litlengthHeaderSize; in ZSTDv05_loadEntropy()
|
D | zstd_v06.c | 3809 size_t hSize, offcodeHeaderSize, matchlengthHeaderSize, litlengthHeaderSize; in ZSTDv06_loadEntropy() local 3818 …offcodeHeaderSize = FSEv06_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize… in ZSTDv06_loadEntropy() 3819 if (FSEv06_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); in ZSTDv06_loadEntropy() 3823 dict = (const char*)dict + offcodeHeaderSize; in ZSTDv06_loadEntropy() 3824 dictSize -= offcodeHeaderSize; in ZSTDv06_loadEntropy() 3848 return hSize + offcodeHeaderSize + matchlengthHeaderSize + litlengthHeaderSize; in ZSTDv06_loadEntropy()
|
D | zstd_v07.c | 4105 …size_t const offcodeHeaderSize = FSEv07_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, d… in ZSTDv07_loadEntropy() local 4106 if (FSEv07_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); in ZSTDv07_loadEntropy() 4110 dictPtr += offcodeHeaderSize; in ZSTDv07_loadEntropy()
|
/external/zstd/lib/decompress/ |
D | zstd_decompress.c | 1365 …size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict… in ZSTD_loadDEntropy() local 1366 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); in ZSTD_loadDEntropy() 1375 dictPtr += offcodeHeaderSize; in ZSTD_loadDEntropy()
|
/external/zstd/lib/compress/ |
D | zstd_compress.c | 4323 …size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict… in ZSTD_loadCEntropy() local 4324 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); in ZSTD_loadCEntropy() 4333 dictPtr += offcodeHeaderSize; in ZSTD_loadCEntropy()
|