Searched refs:Offlog (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/sys/contrib/zstd/lib/legacy/
H A Dzstd_v01.c1584 U32 LLlog, Offlog, MLlog; local
1640 Offlog = 0;
1644 Offlog = Offbits;
1648 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip);
1650 if (Offlog > OffFSELog) return ERROR(corruption_detected);
1652 FSE_buildDTable(DTableOffb, norm, max, Offlog);
H A Dzstd_v03.c2573 U32 LLlog, Offlog, MLlog; local
2629 Offlog = 0;
2634 Offlog = Offbits;
2638 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip);
2640 if (Offlog > OffFSELog) return ERROR(corruption_detected);
2642 FSE_buildDTable(DTableOffb, norm, max, Offlog);
H A Dzstd_v02.c2932 U32 LLlog, Offlog, MLlog; local
2988 Offlog = 0;
2993 Offlog = Offbits;
2997 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip);
2999 if (Offlog > OffFSELog) return ERROR(corruption_detected);
3001 FSE_buildDTable(DTableOffb, norm, max, Offlog);
H A Dzstd_v04.c2699 U32 LLlog, Offlog, MLlog; local
2755 Offlog = 0;
2760 Offlog = Offbits;
2764 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip);
2766 if (Offlog > OffFSELog) return ERROR(corruption_detected);
2768 FSE_buildDTable(DTableOffb, norm, max, Offlog);
H A Dzstd_v05.c3009 unsigned LLlog, Offlog, MLlog; local
3078 Offlog = 0;
3083 Offlog = Offbits;
3092 headerSize = FSEv05_readNCount(norm, &max, &Offlog, ip, iend-ip);
3094 if (Offlog > OffFSEv05Log) return ERROR(corruption_detected);
3096 FSEv05_buildDTable(DTableOffb, norm, max, Offlog);
/freebsd-13-stable/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c726 U32 u, huffLog = 11, Offlog = OffFSELog, mlLog = MLFSELog, llLog = LLFSELog, total; local
788 errorCode = FSE_normalizeCount(offcodeNCount, Offlog, offcodeCount, total, offcodeMax, /* useLowProbCount */ 1);
794 Offlog = (U32)errorCode;
826 { size_t const ohSize = FSE_writeNCount(dstPtr, maxDstSize, offcodeNCount, OFFCODE_MAX, Offlog);

Completed in 154 milliseconds