Searched refs:Offlog (Results 1 – 6 of 6) sorted by relevance
| /freebsd-12.1/sys/contrib/zstd/lib/dictBuilder/ |
| H A D | zdict.c | 702 U32 u, huffLog = 11, Offlog = OffFSELog, mlLog = MLFSELog, llLog = LLFSELog, total; in ZDICT_analyzeEntropy() local 769 errorCode = FSE_normalizeCount(offcodeNCount, Offlog, offcodeCount, total, offcodeMax); in ZDICT_analyzeEntropy() 775 Offlog = (U32)errorCode; in ZDICT_analyzeEntropy() 807 … { size_t const ohSize = FSE_writeNCount(dstPtr, maxDstSize, offcodeNCount, OFFCODE_MAX, Offlog); in ZDICT_analyzeEntropy()
|
| /freebsd-12.1/sys/contrib/zstd/lib/legacy/ |
| H A D | zstd_v01.c | 1574 U32 LLlog, Offlog, MLlog; in ZSTDv01_decodeSeqHeaders() local 1630 Offlog = 0; in ZSTDv01_decodeSeqHeaders() 1634 Offlog = Offbits; in ZSTDv01_decodeSeqHeaders() 1638 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip); in ZSTDv01_decodeSeqHeaders() 1640 if (Offlog > OffFSELog) return ERROR(corruption_detected); in ZSTDv01_decodeSeqHeaders() 1642 FSE_buildDTable(DTableOffb, norm, max, Offlog); in ZSTDv01_decodeSeqHeaders()
|
| H A D | zstd_v03.c | 2553 U32 LLlog, Offlog, MLlog; in ZSTD_decodeSeqHeaders() local 2609 Offlog = 0; in ZSTD_decodeSeqHeaders() 2614 Offlog = Offbits; in ZSTD_decodeSeqHeaders() 2618 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip); in ZSTD_decodeSeqHeaders() 2620 if (Offlog > OffFSELog) return ERROR(corruption_detected); in ZSTD_decodeSeqHeaders() 2622 FSE_buildDTable(DTableOffb, norm, max, Offlog); in ZSTD_decodeSeqHeaders()
|
| H A D | zstd_v02.c | 2912 U32 LLlog, Offlog, MLlog; in ZSTD_decodeSeqHeaders() local 2968 Offlog = 0; in ZSTD_decodeSeqHeaders() 2973 Offlog = Offbits; in ZSTD_decodeSeqHeaders() 2977 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip); in ZSTD_decodeSeqHeaders() 2979 if (Offlog > OffFSELog) return ERROR(corruption_detected); in ZSTD_decodeSeqHeaders() 2981 FSE_buildDTable(DTableOffb, norm, max, Offlog); in ZSTD_decodeSeqHeaders()
|
| H A D | zstd_v04.c | 2743 U32 LLlog, Offlog, MLlog; in ZSTD_decodeSeqHeaders() local 2799 Offlog = 0; in ZSTD_decodeSeqHeaders() 2804 Offlog = Offbits; in ZSTD_decodeSeqHeaders() 2808 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip); in ZSTD_decodeSeqHeaders() 2810 if (Offlog > OffFSELog) return ERROR(corruption_detected); in ZSTD_decodeSeqHeaders() 2812 FSE_buildDTable(DTableOffb, norm, max, Offlog); in ZSTD_decodeSeqHeaders()
|
| H A D | zstd_v05.c | 2999 U32 LLlog, Offlog, MLlog; in ZSTDv05_decodeSeqHeaders() local 3068 Offlog = 0; in ZSTDv05_decodeSeqHeaders() 3073 Offlog = Offbits; in ZSTDv05_decodeSeqHeaders() 3082 headerSize = FSEv05_readNCount(norm, &max, &Offlog, ip, iend-ip); in ZSTDv05_decodeSeqHeaders() 3084 if (Offlog > OffFSEv05Log) return ERROR(corruption_detected); in ZSTDv05_decodeSeqHeaders() 3086 FSEv05_buildDTable(DTableOffb, norm, max, Offlog); in ZSTDv05_decodeSeqHeaders()
|