Searched refs:repStartValue (Results 1 – 8 of 8) sorted by relevance
/freebsd/sys/contrib/zstd/lib/dictBuilder/ |
H A D | zdict.c | 903 MEM_writeLE32(dstPtr+0, repStartValue[0]); in ZDICT_analyzeEntropy() 904 MEM_writeLE32(dstPtr+4, repStartValue[1]); in ZDICT_analyzeEntropy() 905 MEM_writeLE32(dstPtr+8, repStartValue[2]); in ZDICT_analyzeEntropy() 941 size_t const minContentSize = (size_t)ZDICT_maxRep(repStartValue); in ZDICT_finalizeDictionary()
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/common/ |
H A D | zstd_internal.h | 142 static const U32 repStartValue[ZSTD_REP_NUM] = { 1, 4, 8 }; variable
|
/freebsd/sys/contrib/zstd/lib/common/ |
H A D | zstd_internal.h | 70 static UNUSED_ATTR const U32 repStartValue[ZSTD_REP_NUM] = { 1, 4, 8 }; variable
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/ |
H A D | zstd_decompress.c | 1173 ZSTD_STATIC_ASSERT(sizeof(dctx->entropy.rep) == sizeof(repStartValue)); in ZSTD_decompressBegin() 1174 memcpy(dctx->entropy.rep, repStartValue, sizeof(repStartValue)); /* initial repcodes */ in ZSTD_decompressBegin()
|
/freebsd/sys/contrib/zstd/lib/decompress/ |
H A D | zstd_decompress.c | 1460 ZSTD_STATIC_ASSERT(sizeof(dctx->entropy.rep) == sizeof(repStartValue)); in ZSTD_decompressBegin() 1461 ZSTD_memcpy(dctx->entropy.rep, repStartValue, sizeof(repStartValue)); /* initial repcodes */ in ZSTD_decompressBegin()
|
/freebsd/sys/contrib/zstd/lib/legacy/ |
H A D | zstd_v07.c | 2696 static const U32 repStartValue[ZSTDv07_REP_NUM] = { 1, 4, 8 }; variable 2973 { int i; for (i=0; i<ZSTDv07_REP_NUM; i++) dctx->rep[i] = repStartValue[i]; } in ZSTDv07_decompressBegin()
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
H A D | zstd_compress.c | 1287 bs->rep[i] = repStartValue[i]; in ZSTD_reset_compressedBlockState() 2351 outSeqs[i].offset = repIdx >= 0 ? outSeqs[repIdx].offset : repStartValue[-repIdx - 1]; in ZSTD_copyBlockSequences()
|
/freebsd/sys/contrib/zstd/lib/compress/ |
H A D | zstd_compress.c | 1671 bs->rep[i] = repStartValue[i]; in ZSTD_reset_compressedBlockState()
|