Home
last modified time | relevance | path

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

/linux/lib/zstd/compress/
H A Dzstd_opt.c466 U32* smallerPtr = bt + 2*(curr&btMask); in ZSTD_insertBt1() local
467 U32* largerPtr = smallerPtr + 1; in ZSTD_insertBt1()
499 *smallerPtr = matchIndex; in ZSTD_insertBt1()
500 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop the search */ in ZSTD_insertBt1()
501 smallerPtr = nextPtr+1; /* new "smaller" => larger of match */ in ZSTD_insertBt1()
539 *smallerPtr = matchIndex; /* update smaller idx */ in ZSTD_insertBt1()
541 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop searching */ in ZSTD_insertBt1()
542smallerPtr = nextPtr+1; /* new "candidate" => larger than match, which was smaller t… in ZSTD_insertBt1()
553 *smallerPtr = *largerPtr = 0; in ZSTD_insertBt1()
622 U32* smallerPtr = bt + 2*(curr&btMask); in ZSTD_insertBtAndGetAllMatches() local
[all …]
H A Dzstd_lazy.c93 U32* smallerPtr = bt + 2*(curr&btMask); in ZSTD_insertDUBT1() local
94 U32* largerPtr = smallerPtr + 1; in ZSTD_insertDUBT1()
95 …U32 matchIndex = *smallerPtr; /* this candidate is unsorted : next sorted candidate is reached t… in ZSTD_insertDUBT1()
141 *smallerPtr = matchIndex; /* update smaller idx */ in ZSTD_insertDUBT1()
143 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop searching */ in ZSTD_insertDUBT1()
146smallerPtr = nextPtr+1; /* new "candidate" => larger than match, which was smaller t… in ZSTD_insertDUBT1()
159 *smallerPtr = *largerPtr = 0; in ZSTD_insertDUBT1()
316 U32* smallerPtr = bt + 2*(curr&btMask); in ZSTD_DUBT_findBestMatch() local
357 *smallerPtr = matchIndex; /* update smaller idx */ in ZSTD_DUBT_findBestMatch()
359 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop the search */ in ZSTD_DUBT_findBestMatch()
[all …]