Lines Matching refs:temp
2503 temp = (pHuff)->m_look_up[bit_buf & (TINFL_FAST_LOOKUP_SIZE - 1)]; \
2504 if (temp >= 0) { \
2505 code_len = temp >> 9; \
2510 temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & 1)]; \
2511 } while ((temp < 0) && (num_bits >= (code_len + 1))); \
2512 if (temp >= 0) break; \
2531 int temp; \
2543 if ((temp = (pHuff)->m_look_up[bit_buf & (TINFL_FAST_LOOKUP_SIZE - 1)]) >= \
2545 code_len = temp >> 9, temp &= 511; \
2549 temp = (pHuff)->m_tree[~temp + ((bit_buf >> code_len++) & 1)]; \
2550 } while (temp < 0); \
2552 sym = temp; \