Home
last modified time | relevance | path

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

/hardware/google/gfxstream/guest/mesa/src/util/
Dcompress.c95 strm.avail_out = out_buff_size; in util_compress_deflate()
140 strm.avail_out = out_data_size; in util_compress_inflate()
156 assert(strm.avail_out == 0); in util_compress_inflate()
/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dtinyexr.h1047 unsigned int avail_out; // number of bytes that can be written to next_out member
2094 if (!pStream->avail_out) return MZ_BUF_ERROR; in mz_deflate()
2107 out_bytes = pStream->avail_out; in mz_deflate()
2118 pStream->avail_out -= (mz_uint)out_bytes; in mz_deflate()
2127 } else if (!pStream->avail_out) in mz_deflate()
2168 stream.avail_out = (mz_uint32)*pDest_len; in mz_compress2()
2265 out_bytes = pStream->avail_out; in mz_inflate()
2275 pStream->avail_out -= (mz_uint)out_bytes; in mz_inflate()
2290 n = MZ_MIN(pState->m_dict_avail, pStream->avail_out); in mz_inflate()
2293 pStream->avail_out -= n; in mz_inflate()
[all …]