OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HDIST
(Results
1 - 2
of
2
) sorted by null
/external/zopfli/src/zopflipng/lodepng/
lodepng_util.cpp
415
size_t
HDIST
= readBitsFromStream(bp, in, 5) + 1; //number of dist codes + 1
418
zlibinfo->back().
hdist
=
HDIST
- 1;
426
while(i < HLIT +
HDIST
)
440
if(i >= HLIT +
HDIST
) { error = 13; return; } //error: i is larger than the amount of codes
451
if(i >= HLIT +
HDIST
) { error = 14; return; } //error: i is larger than the amount of codes
462
if(i >= HLIT +
HDIST
) { error = 15; return; } //error: i is larger than the amount of codes
470
if(error) return; //now we've finally got HLIT and
HDIST
, so generate the code trees, and the function is done
lodepng.cpp
943
unsigned n, HLIT,
HDIST
, HCLEN, i;
958
HDIST
= readBitsFromStream(bp, in, 5) + 1;
[
all
...]
Completed in 62 milliseconds