OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hdist
(Results
1 - 4
of
4
) sorted by null
/external/zopfli/src/zopflipng/lodepng/
lodepng_util.h
129
int
hdist
; //the
HDIST
value that was filled in for this tree
member in struct:lodepng::ZlibBlockInfo
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
/external/libvncserver/webclients/novnc/include/
jsunzip.js
401
var hlit,
hdist
, hclen;
407
/* get 5 bits
HDIST
(1-32) */
408
hdist
= this.read_bits(d, 5, 1);
428
for (num = 0; num < hlit +
hdist
; )
467
this.build_tree(dt, lengths, hlit,
hdist
);
/external/zopfli/src/zopfli/
deflate.c
117
unsigned
hdist
= 29; /* 32 - 1, but gzip does not like
hdist
> 29.*/
local
135
while (
hdist
> 0 && d_lengths[1 +
hdist
- 1] == 0)
hdist
--;
138
lld_total = hlit2 +
hdist
+ 1;
217
AddBits(
hdist
, 5, bp, out, outsize);
234
result_size += 14; /* hlit,
hdist
, hclen bits */
Completed in 927 milliseconds