OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:litlen
(Results
1 - 4
of
4
) sorted by null
/external/zopfli/src/zopfli/
squeeze.c
112
litlen
: means literal symbol if dist is 0, length otherwise.
114
typedef double CostModelFun(unsigned
litlen
, unsigned dist, void* context);
120
static double GetCostFixed(unsigned
litlen
, unsigned dist, void* unused) {
123
if (
litlen
<= 143) return 8;
127
int lbits = ZopfliGetLengthExtraBits(
litlen
);
128
int lsym = ZopfliGetLengthSymbol(
litlen
);
141
static double GetCostStat(unsigned
litlen
, unsigned dist, void* context) {
144
return stats->ll_symbols[
litlen
];
146
int lsym = ZopfliGetLengthSymbol(
litlen
);
147
int lbits = ZopfliGetLengthExtraBits(
litlen
);
[
all
...]
deflate.c
111
/* Runlength encoded version of lengths of
litlen
and dist trees. */
310
unsigned
litlen
= litlens[i];
local
312
assert(
litlen
< 256);
313
assert(ll_lengths[
litlen
] > 0);
314
AddHuffmanBits(ll_symbols[
litlen
], ll_lengths[
litlen
], bp, out, outsize);
317
unsigned lls = ZopfliGetLengthSymbol(
litlen
);
319
assert(
litlen
>= 3 &&
litlen
<= 288);
323
AddBits(ZopfliGetLengthExtraBitsValue(
litlen
),
[
all
...]
/external/toybox/toys/pending/
compress.c
340
int i,
litlen
, distlen, hufflen;
local
345
litlen
= bitbuf_get(bb, 5)+257; // max 288
358
for (i = 0; i <
litlen
+ distlen;) {
372
if (i >
litlen
+distlen) error_exit("bad tree");
374
len2huff(lithuff = h2, bits,
litlen
);
375
len2huff(disthuff = ((struct huff *)toybuf)+2, bits+
litlen
, distlen);
/external/zlib/src/contrib/blast/
blast.c
295
static const unsigned char
litlen
[] = {
local
313
construct(&litcode,
litlen
, sizeof(
litlen
));
Completed in 105 milliseconds