Home
last modified time | relevance | path

Searched refs:STORE_OFFSET (Results 1 – 7 of 7) sorted by relevance

/openbmc/linux/lib/zstd/compress/
H A Dzstd_fast.c270 offcode = STORE_OFFSET(rep_offset1); in ZSTD_compressBlock_fast_noDict_generic()
462 … ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_OFFSET(offset), mLength); in ZSTD_compressBlock_fast_dictMatchState_generic()
477 … ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_OFFSET(offset), mLength); in ZSTD_compressBlock_fast_dictMatchState_generic()
617 … ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_OFFSET(offset), mLength); in ZSTD_compressBlock_fast_extDict_generic()
H A Dzstd_double_fast.c220 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_OFFSET(offset), mLength); in ZSTD_compressBlock_doubleFast_noDict_generic()
422 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_OFFSET(offset), mLength); in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
599 … ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_OFFSET(offset), mLength); in ZSTD_compressBlock_doubleFast_extDict_generic()
624 … ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_OFFSET(offset), mLength); in ZSTD_compressBlock_doubleFast_extDict_generic()
H A Dzstd_opt.c676 matches[0].off = STORE_OFFSET(curr - matchIndex3); in ZSTD_insertBtAndGetAllMatches()
710 (U32)matchLength, curr - matchIndex, STORE_OFFSET(curr - matchIndex)); in ZSTD_insertBtAndGetAllMatches()
715 matches[mnum].off = STORE_OFFSET(curr - matchIndex); in ZSTD_insertBtAndGetAllMatches()
758 (U32)matchLength, curr - matchIndex, STORE_OFFSET(curr - matchIndex)); in ZSTD_insertBtAndGetAllMatches()
762 matches[mnum].off = STORE_OFFSET(curr - matchIndex); in ZSTD_insertBtAndGetAllMatches()
974 U32 const candidateOffCode = STORE_OFFSET(optLdm->offset); in ZSTD_optLdm_maybeAddMatch()
H A Dzstd_lazy.c200 …curr, (U32)bestLength, (U32)matchLength, (U32)*offsetPtr, STORE_OFFSET(curr - matchIndex), dictMat… in ZSTD_DUBT_findBetterDictMatch()
201 bestLength = matchLength, *offsetPtr = STORE_OFFSET(curr - matchIndex); in ZSTD_DUBT_findBetterDictMatch()
331 bestLength = matchLength, *offsetPtr = STORE_OFFSET(curr - matchIndex); in ZSTD_DUBT_findBestMatch()
564 *offsetPtr = STORE_OFFSET(curr - (matchIndex + ddsIndexDelta)); in ZSTD_dedicatedDictSearch_lazy_search()
601 *offsetPtr = STORE_OFFSET(curr - (matchIndex + ddsIndexDelta)); in ZSTD_dedicatedDictSearch_lazy_search()
706 *offsetPtr = STORE_OFFSET(curr - matchIndex); in ZSTD_HcFindBestMatch()
742 *offsetPtr = STORE_OFFSET(curr - (matchIndex + dmsIndexDelta)); in ZSTD_HcFindBestMatch()
1239 *offsetPtr = STORE_OFFSET(curr - matchIndex); in ZSTD_RowFindBestMatch()
1288 *offsetPtr = STORE_OFFSET(curr - (matchIndex + dmsIndexDelta)); in ZSTD_RowFindBestMatch()
H A Dzstd_ldm.c714 STORE_OFFSET(sequence.offset), in ZSTD_ldm_blockCompress()
H A Dzstd_compress_internal.h573 #define STORE_OFFSET(o) (assert((o)>0), o + ZSTD_REP_MOVE) macro
H A Dzstd_compress.c5573 RETURN_ERROR_IF(offCode > STORE_OFFSET(offsetBound), corruption_detected, "Offset too large!"); in ZSTD_validateSequence()
5581 U32 offCode = STORE_OFFSET(rawOffset); in ZSTD_finalizeOffCode()