Searched refs:STORE_OFFSET (Results 1 – 7 of 7) sorted by relevance
/openbmc/linux/lib/zstd/compress/ |
H A D | zstd_fast.c | 270 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 D | zstd_double_fast.c | 220 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 D | zstd_opt.c | 676 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 D | zstd_lazy.c | 200 …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 D | zstd_ldm.c | 714 STORE_OFFSET(sequence.offset), in ZSTD_ldm_blockCompress()
|
H A D | zstd_compress_internal.h | 573 #define STORE_OFFSET(o) (assert((o)>0), o + ZSTD_REP_MOVE) macro
|
H A D | zstd_compress.c | 5573 RETURN_ERROR_IF(offCode > STORE_OFFSET(offsetBound), corruption_detected, "Offset too large!"); in ZSTD_validateSequence() 5581 U32 offCode = STORE_OFFSET(rawOffset); in ZSTD_finalizeOffCode()
|