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

  /external/lz4/lib/
lz4hc.c 105 hc4->dictLimit = 64 KB;
141 const U32 dictLimit = hc4->dictLimit;
153 if (matchIndex >= dictLimit) {
165 const BYTE* vLimit = ip + (dictLimit - matchIndex);
169 mlt += LZ4_count(ip+mlt, base+dictLimit, iLimit);
193 const U32 dictLimit = hc4->dictLimit;
194 const BYTE* const lowPrefixPtr = base + dictLimit;
208 if (matchIndex >= dictLimit) {
    [all...]
lz4hc.h 154 uint32_t dictLimit; /* below that point, need extDict */
171 unsigned int dictLimit; /* below that point, need extDict */
lz4opt.h 91 const U32 dictLimit = ctx->dictLimit;
116 if (matchIndex >= dictLimit) {
120 const BYTE* vLimit = ip + (dictLimit - matchIndex);
125 matchLength += LZ4_count(ip+matchLength, base+dictLimit, iHighLimit);
131 if (matchIndex >= dictLimit)

Completed in 71 milliseconds