HomeSort by: relevance | last modified time | path
    Searched refs:Offlog (Results 1 - 6 of 6) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 1542 U32 LLlog, Offlog, MLlog;
1598 Offlog = 0;
1602 Offlog = Offbits;
1606 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip);
1608 if (Offlog > OffFSELog) return ERROR(corruption_detected);
1610 FSE_buildDTable(DTableOffb, norm, max, Offlog);
zstd_v03.c 2507 U32 LLlog, Offlog, MLlog;
2563 Offlog = 0;
2568 Offlog = Offbits;
2572 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip);
2574 if (Offlog > OffFSELog) return ERROR(corruption_detected);
2576 FSE_buildDTable(DTableOffb, norm, max, Offlog);
zstd_v04.c 2639 U32 LLlog, Offlog, MLlog;
2695 Offlog = 0;
2700 Offlog = Offbits;
2704 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip);
2706 if (Offlog > OffFSELog) return ERROR(corruption_detected);
2708 FSE_buildDTable(DTableOffb, norm, max, Offlog);
zstd_v02.c 2867 U32 LLlog, Offlog, MLlog;
2923 Offlog = 0;
2928 Offlog = Offbits;
2932 headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip);
2934 if (Offlog > OffFSELog) return ERROR(corruption_detected);
2936 FSE_buildDTable(DTableOffb, norm, max, Offlog);
zstd_v05.c 2953 unsigned LLlog, Offlog, MLlog;
3022 Offlog = 0;
3027 Offlog = Offbits;
3036 headerSize = FSEv05_readNCount(norm, &max, &Offlog, ip, iend-ip);
3038 if (Offlog > OffFSEv05Log) return ERROR(corruption_detected);
3040 FSEv05_buildDTable(DTableOffb, norm, max, Offlog);
  /src/external/bsd/zstd/dist/lib/dictBuilder/
zdict.c 678 U32 u, huffLog = 11, Offlog = OffFSELog, mlLog = MLFSELog, llLog = LLFSELog, total;
748 errorCode = FSE_normalizeCount(offcodeNCount, Offlog, offcodeCount, total, offcodeMax, /* useLowProbCount */ 1);
754 Offlog = (U32)errorCode;
786 { size_t const ohSize = FSE_writeNCount(dstPtr, maxDstSize, offcodeNCount, OFFCODE_MAX, Offlog);

Completed in 28 milliseconds