Searched refs:btLow (Results 1 – 3 of 3) sorted by relevance
| /f-stack/freebsd/contrib/zstd/lib/compress/ |
| H A D | zstd_lazy.c | 66 U32 nbCompares, U32 btLow, in ZSTD_insertDUBT1() argument 93 assert(curr >= btLow); in ZSTD_insertDUBT1() 132 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop searching */ in ZSTD_insertDUBT1() 134 matchIndex, btLow, nextPtr[1]); in ZSTD_insertDUBT1() 141 … if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop searching */ in ZSTD_insertDUBT1() 143 matchIndex, btLow, nextPtr[0]); in ZSTD_insertDUBT1() 181 …U32 const btLow = (btMask >= dictHighLimit - dictLowLimit) ? dictLowLimit : dictHighLimit … in ZSTD_DUBT_findBetterDictMatch() local 209 if (dictMatchIndex <= btLow) { break; } /* beyond tree size, stop the search */ in ZSTD_DUBT_findBetterDictMatch() 214 if (dictMatchIndex <= btLow) { break; } /* beyond tree size, stop the search */ in ZSTD_DUBT_findBetterDictMatch() 250 U32 const btLow = (btMask >= curr) ? 0 : curr - btMask; in ZSTD_DUBT_findBestMatch() local [all …]
|
| H A D | zstd_opt.c | 390 const U32 btLow = btMask >= curr ? 0 : curr - btMask; in ZSTD_insertBt1() local 421 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop the search */ in ZSTD_insertBt1() 429 … if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop the search */ in ZSTD_insertBt1() 462 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop searching */ in ZSTD_insertBt1() 469 … if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop searching */ in ZSTD_insertBt1() 536 U32 const btLow = (btMask >= curr) ? 0 : curr - btMask; in ZSTD_insertBtAndGetAllMatches() local 682 … if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop the search */ in ZSTD_insertBtAndGetAllMatches() 688 … if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop the search */ in ZSTD_insertBtAndGetAllMatches()
|
| /f-stack/freebsd/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.c | 18451 U32 nbCompares, U32 btLow, in ZSTD_insertDUBT1() argument 18478 assert(current >= btLow); in ZSTD_insertDUBT1() 18519 matchIndex, btLow, nextPtr[1]); in ZSTD_insertDUBT1() 18526 … if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop searching */ in ZSTD_insertDUBT1() 18528 matchIndex, btLow, nextPtr[0]); in ZSTD_insertDUBT1() 18594 if (dictMatchIndex <= btLow) { break; } /* beyond tree size, stop the search */ in ZSTD_DUBT_findBetterDictMatch() 18599 if (dictMatchIndex <= btLow) { break; } /* beyond tree size, stop the search */ in ZSTD_DUBT_findBetterDictMatch() 18635 U32 const btLow = (btMask >= current) ? 0 : current - btMask; in ZSTD_DUBT_findBestMatch() local 18636 U32 const unsortLimit = MAX(btLow, windowLow); in ZSTD_DUBT_findBestMatch() 20536 const U32 btLow = btMask >= current ? 0 : current - btMask; in ZSTD_insertBt1() local [all …]
|