matchIndex 279 drivers/net/wireless/ath/ath9k/eeprom.c int matchIndex = -1, lowIndex = -1; matchIndex 287 drivers/net/wireless/ath/ath9k/eeprom.c matchIndex = 0; matchIndex 293 drivers/net/wireless/ath/ath9k/eeprom.c matchIndex = i; matchIndex 303 drivers/net/wireless/ath/ath9k/eeprom.c if ((matchIndex == -1) && (lowIndex == -1)) matchIndex 304 drivers/net/wireless/ath/ath9k/eeprom.c matchIndex = i - 1; matchIndex 307 drivers/net/wireless/ath/ath9k/eeprom.c if (matchIndex != -1) { matchIndex 308 drivers/net/wireless/ath/ath9k/eeprom.c *pNewPower = powInfo[matchIndex]; matchIndex 334 drivers/net/wireless/ath/ath9k/eeprom.c int matchIndex = -1, lowIndex = -1; matchIndex 341 drivers/net/wireless/ath/ath9k/eeprom.c matchIndex = 0; matchIndex 347 drivers/net/wireless/ath/ath9k/eeprom.c matchIndex = i; matchIndex 358 drivers/net/wireless/ath/ath9k/eeprom.c if ((matchIndex == -1) && (lowIndex == -1)) matchIndex 359 drivers/net/wireless/ath/ath9k/eeprom.c matchIndex = i - 1; matchIndex 362 drivers/net/wireless/ath/ath9k/eeprom.c if (matchIndex != -1) { matchIndex 363 drivers/net/wireless/ath/ath9k/eeprom.c *pNewPower = powInfo[matchIndex]; matchIndex 114 lib/lz4/lz4hc_compress.c U32 matchIndex; matchIndex 120 lib/lz4/lz4hc_compress.c matchIndex = HashTable[LZ4HC_hashPtr(ip)]; matchIndex 122 lib/lz4/lz4hc_compress.c while ((matchIndex >= lowLimit) matchIndex 125 lib/lz4/lz4hc_compress.c if (matchIndex >= dictLimit) { matchIndex 126 lib/lz4/lz4hc_compress.c const BYTE * const match = base + matchIndex; matchIndex 139 lib/lz4/lz4hc_compress.c const BYTE * const match = dictBase + matchIndex; matchIndex 144 lib/lz4/lz4hc_compress.c + (dictLimit - matchIndex); matchIndex 158 lib/lz4/lz4hc_compress.c *matchpos = base + matchIndex; matchIndex 162 lib/lz4/lz4hc_compress.c matchIndex -= DELTANEXTU16(matchIndex); matchIndex 187 lib/lz4/lz4hc_compress.c U32 matchIndex; matchIndex 193 lib/lz4/lz4hc_compress.c matchIndex = HashTable[LZ4HC_hashPtr(ip)]; matchIndex 195 lib/lz4/lz4hc_compress.c while ((matchIndex >= lowLimit) matchIndex 198 lib/lz4/lz4hc_compress.c if (matchIndex >= dictLimit) { matchIndex 199 lib/lz4/lz4hc_compress.c const BYTE *matchPtr = base + matchIndex; matchIndex 225 lib/lz4/lz4hc_compress.c const BYTE * const matchPtr = dictBase + matchIndex; matchIndex 230 lib/lz4/lz4hc_compress.c const BYTE *vLimit = ip + (dictLimit - matchIndex); matchIndex 242 lib/lz4/lz4hc_compress.c && (matchIndex + back > lowLimit) matchIndex 250 lib/lz4/lz4hc_compress.c *matchpos = base + matchIndex + back; matchIndex 256 lib/lz4/lz4hc_compress.c matchIndex -= DELTANEXTU16(matchIndex); matchIndex 1039 lib/zstd/compress.c U32 const matchIndex = hashTable[h]; matchIndex 1040 lib/zstd/compress.c const BYTE *match = base + matchIndex; matchIndex 1049 lib/zstd/compress.c if ((matchIndex <= lowestIndex) || (ZSTD_read32(match) != ZSTD_read32(ip))) { matchIndex 1138 lib/zstd/compress.c const U32 matchIndex = hashTable[h]; matchIndex 1139 lib/zstd/compress.c const BYTE *matchBase = matchIndex < dictLimit ? dictBase : base; matchIndex 1140 lib/zstd/compress.c const BYTE *match = matchBase + matchIndex; matchIndex 1155 lib/zstd/compress.c if ((matchIndex < lowestIndex) || (ZSTD_read32(match) != ZSTD_read32(ip))) { matchIndex 1160 lib/zstd/compress.c const BYTE *matchEnd = matchIndex < dictLimit ? dictEnd : iend; matchIndex 1161 lib/zstd/compress.c const BYTE *lowMatchPtr = matchIndex < dictLimit ? dictStart : lowPrefixPtr; matchIndex 1169 lib/zstd/compress.c offset = curr - matchIndex; matchIndex 1419 lib/zstd/compress.c const U32 matchIndex = hashSmall[hSmall]; matchIndex 1420 lib/zstd/compress.c const BYTE *matchBase = matchIndex < dictLimit ? dictBase : base; matchIndex 1421 lib/zstd/compress.c const BYTE *match = matchBase + matchIndex; matchIndex 1457 lib/zstd/compress.c } else if ((matchIndex > lowestIndex) && (ZSTD_read32(match) == ZSTD_read32(ip))) { matchIndex 1476 lib/zstd/compress.c const BYTE *matchEnd = matchIndex < dictLimit ? dictEnd : iend; matchIndex 1477 lib/zstd/compress.c const BYTE *lowMatchPtr = matchIndex < dictLimit ? dictStart : lowPrefixPtr; matchIndex 1479 lib/zstd/compress.c offset = curr - matchIndex; matchIndex 1569 lib/zstd/compress.c U32 matchIndex = hashTable[h]; matchIndex 1588 lib/zstd/compress.c while (nbCompares-- && (matchIndex > windowLow)) { matchIndex 1589 lib/zstd/compress.c U32 *const nextPtr = bt + 2 * (matchIndex & btMask); matchIndex 1592 lib/zstd/compress.c if ((!extDict) || (matchIndex + matchLength >= dictLimit)) { matchIndex 1593 lib/zstd/compress.c match = base + matchIndex; matchIndex 1597 lib/zstd/compress.c match = dictBase + matchIndex; matchIndex 1599 lib/zstd/compress.c if (matchIndex + matchLength >= dictLimit) matchIndex 1600 lib/zstd/compress.c match = base + matchIndex; /* to prepare for next usage of match[matchLength] */ matchIndex 1605 lib/zstd/compress.c if (matchLength > matchEndIdx - matchIndex) matchIndex 1606 lib/zstd/compress.c matchEndIdx = matchIndex + (U32)matchLength; matchIndex 1614 lib/zstd/compress.c *smallerPtr = matchIndex; /* update smaller idx */ matchIndex 1616 lib/zstd/compress.c if (matchIndex <= btLow) { matchIndex 1621 lib/zstd/compress.c matchIndex = nextPtr[1]; /* new matchIndex larger than previous (closer to curr) */ matchIndex 1624 lib/zstd/compress.c *largerPtr = matchIndex; matchIndex 1626 lib/zstd/compress.c if (matchIndex <= btLow) { matchIndex 1631 lib/zstd/compress.c matchIndex = nextPtr[0]; matchIndex 1652 lib/zstd/compress.c U32 matchIndex = hashTable[h]; matchIndex 1670 lib/zstd/compress.c while (nbCompares-- && (matchIndex > windowLow)) { matchIndex 1671 lib/zstd/compress.c U32 *const nextPtr = bt + 2 * (matchIndex & btMask); matchIndex 1675 lib/zstd/compress.c if ((!extDict) || (matchIndex + matchLength >= dictLimit)) { matchIndex 1676 lib/zstd/compress.c match = base + matchIndex; matchIndex 1680 lib/zstd/compress.c match = dictBase + matchIndex; matchIndex 1682 lib/zstd/compress.c if (matchIndex + matchLength >= dictLimit) matchIndex 1683 lib/zstd/compress.c match = base + matchIndex; /* to prepare for next usage of match[matchLength] */ matchIndex 1687 lib/zstd/compress.c if (matchLength > matchEndIdx - matchIndex) matchIndex 1688 lib/zstd/compress.c matchEndIdx = matchIndex + (U32)matchLength; matchIndex 1689 lib/zstd/compress.c if ((4 * (int)(matchLength - bestLength)) > (int)(ZSTD_highbit32(curr - matchIndex + 1) - ZSTD_highbit32((U32)offsetPtr[0] + 1))) matchIndex 1690 lib/zstd/compress.c bestLength = matchLength, *offsetPtr = ZSTD_REP_MOVE + curr - matchIndex; matchIndex 1697 lib/zstd/compress.c *smallerPtr = matchIndex; /* update smaller idx */ matchIndex 1699 lib/zstd/compress.c if (matchIndex <= btLow) { matchIndex 1704 lib/zstd/compress.c matchIndex = nextPtr[1]; /* new matchIndex larger than previous (closer to curr) */ matchIndex 1707 lib/zstd/compress.c *largerPtr = matchIndex; matchIndex 1709 lib/zstd/compress.c if (matchIndex <= btLow) { matchIndex 1714 lib/zstd/compress.c matchIndex = nextPtr[0]; matchIndex 1838 lib/zstd/compress.c U32 matchIndex = ZSTD_insertAndFindFirstIndex(zc, ip, mls); matchIndex 1840 lib/zstd/compress.c for (; (matchIndex > lowLimit) & (nbAttempts > 0); nbAttempts--) { matchIndex 1843 lib/zstd/compress.c if ((!extDict) || matchIndex >= dictLimit) { matchIndex 1844 lib/zstd/compress.c match = base + matchIndex; matchIndex 1848 lib/zstd/compress.c match = dictBase + matchIndex; matchIndex 1856 lib/zstd/compress.c *offsetPtr = curr - matchIndex + ZSTD_REP_MOVE; matchIndex 1861 lib/zstd/compress.c if (matchIndex <= minChain) matchIndex 1863 lib/zstd/compress.c matchIndex = NEXT_IN_CHAIN(matchIndex, chainMask); matchIndex 2198 lib/zstd/compress.c U32 const matchIndex = (U32)((start - base) - (offset - ZSTD_REP_MOVE)); matchIndex 2199 lib/zstd/compress.c const BYTE *match = (matchIndex < dictLimit) ? dictBase + matchIndex : base + matchIndex; matchIndex 2200 lib/zstd/compress.c const BYTE *const mStart = (matchIndex < dictLimit) ? dictStart : prefixStart; matchIndex 243 lib/zstd/zstd_opt.h U32 matchIndex = hashTable[h]; matchIndex 295 lib/zstd/zstd_opt.h while (nbCompares-- && (matchIndex > windowLow)) { matchIndex 296 lib/zstd/zstd_opt.h U32 *nextPtr = bt + 2 * (matchIndex & btMask); matchIndex 300 lib/zstd/zstd_opt.h if ((!extDict) || (matchIndex + matchLength >= dictLimit)) { matchIndex 301 lib/zstd/zstd_opt.h match = base + matchIndex; matchIndex 306 lib/zstd/zstd_opt.h match = dictBase + matchIndex; matchIndex 308 lib/zstd/zstd_opt.h if (matchIndex + matchLength >= dictLimit) matchIndex 309 lib/zstd/zstd_opt.h match = base + matchIndex; /* to prepare for next usage of match[matchLength] */ matchIndex 313 lib/zstd/zstd_opt.h if (matchLength > matchEndIdx - matchIndex) matchIndex 314 lib/zstd/zstd_opt.h matchEndIdx = matchIndex + (U32)matchLength; matchIndex 316 lib/zstd/zstd_opt.h matches[mnum].off = ZSTD_REP_MOVE_OPT + curr - matchIndex; matchIndex 327 lib/zstd/zstd_opt.h *smallerPtr = matchIndex; /* update smaller idx */ matchIndex 329 lib/zstd/zstd_opt.h if (matchIndex <= btLow) { matchIndex 334 lib/zstd/zstd_opt.h matchIndex = nextPtr[1]; /* new matchIndex larger than previous (closer to curr) */ matchIndex 337 lib/zstd/zstd_opt.h *largerPtr = matchIndex; matchIndex 339 lib/zstd/zstd_opt.h if (matchIndex <= btLow) { matchIndex 344 lib/zstd/zstd_opt.h matchIndex = nextPtr[0];