Home
last modified time | relevance | path

Searched refs:dictLimit (Results 1 – 3 of 3) sorted by relevance

/external/lz4/lib/
Dlz4hc.c105 hc4->dictLimit = 64 KB; in LZ4HC_init()
141 const U32 dictLimit = hc4->dictLimit; in LZ4HC_InsertAndFindBestMatch() local
153 if (matchIndex >= dictLimit) { in LZ4HC_InsertAndFindBestMatch()
165 const BYTE* vLimit = ip + (dictLimit - matchIndex); in LZ4HC_InsertAndFindBestMatch()
169 mlt += LZ4_count(ip+mlt, base+dictLimit, iLimit); in LZ4HC_InsertAndFindBestMatch()
193 const U32 dictLimit = hc4->dictLimit; in LZ4HC_InsertAndGetWiderMatch() local
194 const BYTE* const lowPrefixPtr = base + dictLimit; in LZ4HC_InsertAndGetWiderMatch()
208 if (matchIndex >= dictLimit) { in LZ4HC_InsertAndGetWiderMatch()
234 const BYTE* vLimit = ip + (dictLimit - matchIndex); in LZ4HC_InsertAndGetWiderMatch()
238 mlt += LZ4_count(ip+mlt, base+dictLimit, iHighLimit); in LZ4HC_InsertAndGetWiderMatch()
[all …]
Dlz4opt.h91 const U32 dictLimit = ctx->dictLimit; in LZ4HC_BinTree_InsertAndGetAllMatches() local
116 if (matchIndex >= dictLimit) { in LZ4HC_BinTree_InsertAndGetAllMatches()
120 const BYTE* vLimit = ip + (dictLimit - matchIndex); in LZ4HC_BinTree_InsertAndGetAllMatches()
125 matchLength += LZ4_count(ip+matchLength, base+dictLimit, iHighLimit); in LZ4HC_BinTree_InsertAndGetAllMatches()
131 if (matchIndex >= dictLimit) in LZ4HC_BinTree_InsertAndGetAllMatches()
Dlz4hc.h154 uint32_t dictLimit; /* below that point, need extDict */ member
171 unsigned int dictLimit; /* below that point, need extDict */ member