Home
last modified time | relevance | path

Searched refs:repStartValue (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/sys/contrib/zstd/lib/common/
H A Dzstd_internal.h98 static const U32 repStartValue[ZSTD_REP_NUM] = { 1, 4, 8 }; variable
/freebsd-12.1/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c852 MEM_writeLE32(dstPtr+0, repStartValue[0]); in ZDICT_analyzeEntropy()
853 MEM_writeLE32(dstPtr+4, repStartValue[1]); in ZDICT_analyzeEntropy()
854 MEM_writeLE32(dstPtr+8, repStartValue[2]); in ZDICT_analyzeEntropy()
/freebsd-12.1/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c2273 ZSTD_STATIC_ASSERT(sizeof(dctx->entropy.rep) == sizeof(repStartValue)); in ZSTD_decompressBegin()
2274 memcpy(dctx->entropy.rep, repStartValue, sizeof(repStartValue)); /* initial repcodes */ in ZSTD_decompressBegin()
/freebsd-12.1/sys/contrib/zstd/lib/legacy/
H A Dzstd_v07.c2696 static const U32 repStartValue[ZSTDv07_REP_NUM] = { 1, 4, 8 }; variable
2971 { int i; for (i=0; i<ZSTDv07_REP_NUM; i++) dctx->rep[i] = repStartValue[i]; } in ZSTDv07_decompressBegin()
/freebsd-12.1/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c853 bs->rep[i] = repStartValue[i]; in ZSTD_reset_compressedBlockState()