Searched refs:Offlog (Results 1 – 6 of 6) sorted by relevance
/external/zstd/lib/legacy/ |
D | zstd_v01.c | 1580 U32 LLlog, Offlog, MLlog; in ZSTDv01_decodeSeqHeaders() local 1636 Offlog = 0; in ZSTDv01_decodeSeqHeaders() 1640 Offlog = Offbits; in ZSTDv01_decodeSeqHeaders() 1644 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip); in ZSTDv01_decodeSeqHeaders() 1646 if (Offlog > OffFSELog) return ERROR(corruption_detected); in ZSTDv01_decodeSeqHeaders() 1648 FSE_buildDTable(DTableOffb, norm, max, Offlog); in ZSTDv01_decodeSeqHeaders()
|
D | zstd_v03.c | 2569 U32 LLlog, Offlog, MLlog; in ZSTD_decodeSeqHeaders() local 2625 Offlog = 0; in ZSTD_decodeSeqHeaders() 2630 Offlog = Offbits; in ZSTD_decodeSeqHeaders() 2634 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip); in ZSTD_decodeSeqHeaders() 2636 if (Offlog > OffFSELog) return ERROR(corruption_detected); in ZSTD_decodeSeqHeaders() 2638 FSE_buildDTable(DTableOffb, norm, max, Offlog); in ZSTD_decodeSeqHeaders()
|
D | zstd_v04.c | 2695 U32 LLlog, Offlog, MLlog; in ZSTD_decodeSeqHeaders() local 2751 Offlog = 0; in ZSTD_decodeSeqHeaders() 2756 Offlog = Offbits; in ZSTD_decodeSeqHeaders() 2760 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip); in ZSTD_decodeSeqHeaders() 2762 if (Offlog > OffFSELog) return ERROR(corruption_detected); in ZSTD_decodeSeqHeaders() 2764 FSE_buildDTable(DTableOffb, norm, max, Offlog); in ZSTD_decodeSeqHeaders()
|
D | zstd_v02.c | 2928 U32 LLlog, Offlog, MLlog; in ZSTD_decodeSeqHeaders() local 2984 Offlog = 0; in ZSTD_decodeSeqHeaders() 2989 Offlog = Offbits; in ZSTD_decodeSeqHeaders() 2993 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip); in ZSTD_decodeSeqHeaders() 2995 if (Offlog > OffFSELog) return ERROR(corruption_detected); in ZSTD_decodeSeqHeaders() 2997 FSE_buildDTable(DTableOffb, norm, max, Offlog); in ZSTD_decodeSeqHeaders()
|
D | zstd_v05.c | 3005 unsigned LLlog, Offlog, MLlog; in ZSTDv05_decodeSeqHeaders() local 3074 Offlog = 0; in ZSTDv05_decodeSeqHeaders() 3079 Offlog = Offbits; in ZSTDv05_decodeSeqHeaders() 3088 headerSize = FSEv05_readNCount(norm, &max, &Offlog, ip, iend-ip); in ZSTDv05_decodeSeqHeaders() 3090 if (Offlog > OffFSEv05Log) return ERROR(corruption_detected); in ZSTDv05_decodeSeqHeaders() 3092 FSEv05_buildDTable(DTableOffb, norm, max, Offlog); in ZSTDv05_decodeSeqHeaders()
|
/external/zstd/lib/dictBuilder/ |
D | zdict.c | 751 U32 u, huffLog = 11, Offlog = OffFSELog, mlLog = MLFSELog, llLog = LLFSELog, total; in ZDICT_analyzeEntropy() local 820 …errorCode = FSE_normalizeCount(offcodeNCount, Offlog, offcodeCount, total, offcodeMax, /* useLowPr… in ZDICT_analyzeEntropy() 826 Offlog = (U32)errorCode; in ZDICT_analyzeEntropy() 858 … { size_t const ohSize = FSE_writeNCount(dstPtr, maxDstSize, offcodeNCount, OFFCODE_MAX, Offlog); in ZDICT_analyzeEntropy()
|