Home
last modified time | relevance | path

Searched refs:m_dict_ofs (Results 1 – 1 of 1) sorted by relevance

/external/OpenCL-CTS/test_common/miniz/
Dminiz.c401 mz_uint m_dict_ofs, m_dict_avail, m_first_call, m_has_flushed; int m_window_bits; member
427 pDecomp->m_dict_ofs = 0; in mz_inflateInit2()
489 memcpy(pStream->next_out, pState->m_dict + pState->m_dict_ofs, n); in mz_inflate()
491 …pState->m_dict_avail -= n; pState->m_dict_ofs = (pState->m_dict_ofs + n) & (TINFL_LZ_DICT_SIZE - 1… in mz_inflate()
498 out_bytes = TINFL_LZ_DICT_SIZE - pState->m_dict_ofs; in mz_inflate()
500 … pStream->next_in, &in_bytes, pState->m_dict, pState->m_dict + pState->m_dict_ofs, &out_bytes, dec… in mz_inflate()
509 memcpy(pStream->next_out, pState->m_dict + pState->m_dict_ofs, n); in mz_inflate()
511 …pState->m_dict_avail -= n; pState->m_dict_ofs = (pState->m_dict_ofs + n) & (TINFL_LZ_DICT_SIZE - 1… in mz_inflate()