Lines Matching refs:MZ_OK
221 return MZ_OK; in mz_deflateInit2()
230 return MZ_OK; in mz_deflateReset()
237 int mz_status = MZ_OK; in mz_deflate()
300 return MZ_OK; in mz_deflateEnd()
326 if (status != MZ_OK) in mz_compress2()
333 return (status == MZ_OK) ? MZ_BUF_ERROR : status; in mz_compress2()
392 return MZ_OK; in mz_inflateInit2()
423 return MZ_OK; in mz_inflateReset()
492 … ((pState->m_last_status == TINFL_STATUS_DONE) && (!pState->m_dict_avail)) ? MZ_STREAM_END : MZ_OK; in mz_inflate()
535 return ((status == TINFL_STATUS_DONE) && (!pState->m_dict_avail)) ? MZ_STREAM_END : MZ_OK; in mz_inflate()
547 return MZ_OK; in mz_inflateEnd()
566 if (status != MZ_OK) in mz_uncompress()
588 …{ MZ_OK, "" }, { MZ_STREAM_END, "stream end" }, { MZ_NEED_DICT, "need dictionary" }, { MZ_ERRNO, "… in mz_error()