Lines Matching refs:ZStrm
1941 z_stream ZStrm;
1942 RT_ZERO(ZStrm);
1943 ZStrm.next_in = (Bytef *)pvSrc;
1944 ZStrm.avail_in = (uInt)cbSrc;
1945 ZStrm.next_out = (Bytef *)pvDst;
1946 ZStrm.avail_out = (uInt)cbDst;
1948 int rc = inflateInit(&ZStrm);
1951 rc = inflate(&ZStrm, Z_FINISH);
1954 inflateEnd(&ZStrm);
1955 if ((rc == Z_BUF_ERROR && ZStrm.avail_in == 0) || rc == Z_NEED_DICT)
1962 rc = inflateEnd(&ZStrm);
1967 *pcbSrcActual = cbSrc - ZStrm.avail_in;
1969 *pcbDstActual = ZStrm.total_out;