Lines Matching refs:aZStr
743 z_stream aZStr; in unzipToBuffer() local
744 aZStr.next_in = (Bytef*)pBegin; in unzipToBuffer()
745 aZStr.avail_in = nLen; in unzipToBuffer()
746 aZStr.zalloc = ( alloc_func )0; in unzipToBuffer()
747 aZStr.zfree = ( free_func )0; in unzipToBuffer()
748 aZStr.opaque = ( voidpf )0; in unzipToBuffer()
749 inflateInit(&aZStr); in unzipToBuffer()
754 aZStr.next_out = (Bytef*)*pOutBuf; in unzipToBuffer()
755 aZStr.avail_out = buf_increment_size; in unzipToBuffer()
758 while( err != Z_STREAM_END && err >= Z_OK && aZStr.avail_in ) in unzipToBuffer()
760 err = inflate( &aZStr, Z_NO_FLUSH ); in unzipToBuffer()
761 if( aZStr.avail_out == 0 ) in unzipToBuffer()
767 aZStr.next_out = (Bytef*)(*pOutBuf + *pOutLen); in unzipToBuffer()
768 aZStr.avail_out = buf_increment_size; in unzipToBuffer()
775 if( aZStr.avail_out > 0 ) in unzipToBuffer()
776 *pOutLen -= aZStr.avail_out;; in unzipToBuffer()
778 inflateEnd(&aZStr); in unzipToBuffer()