Lines Matching defs:bufOut
468 BytePtr bufOut = new (std::nothrow) Byte[UNZIP_BUF_OUT_LEN];
469 if (bufOut == nullptr) {
475 delete[] bufOut;
478 zstream.next_out = bufOut;
511 BytePtr bufOut = zstream.next_out;
532 dest.write((const char *)bufOut, inflateLen);
533 zstream.next_out = bufOut;
551 delete[] bufOut;
675 BytePtr bufOut = zstream.next_out;
686 delete[] bufOut;
707 if (memcpy_s(dstDataPtr, inflateLen, bufOut, inflateLen) != EOK) {
713 zstream.next_out = bufOut;
731 delete[] bufOut;