Home
last modified time | relevance | path

Searched refs:offcodeHeaderSize (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/zstd/lib/legacy/
H A Dzstd_v06.c3760 size_t hSize, offcodeHeaderSize, matchlengthHeaderSize, litlengthHeaderSize; in ZSTDv06_loadEntropy() local
3769offcodeHeaderSize = FSEv06_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize… in ZSTDv06_loadEntropy()
3770 if (FSEv06_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); in ZSTDv06_loadEntropy()
3774 dict = (const char*)dict + offcodeHeaderSize; in ZSTDv06_loadEntropy()
3775 dictSize -= offcodeHeaderSize; in ZSTDv06_loadEntropy()
3799 return hSize + offcodeHeaderSize + matchlengthHeaderSize + litlengthHeaderSize; in ZSTDv06_loadEntropy()
H A Dzstd_v05.c3623 size_t hSize, offcodeHeaderSize, matchlengthHeaderSize, errorCode, litlengthHeaderSize; in ZSTDv05_loadEntropy() local
3636offcodeHeaderSize = FSEv05_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize… in ZSTDv05_loadEntropy()
3637 if (FSEv05_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); in ZSTDv05_loadEntropy()
3641 dict = (const char*)dict + offcodeHeaderSize; in ZSTDv05_loadEntropy()
3642 dictSize -= offcodeHeaderSize; in ZSTDv05_loadEntropy()
3659 return hSize + offcodeHeaderSize + matchlengthHeaderSize + litlengthHeaderSize; in ZSTDv05_loadEntropy()
H A Dzstd_v07.c4053 …size_t const offcodeHeaderSize = FSEv07_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, d… in ZSTDv07_loadEntropy() local
4054 if (FSEv07_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted); in ZSTDv07_loadEntropy()
4058 dictPtr += offcodeHeaderSize; in ZSTDv07_loadEntropy()
/aosp_15_r20/external/zstd/lib/decompress/
H A Dzstd_decompress.c1481 …size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict… in ZSTD_loadDEntropy() local
1482 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); in ZSTD_loadDEntropy()
1491 dictPtr += offcodeHeaderSize; in ZSTD_loadDEntropy()
/aosp_15_r20/external/zstd/lib/compress/
H A Dzstd_compress.c4961 …size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict… in ZSTD_loadCEntropy() local
4962 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); in ZSTD_loadCEntropy()
4971 dictPtr += offcodeHeaderSize; in ZSTD_loadCEntropy()