Searched refs:repcodes_t (Results 1 – 4 of 4) sorted by relevance
/external/zstd/lib/compress/ |
D | zstd_opt.c | 1064 ZSTD_STATIC_ASSERT(sizeof(opt[cur].rep) == sizeof(repcodes_t)); in ZSTD_compressBlock_opt_generic() 1068 … repcodes_t newReps = ZSTD_updateRep(opt[prev].rep, opt[cur].off, opt[cur].litlen==0); in ZSTD_compressBlock_opt_generic() 1069 ZSTD_memcpy(opt[cur].rep, &newReps, sizeof(repcodes_t)); in ZSTD_compressBlock_opt_generic() 1071 ZSTD_memcpy(opt[cur].rep, opt[cur - 1].rep, sizeof(repcodes_t)); in ZSTD_compressBlock_opt_generic() 1157 … repcodes_t reps = ZSTD_updateRep(opt[cur].rep, lastSequence.off, lastSequence.litlen==0); in ZSTD_compressBlock_opt_generic() 1160 ZSTD_memcpy(rep, opt[cur].rep, sizeof(repcodes_t)); in ZSTD_compressBlock_opt_generic()
|
D | zstd_compress_internal.h | 394 } repcodes_t; typedef 396 MEM_STATIC repcodes_t ZSTD_updateRep(U32 const rep[3], U32 const offset, U32 const ll0) in ZSTD_updateRep() 398 repcodes_t newReps; in ZSTD_updateRep()
|
D | zstd_compress.c | 2530 repcodes_t updatedRepcodes; in ZSTD_copyBlockSequences() 2535 ZSTD_memcpy(updatedRepcodes.rep, zc->blockState.prevCBlock->rep, sizeof(repcodes_t)); in ZSTD_copyBlockSequences() 4587 repcodes_t updatedRepcodes; in ZSTD_copySequencesToSeqStoreExplicitBlockDelim() 4601 ZSTD_memcpy(updatedRepcodes.rep, cctx->blockState.prevCBlock->rep, sizeof(repcodes_t)); in ZSTD_copySequencesToSeqStoreExplicitBlockDelim() 4622 ZSTD_memcpy(cctx->blockState.nextCBlock->rep, updatedRepcodes.rep, sizeof(repcodes_t)); in ZSTD_copySequencesToSeqStoreExplicitBlockDelim() 4655 repcodes_t updatedRepcodes; in ZSTD_copySequencesToSeqStoreNoBlockDelim() 4672 ZSTD_memcpy(updatedRepcodes.rep, cctx->blockState.prevCBlock->rep, sizeof(repcodes_t)); in ZSTD_copySequencesToSeqStoreNoBlockDelim() 4752 ZSTD_memcpy(cctx->blockState.nextCBlock->rep, updatedRepcodes.rep, sizeof(repcodes_t)); in ZSTD_copySequencesToSeqStoreNoBlockDelim()
|
D | zstd_compress_superblock.c | 815 repcodes_t rep; in ZSTD_compressSubBlock_multi()
|