Home
last modified time | relevance | path

Searched refs:repcodes_t (Results 1 – 4 of 4) sorted by relevance

/linux-6.12.1/lib/zstd/compress/
Dzstd_opt.c1174 ZSTD_STATIC_ASSERT(sizeof(opt[cur].rep) == sizeof(repcodes_t)); in ZSTD_compressBlock_opt_generic()
1178repcodes_t const newReps = ZSTD_newRep(opt[prev].rep, opt[cur].off, opt[cur].litlen==0); in ZSTD_compressBlock_opt_generic()
1179 ZSTD_memcpy(opt[cur].rep, &newReps, sizeof(repcodes_t)); in ZSTD_compressBlock_opt_generic()
1181 ZSTD_memcpy(opt[cur].rep, opt[cur - 1].rep, sizeof(repcodes_t)); in ZSTD_compressBlock_opt_generic()
1268repcodes_t const reps = ZSTD_newRep(opt[cur].rep, lastSequence.off, lastSequence.litlen==0); in ZSTD_compressBlock_opt_generic()
1271 ZSTD_memcpy(rep, opt[cur].rep, sizeof(repcodes_t)); in ZSTD_compressBlock_opt_generic()
Dzstd_compress.c2815 repcodes_t updatedRepcodes; in ZSTD_copyBlockSequences()
2820 ZSTD_memcpy(updatedRepcodes.rep, zc->blockState.prevCBlock->rep, sizeof(repcodes_t)); in ZSTD_copyBlockSequences()
3374 static void ZSTD_seqStore_resolveOffCodes(repcodes_t* const dRepcodes, repcodes_t* const cRepcodes, in ZSTD_seqStore_resolveOffCodes()
3408 repcodes_t* const dRep, repcodes_t* const cRep, in ZSTD_compressSeqStore_singleBlock()
3420 repcodes_t const dRepOriginal = *dRep; in ZSTD_compressSeqStore_singleBlock()
3580 repcodes_t dRep; in ZSTD_compressBlock_splitBlock_internal()
3581 repcodes_t cRep; in ZSTD_compressBlock_splitBlock_internal()
3582 ZSTD_memcpy(dRep.rep, zc->blockState.prevCBlock->rep, sizeof(repcodes_t)); in ZSTD_compressBlock_splitBlock_internal()
3583 ZSTD_memcpy(cRep.rep, zc->blockState.prevCBlock->rep, sizeof(repcodes_t)); in ZSTD_compressBlock_splitBlock_internal()
3637 ZSTD_memcpy(zc->blockState.prevCBlock->rep, dRep.rep, sizeof(repcodes_t)); in ZSTD_compressBlock_splitBlock_internal()
[all …]
Dzstd_compress_internal.h673 } repcodes_t; typedef
675 MEM_STATIC repcodes_t
678 repcodes_t newReps; in ZSTD_newRep()
Dzstd_compress_superblock.c539 repcodes_t rep; in ZSTD_compressSubBlock_multi()