Home
last modified time | relevance | path

Searched refs:newReps (Results 1 – 2 of 2) sorted by relevance

/linux/lib/zstd/compress/
H A Dzstd_opt.c1234 … Repcodes_t const newReps = ZSTD_newRep(opt[prev].rep, prevMatch.off, opt[prev].litlen==0); in ZSTD_compressBlock_opt_generic() local
1238 newReps.rep[0], newReps.rep[1], newReps.rep[2] ); in ZSTD_compressBlock_opt_generic()
1240 ZSTD_memcpy(opt[cur+1].rep, &newReps, sizeof(Repcodes_t)); in ZSTD_compressBlock_opt_generic()
1260 … Repcodes_t const newReps = ZSTD_newRep(opt[prev].rep, opt[cur].off, opt[prev].litlen==0); in ZSTD_compressBlock_opt_generic() local
1261 ZSTD_memcpy(opt[cur].rep, &newReps, sizeof(Repcodes_t)); in ZSTD_compressBlock_opt_generic()
H A Dzstd_compress_internal.h836 Repcodes_t newReps; in ZSTD_newRep() local
837 ZSTD_memcpy(&newReps, rep, sizeof(newReps)); in ZSTD_newRep()
838 ZSTD_updateRep(newReps.rep, offBase, ll0); in ZSTD_newRep()
839 return newReps; in ZSTD_newRep()