Lines Matching refs:code_len
2322 code_len = temp >> 9; \
2323 if ((code_len) && (num_bits >= code_len)) \
2328 code_len = TINFL_FAST_LOOKUP_BITS; \
2331 temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & 1)]; \
2332 } while ((temp < 0) && (num_bits >= (code_len + 1))); \
2351 …mz_uint code_len, c; …
2366 …code_len = temp >> 9, temp &= 511; …
2369 …code_len = TINFL_FAST_LOOKUP_BITS; …
2372 …temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & 1)]; …
2376 …bit_buf >>= code_len; …
2377 …num_bits -= code_len; …
2621 mz_uint code_len; in tinfl_decompress() local
2638 code_len = sym2 >> 9; in tinfl_decompress()
2641 code_len = TINFL_FAST_LOOKUP_BITS; in tinfl_decompress()
2644 sym2 = r->m_tables[0].m_tree[~sym2 + ((bit_buf >> code_len++) & 1)]; in tinfl_decompress()
2648 bit_buf >>= code_len; in tinfl_decompress()
2649 num_bits -= code_len; in tinfl_decompress()
2662 code_len = sym2 >> 9; in tinfl_decompress()
2665 code_len = TINFL_FAST_LOOKUP_BITS; in tinfl_decompress()
2668 sym2 = r->m_tables[0].m_tree[~sym2 + ((bit_buf >> code_len++) & 1)]; in tinfl_decompress()
2671 bit_buf >>= code_len; in tinfl_decompress()
2672 num_bits -= code_len; in tinfl_decompress()