Lines Matching refs:m_dict
355 mz_uint8 m_dict[TINFL_LZ_DICT_SIZE]; member
486 memcpy(pStream->next_out, pState->m_dict + pState->m_dict_ofs, n); in mz_inflate()
500 …compress(&pState->m_decomp, pStream->next_in, &in_bytes, pState->m_dict, pState->m_dict + pState->… in mz_inflate()
511 memcpy(pStream->next_out, pState->m_dict + pState->m_dict_ofs, n); in mz_inflate()
1283 TDEFL_PUT_BITS(d->m_dict[(d->m_lz_code_buf_dict_pos + i) & TDEFL_LZ_DICT_SIZE_MASK], 8); in tdefl_flush_block()
1389 const mz_uint16 *s = (const mz_uint16 *)(d->m_dict + pos), *p, *q; in tdefl_find_match()
1390 …mz_uint16 c01 = TDEFL_READ_UNALIGNED_WORD(&d->m_dict[pos + match_len - 1]), s01 = TDEFL_READ_UNALI… in tdefl_find_match()
1405 if (TDEFL_READ_UNALIGNED_WORD(&d->m_dict[probe_pos + match_len - 1]) == c01) \ in tdefl_find_match()
1413 q = (const mz_uint16 *)(d->m_dict + probe_pos); in tdefl_find_match()
1433 c01 = TDEFL_READ_UNALIGNED_WORD(&d->m_dict[pos + match_len - 1]); in tdefl_find_match()
1442 const mz_uint8 *s = d->m_dict + pos, *p, *q; in tdefl_find_match()
1443 mz_uint8 c0 = d->m_dict[pos + match_len], c1 = d->m_dict[pos + match_len - 1]; in tdefl_find_match()
1458 if ((d->m_dict[probe_pos + match_len] == c0) && (d->m_dict[probe_pos + match_len - 1] == c1)) \ in tdefl_find_match()
1467 q = d->m_dict + probe_pos; in tdefl_find_match()
1476 c0 = d->m_dict[pos + match_len]; in tdefl_find_match()
1477 c1 = d->m_dict[pos + match_len - 1]; in tdefl_find_match()
1512 memcpy(d->m_dict + dst_pos, d->m_pSrc, n); in tdefl_compress_fast()
1514 …memcpy(d->m_dict + TDEFL_LZ_DICT_SIZE + dst_pos, d->m_pSrc, MZ_MIN(n, (TDEFL_MAX_MATCH_LEN - 1) - … in tdefl_compress_fast()
1527 mz_uint8 *pCur_dict = d->m_dict + cur_pos; in tdefl_compress_fast()
1533 …head_pos - probe_pos)) <= dict_size) && ((TDEFL_READ_UNALIGNED_WORD32(d->m_dict + (probe_pos &= TD… in tdefl_compress_fast()
1536 const mz_uint16 *q = (const mz_uint16 *)(d->m_dict + probe_pos); in tdefl_compress_fast()
1619 mz_uint8 lit = d->m_dict[cur_pos]; in tdefl_compress_fast()
1724 …mz_uint hash = (d->m_dict[ins_pos & TDEFL_LZ_DICT_SIZE_MASK] << TDEFL_LZ_HASH_SHIFT) ^ d->m_dict[(… in tdefl_compress_normal()
1732 d->m_dict[dst_pos] = c; in tdefl_compress_normal()
1734 d->m_dict[TDEFL_LZ_DICT_SIZE + dst_pos] = c; in tdefl_compress_normal()
1749 d->m_dict[dst_pos] = c; in tdefl_compress_normal()
1751 d->m_dict[TDEFL_LZ_DICT_SIZE + dst_pos] = c; in tdefl_compress_normal()
1755 …mz_uint hash = ((d->m_dict[ins_pos & TDEFL_LZ_DICT_SIZE_MASK] << (TDEFL_LZ_HASH_SHIFT * 2)) ^ (d->… in tdefl_compress_normal()
1774 mz_uint8 c = d->m_dict[(cur_pos - 1) & TDEFL_LZ_DICT_SIZE_MASK]; in tdefl_compress_normal()
1778 if (d->m_dict[cur_pos + cur_match_len] != c) in tdefl_compress_normal()
1809 d->m_saved_lit = d->m_dict[cur_pos]; in tdefl_compress_normal()
1822 tdefl_record_literal(d, d->m_dict[MZ_MIN(cur_pos, sizeof(d->m_dict) - 1)]); in tdefl_compress_normal()
1830 d->m_saved_lit = d->m_dict[MZ_MIN(cur_pos, sizeof(d->m_dict) - 1)]; in tdefl_compress_normal()
1980 MZ_CLEAR_OBJ(d->m_dict); in tdefl_init()