Lines Matching refs:s
1319 z_stream s; in CompressDeflateCommon() local
1322 s.next_in = reinterpret_cast<nncxZlib_Bytef*>(const_cast<void*>(pSrc)); in CompressDeflateCommon()
1323 s.avail_in = srcSize; in CompressDeflateCommon()
1324 s.next_out = reinterpret_cast<nncxZlib_Bytef*>(pDest); in CompressDeflateCommon()
1325 s.avail_out = destSize; in CompressDeflateCommon()
1327 s.zalloc = detail::ZlibAllocator::Allocate; in CompressDeflateCommon()
1328 s.zfree = detail::ZlibAllocator::Free; in CompressDeflateCommon()
1329 s.opaque = &za; in CompressDeflateCommon()
1331 err = deflateInit2(&s, in CompressDeflateCommon()
1342 err = nncxZlib_deflate(&s, Z_FINISH); in CompressDeflateCommon()
1345 nncxZlib_deflateEnd(&s); in CompressDeflateCommon()
1349 size_t ret = s.total_out; in CompressDeflateCommon()
1351 err = nncxZlib_deflateEnd(&s); in CompressDeflateCommon()