Searched refs:offcodeNCount (Results 1 - 9 of 9) sorted by relevance

/freebsd-current/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c741 short offcodeNCount[OFFCODE_MAX+1]; local
820 errorCode = FSE_normalizeCount(offcodeNCount, Offlog, offcodeCount, total, offcodeMax, /* useLowProbCount */ 1);
858 { size_t const ohSize = FSE_writeNCount(dstPtr, maxDstSize, offcodeNCount, OFFCODE_MAX, Offlog);
861 DISPLAYLEVEL(1, "FSE_writeNCount error with offcodeNCount \n");
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress.c1085 { short offcodeNCount[MaxOff+1]; local
1087 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr);
1092 offcodeNCount, offcodeMaxValue,
/freebsd-current/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c1363 { short offcodeNCount[MaxOff+1]; local
1365 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, (size_t)(dictEnd-dictPtr));
1370 offcodeNCount, offcodeMaxValue,
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress.c2903 short* offcodeNCount, unsigned* offcodeMaxValue,
2927 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr);
2934 offcodeNCount, MaxOff, offcodeLog,
2998 short offcodeNCount[MaxOff+1]; local
3008 eSize = ZSTD_loadCEntropy(bs, workspace, offcodeNCount, &offcodeMaxValue, dict, dictSize);
3019 FORWARD_IF_ERROR(ZSTD_checkDictNCount(offcodeNCount, offcodeMaxValue, MIN(offcodeMax, MaxOff)), "");
2902 ZSTD_loadCEntropy(ZSTD_compressedBlockState_t* bs, void* workspace, short* offcodeNCount, unsigned* offcodeMaxValue, const void* const dict, size_t dictSize) argument
H A Dzstd_compress_internal.h1048 short* offcodeNCount, unsigned* offcodeMaxValue,
/freebsd-current/sys/contrib/zstd/lib/legacy/
H A Dzstd_v06.c3816 { short offcodeNCount[MaxOff+1]; local
3818 offcodeHeaderSize = FSEv06_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize);
3821 { size_t const errorCode = FSEv06_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog);
H A Dzstd_v05.c3669 short offcodeNCount[MaxOff+1]; local
3681 offcodeHeaderSize = FSEv05_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dict, dictSize);
3684 errorCode = FSEv05_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog);
H A Dzstd_v07.c4103 { short offcodeNCount[MaxOff+1]; local
4105 size_t const offcodeHeaderSize = FSEv07_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr);
4108 { size_t const errorCode = FSEv07_buildDTable(dctx->OffTable, offcodeNCount, offcodeMaxValue, offcodeLog);
/freebsd-current/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c4317 short offcodeNCount[MaxOff+1]; local
4340 size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr);
4346 offcodeNCount, MaxOff, offcodeLog,
4394 bs->entropy.fse.offcode_repeatMode = ZSTD_dictNCountRepeat(offcodeNCount, offcodeMaxValue, MIN(offcodeMax, MaxOff));

Completed in 329 milliseconds