OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bestlength
(Results
1 - 3
of
3
) sorted by null
/external/zopfli/src/zopfli/
cache.c
53
unsigned
bestlength
= 0;
local
67
bestlength
= i;
73
assert(
bestlength
== length);
74
cache[(ZOPFLI_CACHE_LENGTH - 1) * 3] =
bestlength
- 3;
76
assert(
bestlength
<= length);
78
assert(
bestlength
== ZopfliMaxCachedSublen(lmc, pos, length));
lz77.c
235
unsigned short
bestlength
= 1;
local
299
/* Testing the byte at position
bestlength
first, goes slightly faster. */
300
if (pos +
bestlength
>= size
301
|| *(scan +
bestlength
) == *(match +
bestlength
)) {
317
if (currentlength >
bestlength
) {
320
for (j =
bestlength
+ 1; j <= currentlength; j++) {
325
bestlength
= currentlength;
333
if (hhead != h->head2 &&
bestlength
>= h->same[hpos] &&
356
StoreInLongestMatchCache(s, pos, limit, sublen, bestdist,
bestlength
);
[
all
...]
squeeze.c
160
int
bestlength
= 0; /* length that has lowest cost in the cost model */
local
178
bestlength
= i;
192
return costmodel(
bestlength
, bestdist, costcontext);
Completed in 98 milliseconds