Lines Matching refs:code_len
1415 code_len = temp >> 9; \
1416 if ((code_len) && (num_bits >= code_len)) \
1419 code_len = TINFL_FAST_LOOKUP_BITS; \
1421 temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & 1)]; \
1422 } while ((temp < 0) && (num_bits >= (code_len + 1))); if (temp >= 0) break; \
1431 int temp; mz_uint code_len, c; \
1440 code_len = temp >> 9, temp &= 511; \
1442 …code_len = TINFL_FAST_LOOKUP_BITS; do { temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & …
1443 } sym = temp; bit_buf >>= code_len; num_bits -= code_len; } MZ_MACRO_END
1584 int sym2; mz_uint code_len; in tinfl_decompress() local
1591 code_len = sym2 >> 9; in tinfl_decompress()
1594 …code_len = TINFL_FAST_LOOKUP_BITS; do { sym2 = r->m_tables[0].m_tree[~sym2 + ((bit_buf >> code_len… in tinfl_decompress()
1596 counter = sym2; bit_buf >>= code_len; num_bits -= code_len; in tinfl_decompress()
1604 code_len = sym2 >> 9; in tinfl_decompress()
1607 …code_len = TINFL_FAST_LOOKUP_BITS; do { sym2 = r->m_tables[0].m_tree[~sym2 + ((bit_buf >> code_len… in tinfl_decompress()
1609 bit_buf >>= code_len; num_bits -= code_len; in tinfl_decompress()