Home
last modified time | relevance | path

Searched refs:max_code (Results 1 – 3 of 3) sorted by relevance

/reactos/sdk/lib/3rdparty/zlib/
H A Dtrees.c491 int max_code = desc->max_code; local
553 if (m > max_code) continue;
572 local void gen_codes(tree, max_code, bl_count) in gen_codes() argument
596 for (n = 0; n <= max_code; n++) {
647 node = s->heap[++(s->heap_len)] = (max_code < 2 ? ++max_code : 0);
653 desc->max_code = max_code;
703 local void scan_tree(s, tree, max_code) in scan_tree() argument
719 for (n = 0; n <= max_code; n++) {
748 local void send_tree(s, tree, max_code) in send_tree() argument
764 for (n = 0; n <= max_code; n++) {
[all …]
H A Ddeflate.h88 int max_code; /* largest code with non zero frequency */ member
/reactos/dll/3rdparty/libjpeg/
H A Drdgif.c114 int max_code; /* first unused code value */ member
193 sinfo->max_code = sinfo->clear_code + 2; /* first unused code value */ in ReInitLZW()
313 if (code >= sinfo->max_code) { /* special case for not-yet-defined symbol */ in LZWReadByte()
315 if (code > sinfo->max_code) { in LZWReadByte()
333 if ((code = sinfo->max_code) < LZW_TABLE_SIZE) { in LZWReadByte()
337 sinfo->max_code++; in LZWReadByte()
339 if (sinfo->max_code >= sinfo->limit_code && in LZWReadByte()