Searched refs:btLow (Results 1 – 2 of 2) sorted by relevance
| /linux/lib/zstd/compress/ |
| H A D | zstd_lazy.c | 77 U32 nbCompares, U32 btLow, in ZSTD_insertDUBT1() argument 104 assert(curr >= btLow); in ZSTD_insertDUBT1() 143 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop searching */ in ZSTD_insertDUBT1() 145 matchIndex, btLow, nextPtr[1]); in ZSTD_insertDUBT1() 152 … if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop searching */ in ZSTD_insertDUBT1() 154 matchIndex, btLow, nextPtr[0]); in ZSTD_insertDUBT1() 193 …U32 const btLow = (btMask >= dictHighLimit - dictLowLimit) ? dictLowLimit : dictHighLimit … in ZSTD_DUBT_findBetterDictMatch() local 221 if (dictMatchIndex <= btLow) { break; } /* beyond tree size, stop the search */ in ZSTD_DUBT_findBetterDictMatch() 226 if (dictMatchIndex <= btLow) { break; } /* beyond tree size, stop the search */ in ZSTD_DUBT_findBetterDictMatch() 263 U32 const btLow = (btMask >= curr) ? 0 : curr - btMask; in ZSTD_DUBT_findBestMatch() local [all …]
|
| H A D | zstd_opt.c | 465 const U32 btLow = btMask >= curr ? 0 : curr - btMask; in ZSTD_insertBt1() local 500 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop the search */ in ZSTD_insertBt1() 508 … if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop the search */ in ZSTD_insertBt1() 541 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop searching */ in ZSTD_insertBt1() 548 … if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop searching */ in ZSTD_insertBt1() 619 U32 const btLow = (btMask >= curr) ? 0 : curr - btMask; in ZSTD_insertBtAndGetAllMatches() local 764 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop the search */ in ZSTD_insertBtAndGetAllMatches() 770 … if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop the search */ in ZSTD_insertBtAndGetAllMatches()
|