HomeSort by relevance Sort by last modified time
    Searched refs:MAX_DISTANCE (Results 1 - 7 of 7) sorted by null

  /external/lz4/lib/
lz4.c 310 #define MAX_DISTANCE ((1 << MAXD_LOG) - 1)
632 /* Adding a gap, so all previous entries are > MAX_DISTANCE back, is faster
746 } while ( (match+MAX_DISTANCE < ip)
797 if ((tableType != byU16) && (matchIndex+MAX_DISTANCE < current)) continue; /* too far */
798 if (tableType == byU16) assert((current - matchIndex) <= MAX_DISTANCE); /* too_far presumed impossible with byU16 */
    [all...]
lz4hc.c 124 if (delta>MAX_DISTANCE) delta = MAX_DISTANCE;
227 const U32 lowestMatchIndex = (hc4->lowLimit + 64 KB > ipIndex) ? hc4->lowLimit : ipIndex - MAX_DISTANCE;
318 const BYTE* const lowestMatchPtr = (lowPrefixPtr + MAX_DISTANCE >= ip) ? lowPrefixPtr : ip - MAX_DISTANCE;
331 if (ip - (base+matchIndex) > MAX_DISTANCE) break;
350 if (dict == usingDictCtx && nbAttempts && ipIndex - lowestMatchIndex < MAX_DISTANCE) {
355 while (ipIndex - matchIndex <= MAX_DISTANCE && nbAttempts--) {
455 assert( (*ip - match) <= MAX_DISTANCE ); /* note : consider providing offset as a value, rather than as a pointer difference */
    [all...]
  /external/u-boot/lib/
lz4.c 41 #define MAX_DISTANCE ((1 << MAXD_LOG) - 1)
  /external/brotli/c/enc/
compress_fragment.c 33 #define MAX_DISTANCE (long)BROTLI_MAX_BACKWARD_LIMIT(18)
552 if (ip - candidate > MAX_DISTANCE) goto trawl;
625 if (ip - candidate > MAX_DISTANCE) break;
compress_fragment_two_pass.c 32 #define MAX_DISTANCE (long)BROTLI_MAX_BACKWARD_LIMIT(18)
314 if (ip - candidate > MAX_DISTANCE) goto trawl;
385 while (ip - candidate <= MAX_DISTANCE &&
  /external/autotest/client/site_tests/firmware_TouchMTB/
validators.py 804 max_distance = self.packets.get_max_distance(self.slot, UNIT.MM)
806 self.log_details(msg % (self.slot, max_distance))
808 firmware_log.Metric(self.mnprops.MAX_DISTANCE, max_distance)
810 self.vlog.score = self.fc.mf.grade(max_distance)
    [all...]
  /external/guice/extensions/struts2/lib/
core-3.1.1.jar 

Completed in 2343 milliseconds