Searched defs:dictLimit (Results 1 - 3 of 3) sorted by relevance

/external/lz4/lib/
H A Dlz4hc.h154 uint32_t dictLimit; /* below that point, need extDict */ member in struct:__anon14082
171 unsigned int dictLimit; /* below that point, need extDict */ member in struct:__anon14083
H A Dlz4opt.h91 const U32 dictLimit = ctx->dictLimit; local
116 if (matchIndex >= dictLimit) {
120 const BYTE* vLimit = ip + (dictLimit - matchIndex);
125 matchLength += LZ4_count(ip+matchLength, base+dictLimit, iHighLimit);
131 if (matchIndex >= dictLimit)
H A Dlz4hc.c105 hc4->dictLimit = 64 KB;
141 const U32 dictLimit = hc4->dictLimit; local
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; local
194 const BYTE* const lowPrefixPtr = base + dictLimit;
208 if (matchIndex >= dictLimit) {
[all...]

Completed in 285 milliseconds