Home
last modified time | relevance | path

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

/external/zstd/lib/common/
Dzstd_internal.h142 static UNUSED_ATTR const U32 repStartValue[ZSTD_REP_NUM] = { 1, 4, 8 }; variable
/external/zstd/lib/dictBuilder/
Dzdict.c871 MEM_writeLE32(dstPtr+0, repStartValue[0]); in ZDICT_analyzeEntropy()
872 MEM_writeLE32(dstPtr+4, repStartValue[1]); in ZDICT_analyzeEntropy()
873 MEM_writeLE32(dstPtr+8, repStartValue[2]); in ZDICT_analyzeEntropy()
/external/zstd/lib/decompress/
Dzstd_decompress.c1190 ZSTD_STATIC_ASSERT(sizeof(dctx->entropy.rep) == sizeof(repStartValue)); in ZSTD_decompressBegin()
1191 ZSTD_memcpy(dctx->entropy.rep, repStartValue, sizeof(repStartValue)); /* initial repcodes */ in ZSTD_decompressBegin()
/external/zstd/lib/legacy/
Dzstd_v07.c2700 static const U32 repStartValue[ZSTDv07_REP_NUM] = { 1, 4, 8 }; variable
2977 { int i; for (i=0; i<ZSTDv07_REP_NUM; i++) dctx->rep[i] = repStartValue[i]; } in ZSTDv07_decompressBegin()
/external/zstd/lib/compress/
Dzstd_compress.c1477 bs->rep[i] = repStartValue[i]; in ZSTD_reset_compressedBlockState()