OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:lowLimit
(Results
1 - 2
of
2
) sorted by null
/external/lz4/lib/
lz4hc.c
95
U32
lowLimit
; /* below that point, no more dict */
125
hc4->
lowLimit
= 64 KB;
162
const U32
lowLimit
= (hc4->
lowLimit
+ 64 KB > (U32)(ip-base)) ? hc4->
lowLimit
: (U32)(ip - base) - (64 KB - 1);
172
while ((matchIndex>=
lowLimit
) && (nbAttempts))
220
const U32
lowLimit
= (hc4->
lowLimit
+ 64 KB > (U32)(ip-base)) ? hc4->
lowLimit
: (U32)(ip - base) - (64 KB - 1);
232
while ((matchIndex>=
lowLimit
) && (nbAttempts)
[
all
...]
lz4.c
513
const BYTE*
lowLimit
;
536
lowLimit
= (const BYTE*)source;
540
lowLimit
= (const BYTE*)source - dictPtr->dictSize;
544
lowLimit
= (const BYTE*)source;
579
lowLimit
= dictionary;
584
lowLimit
= (const BYTE*)source;
596
while ((ip>anchor) && (match+refDelta >
lowLimit
) && (unlikely(ip[-1]==match[refDelta-1]))) { ip--; match--; }
626
if ((dict==usingExtDict) && (
lowLimit
==dictionary))
675
lowLimit
= dictionary;
680
lowLimit
= (const BYTE*)source
[
all
...]
Completed in 87 milliseconds