亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? comfunc.c

?? Calc Software Package for Number Calc
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* * comfunc - extended precision complex arithmetic non-primitive routines * * Copyright (C) 1999  David I. Bell and Ernest Bowen * * Primary author:  David I. Bell * * Calc is open software; you can redistribute it and/or modify it under * the terms of the version 2.1 of the GNU Lesser General Public License * as published by the Free Software Foundation. * * Calc is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU Lesser General * Public License for more details. * * A copy of version 2.1 of the GNU Lesser General Public License is * distributed with calc under the filename COPYING-LGPL.  You should have * received a copy with calc; if not, write to Free Software Foundation, Inc. * 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA. * * @(#) $Revision: 29.6 $ * @(#) $Id: comfunc.c,v 29.6 2006/05/20 08:43:55 chongo Exp $ * @(#) $Source: /usr/local/src/cmd/calc/RCS/comfunc.c,v $ * * Under source code control:	1990/02/15 01:48:13 * File existed as early as:	before 1990 * * Share and enjoy!  :-)	http://www.isthe.com/chongo/tech/comp/calc/ */#include "config.h"#include "cmath.h"/* * cache the natural logarithm of 10 */static COMPLEX *cln_10 = NULL;static NUMBER *cln_10_epsilon = NULL;static NUMBER _q10_ = { { _tenval_, 1, 0 }, { _oneval_, 1, 0 }, 1, NULL };static NUMBER _q0_ = { { _zeroval_, 1, 0 }, { _oneval_, 1, 0 }, 1, NULL };COMPLEX _cten_ = { &_q10_, &_q0_, 1 };/* * Compute the result of raising a complex number to an integer power. * * given: *	c		complex number to be raised *	q		power to raise it to */COMPLEX *c_powi(COMPLEX *c, NUMBER *q){	COMPLEX *tmp, *res;	/* temporary values */	long power;		/* power to raise to */	FULL bit;		/* current bit value */	int sign;	if (qisfrac(q)) {		math_error("Raising number to non-integral power");		/*NOTREACHED*/	}	if (zge31b(q->num)) {		math_error("Raising number to very large power");		/*NOTREACHED*/	}	power = ztolong(q->num);	if (ciszero(c) && (power == 0)) {		math_error("Raising zero to zeroth power");		/*NOTREACHED*/	}	sign = 1;	if (qisneg(q))		sign = -1;	/*	 * Handle some low powers specially	 */	if (power <= 4) {		switch ((int) (power * sign)) {		case 0:			return clink(&_cone_);		case 1:			return clink(c);		case -1:			return c_inv(c);		case 2:			return c_square(c);		case -2:			tmp = c_square(c);			res = c_inv(tmp);			comfree(tmp);			return res;		case 3:			tmp = c_square(c);			res = c_mul(c, tmp);			comfree(tmp);			return res;		case 4:			tmp = c_square(c);			res = c_square(tmp);			comfree(tmp);			return res;		}	}	/*	 * Compute the power by squaring and multiplying.	 * This uses the left to right method of power raising.	 */	bit = TOPFULL;	while ((bit & power) == 0)		bit >>= 1L;	bit >>= 1L;	res = c_square(c);	if (bit & power) {		tmp = c_mul(res, c);		comfree(res);		res = tmp;	}	bit >>= 1L;	while (bit) {		tmp = c_square(res);		comfree(res);		res = tmp;		if (bit & power) {			tmp = c_mul(res, c);			comfree(res);			res = tmp;		}		bit >>= 1L;	}	if (sign < 0) {		tmp = c_inv(res);		comfree(res);		res = tmp;	}	return res;}/* * Calculate the square root of a complex number to specified accuracy. * Type of rounding of each component specified by R as for qsqrt(). */COMPLEX *c_sqrt(COMPLEX *c, NUMBER *epsilon, long R){	COMPLEX *r;	NUMBER *es, *aes, *bes, *u, *v, qtemp;	NUMBER *ntmp;	ZVALUE g, a, b, d, aa, cc;	ZVALUE tmp1, tmp2, tmp3, mul1, mul2;	long s1, s2, s3, up1, up2;	int imsign, sign;	if (ciszero(c))		return clink(c);	if (cisreal(c)) {		r = comalloc();		if (!qisneg(c->real)) {			qfree(r->real);			r->real = qsqrt(c->real, epsilon, R);			return r;		}		ntmp = qneg(c->real);		qfree(r->imag);		r->imag = qsqrt(ntmp, epsilon, R);		qfree(ntmp);		return r;	}	up1 = up2 = 0;	sign = (R & 64) != 0;	imsign = c->imag->num.sign;	es = qsquare(epsilon);	aes = qqdiv(c->real, es);	bes = qqdiv(c->imag, es);	qfree(es);	zgcd(aes->den, bes->den, &g);	zequo(bes->den, g, &tmp1);	zmul(aes->num, tmp1, &a);	zmul(aes->den, tmp1, &tmp2);	zshift(tmp2, 1, &d);	zfree(tmp1);	zfree(tmp2);	zequo(aes->den, g, &tmp1);	zmul(bes->num, tmp1, &b);	zfree(tmp1);	zfree(g);	qfree(aes);	qfree(bes);	zsquare(a, &tmp1);	zsquare(b, &tmp2);	zfree(b);	zadd(tmp1, tmp2, &tmp3);	zfree(tmp1);	zfree(tmp2);	if (R & 16) {		zshift(tmp3, 4, &tmp1);		zfree(tmp3);		zshift(a, 2, &aa);		zfree(a);		s1 = zsqrt(tmp1, &cc, 16);		zfree(tmp1);		zadd(cc, aa, &tmp1);		if (s1 == 0 && R & 32) {			zmul(tmp1, d, &tmp2);			zfree(tmp1);			s2 = zsqrt(tmp2, &tmp3, 16);			zfree(tmp2);			if (s2 == 0) {				aes = qalloc();				zshift(d, 1, &tmp1);				zreduce(tmp3, tmp1, &aes->num, &aes->den);				zfree(tmp1);				zfree(tmp3);				zfree(aa);				zfree(cc);				zfree(d);				r = comalloc();				qtemp = *aes;				qtemp.num.sign = sign;				qfree(r->real);				r->real = qmul(&qtemp, epsilon);				qfree(aes);				bes = qscale(r->real, 1);				qtemp = *bes;				qtemp.num.sign = sign ^ imsign;				qfree(r->imag);				r->imag = qqdiv(c->imag, &qtemp);				qfree(bes);				return r;			}			s3 = zquo(tmp3, d, &tmp1, s2 < 0);		} else {			s2 = zquo(tmp1, d, &tmp3, s1 ? (s1 < 0) : 16);			zfree(tmp1);			s3 = zsqrt(tmp3,&tmp1,(s1||s2) ? (s1<0 || s2<0) : 16);		}		zfree(tmp3);		zshift(tmp1, -1, &mul1);		if (*tmp1.v & 1)			up1 = s1 + s2 + s3;		else			up1 = -1;		zfree(tmp1);		zsub(cc, aa, &tmp1);		s2 = zquo(tmp1, d, &tmp2, s1 ? (s1 < 0) : 16);		zfree(tmp1);		s3 = zsqrt(tmp2, &tmp1, (s1 || s2) ? (s1 < 0 || s2 < 0) : 16);		zfree(tmp2);		zshift(tmp1, -1, &mul2);		if (*tmp1.v & 1)			up2 = s1 + s2 + s3;		else			up2 = -1;		zfree(tmp1);		zfree(aa);	} else {		s1 = zsqrt(tmp3, &cc, 0);		zfree(tmp3);		zadd(cc, a, &tmp1);		if (s1 == 0 && R & 32) {			zmul(tmp1, d, &tmp2);			zfree(tmp1);			s2 = zsqrt(tmp2, &tmp3, 0);			zfree(tmp2);			if (s2 == 0) {				aes = qalloc();				zreduce(tmp3, d, &aes->num, &aes->den);				zfree(tmp3);				zfree(a);				zfree(cc);				zfree(d);				r = comalloc();				qtemp = *aes;				qtemp.num.sign = sign;				qfree(r->real);				r->real = qmul(&qtemp, epsilon);				qfree(aes);				bes = qscale(r->real, 1);				qtemp = *bes;				qtemp.num.sign = sign ^ imsign;				qfree(r->imag);				r->imag = qqdiv(c->imag, &qtemp);				qfree(bes);				return r;			}			s3 = zquo(tmp3, d, &mul1, 0);		} else {			s2 = zquo(tmp1, d, &tmp3, 0);			zfree(tmp1);			s3 = zsqrt(tmp3, &mul1, 0);		}		up1 = (s1 + s2 + s3) ? 0 : -1;		zfree(tmp3);		zsub(cc, a, &tmp1);		s2 = zquo(tmp1, d, &tmp2, 0);		zfree(tmp1);		s3 = zsqrt(tmp2, &mul2, 0);		up2 = (s1 + s2 + s3) ? 0 : -1;		zfree(tmp2);		zfree(a);	}	zfree(cc); zfree(d);	if (up1 == 0) {		if (R & 8)			up1 = (long)((R ^ *mul1.v) & 1);		else			up1 = (R ^ epsilon->num.sign ^ sign) & 1;		if (R & 2)			up1 ^= epsilon->num.sign ^ sign;		if (R & 4)			up1 ^= epsilon->num.sign;	}	if (up2 == 0) {		if (R & 8)			up2 = (long)((R ^ *mul2.v) & 1);		else			up2 = (R ^ epsilon->num.sign ^ sign ^ imsign) & 1;		if (R & 2)			up2 ^= epsilon->num.sign ^ imsign ^ sign;		if (R & 4)			up2 ^= epsilon->num.sign;	}	if (up1 > 0) {		zadd(mul1, _one_, &tmp1);		zfree(mul1);		mul1 = tmp1;	}	if (up2 > 0) {		zadd(mul2, _one_, &tmp2);		zfree(mul2);		mul2 = tmp2;	}	if (ziszero(mul1)) {		u = qlink(&_qzero_);	} else {		mul1.sign = sign ^ epsilon->num.sign;		u = qalloc();		zreduce(mul1, epsilon->den, &tmp2, &u->den);		zmul(tmp2, epsilon->num, &u->num);		zfree(tmp2);	}	zfree(mul1);	if (ziszero(mul2)) {		v = qlink(&_qzero_);	} else {		mul2.sign = imsign ^ sign ^ epsilon->num.sign;		v = qalloc();		zreduce(mul2, epsilon->den, &tmp2, &v->den);		zmul(tmp2, epsilon->num, &v->num);		zfree(tmp2);	}	zfree(mul2);	if (qiszero(u) && qiszero(v)) {		qfree(u);		qfree(v);		return clink(&_czero_);	}	r = comalloc();	qfree(r->real);	qfree(r->imag);	r->real = u;	r->imag = v;	return r;}/* * Take the Nth root of a complex number, where N is a positive integer. * Each component of the result is within the specified error. */COMPLEX *c_root(COMPLEX *c, NUMBER *q, NUMBER *epsilon){	COMPLEX *r;	NUMBER *a2pb2, *root, *tmp1, *tmp2, *epsilon2;	long n, m;	if (qisneg(q) || qiszero(q) || qisfrac(q)) {		math_error("Taking bad root of complex number");		/*NOTREACHED*/	}	if (cisone(c) || qisone(q))		return clink(c);	if (qistwo(q))		return c_sqrt(c, epsilon, 24L);	if (cisreal(c) && !qisneg(c->real)) {		tmp1 = qroot(c->real, q, epsilon);		if (tmp1 == NULL)			return NULL;		r = comalloc();		qfree(r->real);		r->real = tmp1;		return r;	}	/*	 * Calculate the root using the formula:	 *	c_root(a + bi, n) =	 *		c_polar(qroot(a^2 + b^2, 2 * n), qatan2(b, a) / n).	 */	n = qilog2(epsilon);	epsilon2 = qbitvalue(n - 4);	tmp1 = qsquare(c->real);	tmp2 = qsquare(c->imag);	a2pb2 = qqadd(tmp1, tmp2);	qfree(tmp1);	qfree(tmp2);	tmp1 = qscale(q, 1L);	root = qroot(a2pb2, tmp1, epsilon2);	qfree(a2pb2);	qfree(tmp1);	qfree(epsilon2);	if (root == NULL)		return NULL;	m = qilog2(root);	if (m < n) {		qfree(root);		return clink(&_czero_);	}	epsilon2 = qbitvalue(n - m - 4);	tmp1 = qatan2(c->imag, c->real, epsilon2);	qfree(epsilon2);	tmp2 = qqdiv(tmp1, q);	qfree(tmp1);	r = c_polar(root, tmp2, epsilon);	qfree(root);	qfree(tmp2);	return r;}/* * Calculate the complex exponential function to the desired accuracy. * We use the formula: *	exp(a + bi) = exp(a) * (cos(b) + i * sin(b)). */COMPLEX *c_exp(COMPLEX *c, NUMBER *epsilon){	COMPLEX *r;	NUMBER *sin, *cos, *tmp1, *tmp2, *epsilon1;	long k, n;	if (qiszero(epsilon)) {		math_error("Zero epsilon for cexp");		/*NOTREACHED*/	}	if (cisreal(c)) {		tmp1 = qexp(c->real, epsilon);		if (tmp1 == NULL)			return NULL;		r = comalloc();		qfree(r->real);		r->real = qexp(c->real, epsilon);		return r;	}	n = qilog2(epsilon);	epsilon1 = qbitvalue(n - 2);	tmp1 = qexp(c->real, epsilon1);	qfree(epsilon1);	if (tmp1 == NULL)		return NULL;	if (qiszero(tmp1)) {		qfree(tmp1);		return clink(&_czero_);	}	k = qilog2(tmp1) + 1;	if (k < n) {		qfree(tmp1);		return clink(&_czero_);	}	qsincos(c->imag, k - n + 2, &sin, &cos);	tmp2 = qmul(tmp1, cos);	qfree(cos);	r = comalloc();	qfree(r->real);	r->real = qmappr(tmp2, epsilon, 24L);	qfree(tmp2);	tmp2 = qmul(tmp1, sin);	qfree(tmp1);	qfree(sin);	qfree(r->imag);	r->imag = qmappr(tmp2, epsilon, 24L);	qfree(tmp2);	return r;}/* * Calculate the natural logarithm of a complex number within the specified * error.  We use the formula: *	ln(a + bi) = ln(a^2 + b^2) / 2 + i * atan2(b, a). */COMPLEX *c_ln(COMPLEX *c, NUMBER *epsilon){	COMPLEX *r;	NUMBER *a2b2, *tmp1, *tmp2, *epsilon1;	if (ciszero(c)) {		math_error("logarithm of zero");		/*NOTREACHED*/	}	if (cisone(c))		return clink(&_czero_);	r = comalloc();	if (cisreal(c) && !qisneg(c->real)) {		qfree(r->real);		r->real = qln(c->real, epsilon);		return r;	}	tmp1 = qsquare(c->real);	tmp2 = qsquare(c->imag);	a2b2 = qqadd(tmp1, tmp2);	qfree(tmp1);	qfree(tmp2);	epsilon1 = qscale(epsilon, 1L);	tmp1 = qln(a2b2, epsilon1);	qfree(a2b2);	qfree(epsilon1);	qfree(r->real);	r->real = qscale(tmp1, -1L);	qfree(tmp1);	qfree(r->imag);	r->imag = qatan2(c->imag, c->real, epsilon);	return r;}/* * Calculate base 10 logarithm by: * *	log(c) = ln(c) / ln(10) */COMPLEX *c_log(COMPLEX *c, NUMBER *epsilon){	int need_new_cln_10 = TRUE;	/* FALSE => use cached cln_10 value */	COMPLEX *ln_c;			/* ln(x) */	COMPLEX *ret;			/* base 10 logarithm of x */	/*	 * compute ln(c) first	 */	ln_c = c_ln(c, epsilon);	/* log(1) == 0 */	if (ciszero(ln_c)) {		return ln_c;	}	/*	 * save epsilon for ln(10) if needed	 */	if (cln_10_epsilon == NULL) {		/* first time call */		cln_10_epsilon = qcopy(epsilon);	} else if (qcmp(cln_10_epsilon, epsilon) == FALSE) {		/* replaced cacheed value with epsilon arg */		qfree(cln_10_epsilon);		cln_10_epsilon = qcopy(epsilon);	} else if (cln_10 != NULL) {		/* the previously computed ln(2) is OK to use */		need_new_cln_10 = FALSE;	}	/*	 * compute ln(10) if needed	 */	if (need_new_cln_10 == TRUE) {		if (cln_10 != NULL) {			comfree(cln_10);		}		cln_10 = c_ln(&_cten_, cln_10_epsilon);	}	/*	 * return ln(c) / ln(10)	 */	ret = c_div(ln_c, cln_10);	comfree(ln_c);	return ret;}/* * Calculate the complex cosine within the specified accuracy. * This uses the formula: *	cos(x) = (exp(1i * x) + exp(-1i * x))/2; */COMPLEX *c_cos(COMPLEX *c, NUMBER *epsilon){	COMPLEX *r, *ctmp1, *ctmp2, *ctmp3;	NUMBER *epsilon1;	long n;	BOOL neg;	if (qiszero(epsilon)) {		math_error("Zero epsilon for ccos");		/*NOTREACHED*/	}	n = qilog2(epsilon);	ctmp1 = comalloc();	qfree(ctmp1->real);	qfree(ctmp1->imag);	neg = qisneg(c->imag);	ctmp1->real = neg ? qneg(c->imag) : qlink(c->imag);	ctmp1->imag = neg ? qlink(c->real) : qneg(c->real);	epsilon1 = qbitvalue(n - 2);	ctmp2 = c_exp(ctmp1, epsilon1);	comfree(ctmp1);	qfree(epsilon1);	if (ctmp2 == NULL)		return NULL;	if (ciszero(ctmp2)) {		comfree(ctmp2);		return clink(&_czero_);	}	ctmp1 = c_inv(ctmp2);	ctmp3 = c_add(ctmp2, ctmp1);	comfree(ctmp1);	comfree(ctmp2);	ctmp1 = c_scale(ctmp3, -1);	comfree(ctmp3);	r = comalloc();

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91精品欧美一区二区三区综合在| 欧美日韩国产经典色站一区二区三区 | 久久网站最新地址| 99re成人在线| 久久69国产一区二区蜜臀| 国产精品久久看| 欧美变态口味重另类| 色妹子一区二区| 国产精品99久久久久久久vr| 亚洲第一成年网| 亚洲精品视频在线| 中文字幕+乱码+中文字幕一区| 在线综合+亚洲+欧美中文字幕| 成人精品免费网站| 久久99精品国产.久久久久久| 亚洲精品国产高清久久伦理二区| 久久综合中文字幕| 欧美一区二区三区小说| 色综合久久久久| 不卡的av网站| 国产成人精品一区二区三区网站观看| 日韩高清中文字幕一区| 一区二区三区 在线观看视频| 欧美国产视频在线| 久久久99免费| 久久综合久久综合久久综合| 欧美妇女性影城| 欧美日韩卡一卡二| 欧洲av在线精品| 欧美亚洲国产一区二区三区va| 不卡的av电影在线观看| 国产成人免费av在线| 国产伦精品一区二区三区视频青涩| 婷婷激情综合网| 视频一区在线视频| 天堂在线亚洲视频| 天天爽夜夜爽夜夜爽精品视频 | 午夜欧美视频在线观看| 亚洲免费观看高清完整版在线观看 | 成人av网站在线| 国内一区二区在线| 久久99热狠狠色一区二区| 免费成人小视频| 精品亚洲欧美一区| 国产乱码精品一区二区三区忘忧草| 极品少妇一区二区| 国产在线播放一区二区三区| 精品在线一区二区| 国产老肥熟一区二区三区| 国产成人精品1024| 波多野结衣中文字幕一区二区三区| 国产成人亚洲综合a∨婷婷 | 日韩av中文字幕一区二区三区| 亚洲成人先锋电影| 日韩不卡在线观看日韩不卡视频| 亚洲高清在线精品| 青青国产91久久久久久| 精品一区二区影视| 福利一区二区在线| 日本国产一区二区| 这里只有精品视频在线观看| 日韩精品在线一区二区| 久久亚洲捆绑美女| 一区二区中文字幕在线| 亚洲综合色区另类av| 日韩中文字幕91| 国产乱人伦精品一区二区在线观看| 成人午夜av电影| 色噜噜狠狠一区二区三区果冻| 精品视频在线视频| 精品国产123| 亚洲视频一二三| 免费观看一级特黄欧美大片| 国产老女人精品毛片久久| 97久久精品人人做人人爽| 欧美色图12p| www成人在线观看| 一区二区三区欧美在线观看| 日本va欧美va精品| 成人午夜电影网站| 欧美精品精品一区| 中文子幕无线码一区tr| 亚洲最新视频在线观看| 激情小说欧美图片| 欧美综合天天夜夜久久| 精品国产一区二区三区av性色 | 亚洲天堂av老司机| 七七婷婷婷婷精品国产| 成人午夜视频福利| 日韩一区二区三| 亚洲人成网站在线| 久久99精品国产.久久久久| 91在线高清观看| 精品999久久久| 婷婷丁香激情综合| 91免费在线视频观看| 日韩精品一区二区三区在线| 亚洲女厕所小便bbb| 国产揄拍国内精品对白| 欧美色图12p| 国产精品久久毛片| 国内精品久久久久影院色| 在线观看国产精品网站| 国产亚洲午夜高清国产拍精品| 亚洲国产视频直播| 成人福利视频在线| 欧美精品一区二区三区高清aⅴ| 亚洲第一福利一区| 99久久精品费精品国产一区二区| 欧美成va人片在线观看| 亚洲一区二区三区四区五区黄| 国产91高潮流白浆在线麻豆| 欧美一区二区三区免费在线看| 亚洲欧美成人一区二区三区| 国产精品乡下勾搭老头1| 日韩一区二区中文字幕| 亚洲动漫第一页| 色哟哟一区二区三区| 日本一区二区三区四区在线视频| 日本va欧美va精品| 欧美人与性动xxxx| 依依成人综合视频| 99re在线视频这里只有精品| 国产日韩一级二级三级| 精品一区二区三区视频| 日韩一级在线观看| 喷白浆一区二区| 欧美四级电影网| 夜夜精品视频一区二区| 91一区一区三区| 中文字幕一区视频| 丰满少妇久久久久久久| 久久久九九九九| 国产精品1024| 国产亚洲欧洲一区高清在线观看| 狠狠色狠狠色综合| 久久免费美女视频| 国产成人免费高清| 国产清纯在线一区二区www| 国产九九视频一区二区三区| 久久亚洲影视婷婷| 国产在线观看免费一区| 久久久精品国产免大香伊| 国产一区二区精品久久91| 久久新电视剧免费观看| 国产一区二区福利| 在线日韩av片| 视频在线观看一区二区三区| 欧美精品123区| 蜜桃av一区二区三区| 日韩精品专区在线影院观看| 理论电影国产精品| 久久久久久电影| 99热精品国产| 亚洲午夜国产一区99re久久| 欧美欧美午夜aⅴ在线观看| 日韩主播视频在线| 精品88久久久久88久久久| 国产91在线看| 亚洲柠檬福利资源导航| 欧美色区777第一页| 麻豆精品精品国产自在97香蕉| 精品国产乱码久久久久久牛牛| 国产乱人伦偷精品视频不卡 | 欧美亚洲另类激情小说| 三级在线观看一区二区| 欧美大片在线观看| 成人免费视频免费观看| 中文字幕一区二区三区不卡在线| 在线免费观看日本一区| 日韩vs国产vs欧美| 久久久99精品免费观看| 91蜜桃视频在线| 裸体健美xxxx欧美裸体表演| 国产午夜精品久久久久久免费视| 一本到三区不卡视频| 日产欧产美韩系列久久99| 国产色一区二区| 欧美日韩国产小视频在线观看| 加勒比av一区二区| 一区av在线播放| 久久尤物电影视频在线观看| 91社区在线播放| 青青草国产精品亚洲专区无| 国产精品无人区| 91精品麻豆日日躁夜夜躁| 大尺度一区二区| 日本va欧美va欧美va精品| 亚洲欧洲成人av每日更新| 欧美人伦禁忌dvd放荡欲情| 国产露脸91国语对白| 亚洲在线视频一区| 日本一区二区综合亚洲| 777久久久精品| 91免费视频网| 国产乱码精品一品二品| 天天综合天天做天天综合| 国产精品天美传媒沈樵| 欧美伦理电影网| 色综合天天综合网国产成人综合天|