Lines Matching defs:rep
152 U32 rep[ZSTD_REP_NUM];
181 U32 rep[ZSTD_REP_NUM];
452 ZSTD_matchState_t* bs, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM],
648 * updates in-place @rep (array of repeat offsets)
652 ZSTD_updateRep(U32 rep[ZSTD_REP_NUM], U32 const offBase_minus1, U32 const ll0)
655 rep[2] = rep[1];
656 rep[1] = rep[0];
657 rep[0] = STORED_OFFSET(offBase_minus1);
661 U32 const currentOffset = (repCode==ZSTD_REP_NUM) ? (rep[0] - 1) : rep[repCode];
662 rep[2] = (repCode >= 2) ? rep[1] : rep[2];
663 rep[1] = rep[0];
664 rep[0] = currentOffset;
672 U32 rep[3];
676 ZSTD_newRep(U32 const rep[ZSTD_REP_NUM], U32 const offBase_minus1, U32 const ll0)
679 ZSTD_memcpy(&newReps, rep, sizeof(newReps));
680 ZSTD_updateRep(newReps.rep, offBase_minus1, ll0);