Lines Matching refs:code_len
2505 code_len = temp >> 9; \
2506 if ((code_len) && (num_bits >= code_len)) break; \
2508 code_len = TINFL_FAST_LOOKUP_BITS; \
2510 temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & 1)]; \
2511 } while ((temp < 0) && (num_bits >= (code_len + 1))); \
2532 mz_uint code_len, c; \
2545 code_len = temp >> 9, temp &= 511; \
2547 code_len = TINFL_FAST_LOOKUP_BITS; \
2549 temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & 1)]; \
2553 bit_buf >>= code_len; \
2554 num_bits -= code_len; \
2795 mz_uint code_len; in tinfl_decompress() local
2815 code_len = sym2 >> 9; in tinfl_decompress()
2817 code_len = TINFL_FAST_LOOKUP_BITS; in tinfl_decompress()
2820 .m_tree[~sym2 + ((bit_buf >> code_len++) & 1)]; in tinfl_decompress()
2824 bit_buf >>= code_len; in tinfl_decompress()
2825 num_bits -= code_len; in tinfl_decompress()
2840 code_len = sym2 >> 9; in tinfl_decompress()
2842 code_len = TINFL_FAST_LOOKUP_BITS; in tinfl_decompress()
2845 .m_tree[~sym2 + ((bit_buf >> code_len++) & 1)]; in tinfl_decompress()
2848 bit_buf >>= code_len; in tinfl_decompress()
2849 num_bits -= code_len; in tinfl_decompress()