Searched refs:matchIndex (Results 1 – 6 of 6) sorted by relevance
99 assert(matchIndex < curr); in ZSTD_insertDUBT1()139 *largerPtr = matchIndex; in ZSTD_insertDUBT1()145 matchIndex = nextPtr[0]; in ZSTD_insertDUBT1()268 matchIndex); in ZSTD_DUBT_findBestMatch()282 matchIndex); in ZSTD_DUBT_findBestMatch()629 U32 matchIndex; in ZSTD_HcFindBestMatch_generic() local661 matchIndex = NEXT_IN_CHAIN(matchIndex, chainMask); in ZSTD_HcFindBestMatch_generic()692 if (!matchIndex) { in ZSTD_HcFindBestMatch_generic()779 matchIndex = dmsChainTable[matchIndex & dmsChainMask]; in ZSTD_HcFindBestMatch_generic()1069 …const BYTE* match = (matchIndex < prefixLowestIndex) ? dictBase + matchIndex - dictIndexDelta : ba… in ZSTD_compressBlock_lazy_generic()[all …]
393 U32 matchIndex = hashTable[h]; in ZSTD_insertBt1() local426 assert(matchIndex < curr); in ZSTD_insertBt1()440 *largerPtr = matchIndex; in ZSTD_insertBt1()443 matchIndex = nextPtr[0]; in ZSTD_insertBt1()479 *largerPtr = matchIndex; in ZSTD_insertBt1()483 matchIndex = nextPtr[0]; in ZSTD_insertBt1()539 U32 matchIndex = hashTable[h]; in ZSTD_insertBtAndGetAllMatches() local658 assert(curr > matchIndex); in ZSTD_insertBtAndGetAllMatches()675 (U32)matchLength, curr - matchIndex, curr - matchIndex + ZSTD_REP_MOVE); in ZSTD_insertBtAndGetAllMatches()698 *largerPtr = matchIndex; in ZSTD_insertBtAndGetAllMatches()[all …]
262 U32 const matchIndex = hashTable[h]; in ZSTD_compressBlock_fast_dictMatchState_generic() local263 const BYTE* match = base + matchIndex; in ZSTD_compressBlock_fast_dictMatchState_generic()276 } else if ( (matchIndex <= prefixStartIndex) ) { in ZSTD_compressBlock_fast_dictMatchState_generic()410 const U32 matchIndex = hashTable[h]; in ZSTD_compressBlock_fast_extDict_generic() local411 const BYTE* const matchBase = matchIndex < prefixStartIndex ? dictBase : base; in ZSTD_compressBlock_fast_extDict_generic()412 const BYTE* match = matchBase + matchIndex; in ZSTD_compressBlock_fast_extDict_generic()430 if ( (matchIndex < dictStartIndex) || in ZSTD_compressBlock_fast_extDict_generic()436 { const BYTE* const matchEnd = matchIndex < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_fast_extDict_generic()437 … const BYTE* const lowMatchPtr = matchIndex < prefixStartIndex ? dictStart : prefixStart; in ZSTD_compressBlock_fast_extDict_generic()438 U32 const offset = curr - matchIndex; in ZSTD_compressBlock_fast_extDict_generic()
393 const U32 matchIndex = hashSmall[hSmall]; in ZSTD_compressBlock_doubleFast_extDict_generic() local394 const BYTE* const matchBase = matchIndex < prefixStartIndex ? dictBase : base; in ZSTD_compressBlock_doubleFast_extDict_generic()395 const BYTE* match = matchBase + matchIndex; in ZSTD_compressBlock_doubleFast_extDict_generic()428 } else if ((matchIndex > dictStartIndex) && (MEM_read32(match) == MEM_read32(ip))) { in ZSTD_compressBlock_doubleFast_extDict_generic()443 const BYTE* const matchEnd = matchIndex < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic()444 … const BYTE* const lowMatchPtr = matchIndex < prefixStartIndex ? dictStart : prefixStart; in ZSTD_compressBlock_doubleFast_extDict_generic()446 offset = curr - matchIndex; in ZSTD_compressBlock_doubleFast_extDict_generic()
114 U32 matchIndex; in LZ4HC_InsertAndFindBestMatch() local122 while ((matchIndex >= lowLimit) in LZ4HC_InsertAndFindBestMatch()125 if (matchIndex >= dictLimit) { in LZ4HC_InsertAndFindBestMatch()144 + (dictLimit - matchIndex); in LZ4HC_InsertAndFindBestMatch()158 *matchpos = base + matchIndex; in LZ4HC_InsertAndFindBestMatch()162 matchIndex -= DELTANEXTU16(matchIndex); in LZ4HC_InsertAndFindBestMatch()187 U32 matchIndex; in LZ4HC_InsertAndGetWiderMatch() local195 while ((matchIndex >= lowLimit) in LZ4HC_InsertAndGetWiderMatch()198 if (matchIndex >= dictLimit) { in LZ4HC_InsertAndGetWiderMatch()242 && (matchIndex + back > lowLimit) in LZ4HC_InsertAndGetWiderMatch()[all …]
289 int matchIndex = -1, lowIndex = -1; in ath9k_hw_get_legacy_target_powers() local297 matchIndex = 0; in ath9k_hw_get_legacy_target_powers()303 matchIndex = i; in ath9k_hw_get_legacy_target_powers()314 matchIndex = i - 1; in ath9k_hw_get_legacy_target_powers()317 if (matchIndex != -1) { in ath9k_hw_get_legacy_target_powers()318 *pNewPower = powInfo[matchIndex]; in ath9k_hw_get_legacy_target_powers()351 matchIndex = 0; in ath9k_hw_get_target_powers()357 matchIndex = i; in ath9k_hw_get_target_powers()369 matchIndex = i - 1; in ath9k_hw_get_target_powers()372 if (matchIndex != -1) { in ath9k_hw_get_target_powers()[all …]
Completed in 18 milliseconds