Lines Matching refs:s
36 z_stream s; member
1540 z_stream& s = pucd->s; in InitUncompressContextDeflateCommon() local
1543 s.next_in = NULL; in InitUncompressContextDeflateCommon()
1544 s.avail_in = 0; in InitUncompressContextDeflateCommon()
1545 s.next_out = reinterpret_cast<nncxZlib_Bytef*>(pDest); in InitUncompressContextDeflateCommon()
1546 s.avail_out = destSize; in InitUncompressContextDeflateCommon()
1548 s.zalloc = detail::ZlibAllocator::Allocate; in InitUncompressContextDeflateCommon()
1549 s.zfree = detail::ZlibAllocator::Free; in InitUncompressContextDeflateCommon()
1550 s.opaque = &pucd->za; in InitUncompressContextDeflateCommon()
1552 err = inflateInit2(&s, wbits); in InitUncompressContextDeflateCommon()
1561 z_stream& s = GetUncompressContextDeflate_(pContext)->s; in ReadUncompressDeflateCommon() local
1564 s.next_in = reinterpret_cast<nncxZlib_Bytef*>(const_cast<void*>(pData)); in ReadUncompressDeflateCommon()
1565 s.avail_in = dataSize; in ReadUncompressDeflateCommon()
1567 const u32 availOutBefore = s.avail_out; in ReadUncompressDeflateCommon()
1568 err = nncxZlib_inflate(&s, Z_NO_FLUSH); in ReadUncompressDeflateCommon()
1574 err = nncxZlib_inflate(&s, Z_FINISH); in ReadUncompressDeflateCommon()
1576 nncxZlib_deflateEnd(&s); in ReadUncompressDeflateCommon()
1585 const u32 outSize = availOutBefore - s.avail_out; in ReadUncompressDeflateCommon()