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

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

?? wcdmaratematching.c

?? WCDMA的一個matlab simulink仿真。對于研究WCDMA TDD一類的朋友有幫助!
?? C
字號:
/* *   WCDMA RATE MATCHING performs rate matching algorithm
 *   as specified by 3GPP TS 25.212 * *   Copyright 1996-2001 The MathWorks, Inc. *   $Revision: 1.2 $  $Date: 2001/12/13 23:29:31 $ */#define S_FUNCTION_NAME wcdmaratematching#define S_FUNCTION_LEVEL 2#include <math.h>
#include <stdlib.h>
#include <stdio.h>
#include <malloc.h>#include "simstruc.h" /* List input & output ports*/enum {INPORT=0, NUM_INPORTS};enum {OUTPORT=0, NUM_OUTPORTS};/* List the mask parameters*/enum {DELNIMAX_ARGC=0, NUMBITS_ARGC, ERRORCORR_ARGC, CHECKRM_ARGC, NUM_ARGS}; #define DELNIMAX_ARG	ssGetSFcnParam(S, DELNIMAX_ARGC)#define NUMBITS_ARG	ssGetSFcnParam(S, NUMBITS_ARGC)#define ERRORCORR_ARG	ssGetSFcnParam(S, ERRORCORR_ARGC)#define CHECKRM_ARG	ssGetSFcnParam(S, CHECKRM_ARGC)

/* Define pWork Structure */
typedef struct{

    int_T   *pPattern;
    int_T   b;
    int_T   X;
    int_T   *pEIni;
    int_T   *pEPlus;
    int_T   *pEMinus;
    int_T   deltaNi;
    int_T   checkRM;
    int_T   numBitsIn;

}TRmPar;

#define parPattern	rmPar->pPattern
#define parB		rmPar->b
#define parX		rmPar->X
#define parEini		rmPar->pEIni
#define parEplus	rmPar->pEPlus
#define parEminus	rmPar->pEMinus
#define parDeltaNi	rmPar->deltaNi
#define parCheckRM	rmPar->checkRM
#define parNumBitsIn	rmPar->numBitsIn
#define THROW_ERROR(S,MSG) {ssSetErrorStatus(S,MSG); return;}

#define RMATCHING	0
#define RDEMATCHING	1
  /* Function to determine the Rate Matching Parameters, X, eini, eplus and eminus ========*/static void getRMParameters(TRmPar *rmPar){    int_T a,k;
    int_T B = parB-1;

    parX = (int_T) parNumBitsIn/parB;    if(parB == 1) /* Conv Encoding or Turbocoding AND repetition */    {
	a = 2;
	parEini[B]  = 1;
	parEplus[B] = a*parNumBitsIn;
	parEminus[B] = a*(int_T)abs(parDeltaNi);    }	    else    {
	for(k=1;k<B;k++)
	{
	    a = 4-k; /* a=2 for b=2 and a=1 for b=3 */
	    parEini[B]  = (int_T) parNumBitsIn/parB;
	    parEplus[B] = a*(int_T) parNumBitsIn/parB;
	    parEminus[B] = a*(int_T)abs(parDeltaNi/2);
	}
    }
} /* End of Function rmParams */    /* Function to calculate the Rate Matching Pattern vector ==================*/static void rmPatternDetermination(TRmPar *rmPar){/*  This function returns a vector of the same size as     that of X with -1s in place of bits that needs to be     punctured and numbers in place of bits that needs to     be repeated indicating how many times they need to     be repeated */

    int_T e, m, n, temp =0;
    int_T B = parB-1;           if (parDeltaNi<0) /* Puncturing */    {	
	e = parEini[B]; /* Initial error between current and desired puncturing ratio */

	for (m=0; m<parX; m++)
	{
	    e = e - parEminus[B]; /* Update error */

	    if(e<=0) 
	    {
		parPattern[m] = -1; /* Mark puncturing */
		e = e + parEplus[B];  /* Update error */
		temp++;
	    } 
	    else		parPattern[m] = 0; /* Mark bit as no puncturing */
	}
    }    else if (parDeltaNi>0) /* Repetition */    {
	e = parEini[B]; /* Initial error between current and desired puncturing ratio */
        for (m=0; m<parX; m++)
	{
	    e = e - parEminus[B]; /* Update error */	       
	    n = 0;
	    while(e<=0)    	    {   
		e = e + parEplus[B];  /* Update error */		n++;
		temp++;
	    }
	    parPattern[m] = n; /* Mark repetition */
	}      }} /* End of Function rmPatternDetermination */      
/* Function to Split and Combine bits and find the overall puncturing Index==================*//*static void rmTurboIndex(int_T **Pwork, int_T *X,int_T *eini, int_T *eplus, int_T *eminus){/*  This function returns a vector of the same size as     that of X(2)*3 with -1s in place of bits that needs     to be punctured for the  special case of Turbo Coded bits */    /*   int_T   **parityOneIndex, **parityTwoIndex, *combinedTurboIndex;    int_T   i,sepLength;    parityOneIndex = (int_T**) malloc(1 * sizeof(int_T*));    parityTwoIndex = (int_T**) malloc(1 * sizeof(int_T*));    sepLength=X[2];    combinedTurboIndex = (int_T*) malloc(X[2]*3*sizeof(int_T));        /*Compute the punctured Index Vector for each Parity output. Systematic Bits not punctured */    /*Since its always puncturing here, the 4th output to rmPatternDe... is any value greater than 0 */   /* rmPatternDetermination(parityOneIndex, X[2],eini[2],eplus[2],eminus[2],-1);    rmPatternDetermination(parityTwoIndex, X[3],eini[3],eplus[3],eminus[3],-1);        /* Create the combinedTurboIndex */        /*for (i=0;i<sepLength;i++)    {	combinedTurboIndex[i*3]=0;	combinedTurboIndex[i*3+1]=parityOneIndex[0][i];	combinedTurboIndex[i*3+2]=parityTwoIndex[0][i];    }
    Pwork[0]=combinedTurboIndex;
}/* End of Function rmTurboIndex =============================*/    /* Function to find the final output vector given the RM puncturing or repetition pattern ====== */
static void rmComputeOutputVec(real_T *outData, real_T *inData, TRmPar *rmPar, int_T inPortWidth){	int_T k,i,outCount, inCount;
	real_T aver;
	/* Rate Matching Case */	if (parCheckRM == RMATCHING)
	{	    for (k=0, outCount=0; k<parNumBitsIn; k++)	    {   		if (parPattern[k] == -1) {} /* Puncture */		        /* Increment input counter (k) */
		else if(parPattern[k]>0) /* Repetition */		{
		    for(i=0;i<parPattern[k];i++)
		    {
			outData[outCount] = inData[k];			outCount ++;
		    }		}
		else /* Do Nothing */
		{
		    outData[outCount] = inData[k];
		    outCount ++;
		}
	    }	 }
	 else /* Rate Dematching case */
	 {
	     for (k=0, inCount=0; k<parNumBitsIn; k++)
	     {
		 if (parPattern[k] == -1) /* Pad with zeros */ 
		     outData[k] = 0; 

		 else if(parPattern[k]>0) /*Derepetition */
		 {
		     /* Compute average of repeated symbols */
		    for(i=0, aver=0; i<parPattern[k]; i++)
		    {
			aver += (real_T) inData[inCount]/parPattern[k];
			inCount++;
		    }

		    outData[k] = aver;  
		 }

		 else /* Do Nothing */
		 {
		     outData[k] = inData[inCount];
		     inCount ++;
		 }
	     }
	 }
	 }/* End of Function rmComputeOutputVec */    /* Function: mdlCheckParameters =============================================*/#ifdef MATLAB_MEX_FILE#define MDL_CHECK_PARAMETERSstatic void mdlCheckParameters(SimStruct *S) {     /* The mask checks for the polynomial, initial states and the number of       * checksums parameters as entered by the user.        */}#endif/* Function: mdlInitializeSizes ============================================*/static void mdlInitializeSizes(SimStruct *S){    int i;    ssSetNumSFcnParams(S, NUM_ARGS);#if defined(MATLAB_MEX_FILE)    if (ssGetNumSFcnParams(S) != ssGetSFcnParamsCount(S)) return;	mdlCheckParameters(S);    if (ssGetErrorStatus(S) != NULL) return;#endif    ssSetNumSampleTimes(S, 1);    /* Input: */    if (!ssSetNumInputPorts(S, NUM_INPORTS)) return;    if (!ssSetInputPortDimensionInfo(S, INPORT, DYNAMIC_DIMENSION)) return;    ssSetInputPortFrameData(         S, INPORT, FRAME_YES);    ssSetInputPortComplexSignal(     S, INPORT, COMPLEX_NO);    ssSetInputPortDirectFeedThrough( S, INPORT, 1);    ssSetInputPortRequiredContiguous(S, INPORT, 1);    ssSetInputPortReusable(          S, INPORT, 0);    /* Output: */    if (!ssSetNumOutputPorts(S, NUM_OUTPORTS)) return;    if (!ssSetOutputPortDimensionInfo(S, OUTPORT, DYNAMIC_DIMENSION)) return;    ssSetOutputPortFrameData(         S, OUTPORT, FRAME_YES);    ssSetOutputPortComplexSignal(     S, OUTPORT, COMPLEX_NO);    ssSetOutputPortReusable(	      S, OUTPORT, 0);        ssSetOptions( S, SS_OPTION_EXCEPTION_FREE_CODE);    for (i=0; i<NUM_ARGS; i++)    	ssSetSFcnParamNotTunable(S, i);

    /* Initialize the Work Vector to be used for the index vector*/
    ssSetNumPWork(S, 1);
}/* Function: mdlInitializeSampleTimes ======================================*/static void mdlInitializeSampleTimes(SimStruct *S){    ssSetSampleTime(S, 0, INHERITED_SAMPLE_TIME);    ssSetOffsetTime(S, 0, 0.0);    if (ssGetSampleTime(S,0) == CONTINUOUS_SAMPLE_TIME)	    {        THROW_ERROR(S, "Input sample time must be discrete.");    }}
/* Function: mdlInitializeConditions ========================================*/#define MDL_INITIALIZE_CONDITIONSstatic void mdlInitializeConditions(SimStruct *S){        int_T     numBitsIn	    = (int_T) mxGetPr(NUMBITS_ARG)[0];    int_T     errorCorr     = (int_T) mxGetPr(ERRORCORR_ARG)[0];
    int_T     checkRM	    = (int_T) mxGetPr(CHECKRM_ARG)[0];
    int_T     deltaNi	    = (int_T) mxGetPr(DELNIMAX_ARG)[0];
    TRmPar *rmPar = NULL;  

    /* Check parameters */
    if(checkRM == RMATCHING)
    {
	if(numBitsIn != ssGetInputPortWidth(S, INPORT) || numBitsIn != ssGetOutputPortWidth(S, OUTPORT) - deltaNi )
	    THROW_ERROR(S, "The parameter Number of Bits in Rate Matching Mask has to be equal \
	    to actual portwidth of the block."); 
    }
    else
    {
	if(numBitsIn != ssGetInputPortWidth(S, INPORT) - deltaNi || numBitsIn != ssGetOutputPortWidth(S, OUTPORT))
	    THROW_ERROR(S, "The parameter Number of Bits in Rate DeMatching Mask has to be equal \
	    to portwidth of the block prior to puncturing or repetition in the Transmitter."); 
    }

    /* Allocate memory for pWork Structure */    rmPar = (TRmPar *) calloc(1,sizeof(TRmPar));

    /* Store input parameters in struct */
    parDeltaNi = deltaNi;
    parCheckRM = checkRM;
    parNumBitsIn = numBitsIn;

    /* Allocate memory for Rate Matching Pattern vector */
    parPattern = (int_T *) calloc(parNumBitsIn, sizeof(int_T));

    /* Compute B number of sequences after Bit Separation */
    if((errorCorr<3) || ( (errorCorr==3) && (parDeltaNi>0))) /* Convolutional Encoding or Turbo coding when repetition */
	parB = 1;

    else /* Turbo encoding when puncturing */
	parB = 3;   

    /* Allocate memory for Work vectors */
    parEini	= (int_T *) calloc(parB, sizeof(int_T));
    parEminus	= (int_T *) calloc(parB, sizeof(int_T));
    parEplus	= (int_T *) calloc(parB, sizeof(int_T));
                    /* Call the rmParams function to compute Rate Matching Paramters */    getRMParameters(rmPar);

    /* Get Rate Matching puncturing or repetition pattern */    if(parB == 1)
	rmPatternDetermination(rmPar);
    /*else	
	rmTurboIndex(rmPar);*/

    /* Store struct's pointer in Simulink's PWork */
    ssGetPWork(S)[0] = rmPar;
    }/* Function: mdlOutputs ====================================================*/static void mdlOutputs(SimStruct *S, int_T tid)
{
    int_T k, inPortWidth;

    TRmPar  *rmPar = (TRmPar *) ssGetPWorkValue(S,0);
    real_T   *u   = (real_T *) ssGetInputPortRealSignal(S, INPORT);    real_T   *y   = (real_T *) ssGetOutputPortRealSignal(S, OUTPORT);

    inPortWidth = ssGetInputPortWidth(S, INPORT);       
    rmComputeOutputVec(y, u, rmPar, inPortWidth);

}
/* End of mdlOutputs ========================================================*/
static void mdlTerminate(SimStruct *S){

    TRmPar  *rmPar = (TRmPar *) ssGetPWorkValue(S,0);
    
    /* Free memory for Work vectors */

    free(parPattern);
    free(parEini);
    free(parEminus);
    free(parEplus);
    free(rmPar);
}


#ifdef MATLAB_MEX_FILE#define MDL_SET_INPUT_PORT_DIMENSION_INFOstatic void mdlSetInputPortDimensionInfo(SimStruct *S, int_T port, const DimsInfo_T *dimsInfo){    int_T  outCols, outRows;    int_T  numBits      = (int_T)mxGetPr(NUMBITS_ARG)[0];    int_T  delNimax	= (int_T)mxGetPr(DELNIMAX_ARG)[0]; 
    int_T  checkRM	= (int_T)mxGetPr(CHECKRM_ARG)[0];

    int_T  numDims  = ssGetInputPortNumDimensions(S, INPORT);
    int_T  inRows   = (numDims >= 1) ? dimsInfo->dims[0] : 0;
    int_T  inCols   = (numDims >= 2) ? dimsInfo->dims[1] : 0;
     if (!ssSetInputPortDimensionInfo(S, port, dimsInfo)) return;    
        if (inCols != 1)    {
	THROW_ERROR(S, "This block does not support multi-channel frame signals.\
	Use multiple blocks to process multiple frames");    }
	
    if ((checkRM == RMATCHING) && (inRows != numBits))

	THROW_ERROR(S, "The input frame length must be same as the specified number of input bits .");
    if ((checkRM == RDEMATCHING) && (inRows != numBits + delNimax))

	THROW_ERROR(S, "The input frame length must be same as the specified number of input bits .");

    
    outCols = inCols;


    if (checkRM == RMATCHING)     
	outRows = inRows + delNimax;
    else 
	outRows = inRows - delNimax;
    if (ssGetOutputPortWidth(S,OUTPORT) == DYNAMICALLY_SIZED)     {
        if(!ssSetOutputPortMatrixDimensions(S,OUTPORT, outRows, outCols)) return;
    }
    else
    {   
	if (ssGetOutputPortWidth(S, OUTPORT) != outRows)         {                THROW_ERROR(S, "Invalid Dimensions for Rate Matching and Dematching Block.");        }                    }}
#define MDL_SET_OUTPUT_PORT_DIMENSION_INFO
static void mdlSetOutputPortDimensionInfo(SimStruct *S, int_T port, const DimsInfo_T *dimsInfo)
{
    int_T  inCols, inRows;
    int_T  numBits            = (int_T)mxGetPr(NUMBITS_ARG)[0];
    int_T  delNimax           = (int_T)mxGetPr(DELNIMAX_ARG)[0]; 
    int_T  checkRM	      = (int_T)mxGetPr(CHECKRM_ARG)[0];


    int_T  numDims  = ssGetInputPortNumDimensions(S, INPORT);
    int_T  outRows   = (numDims >= 1) ? dimsInfo->dims[0] : 0;
    int_T  outCols   = (numDims >= 2) ? dimsInfo->dims[1] : 0;
 
    if (!ssSetOutputPortDimensionInfo(S, port, dimsInfo)) return;    
    
    if (outCols != 1)
    {

	THROW_ERROR(S, "This block does not support multi-channel frame signals.\
	  `Use multiple blocks to process multiple frames");
    }
	
    if ((checkRM == RMATCHING) && (outRows != numBits+delNimax ))

	THROW_ERROR(S, "Invalid Dimensions for Rate Matching and Dematching Block.");

    if ((checkRM == RDEMATCHING) && (outRows != numBits))

	THROW_ERROR(S, "Invalid Dimensions for Rate Matching and Dematching Block.");

    
    inCols = outCols;


    if (checkRM == RMATCHING)     
	inRows = outRows - delNimax;
    else 
	inRows = outRows + delNimax;

    if (ssGetInputPortWidth(S,INPORT) == DYNAMICALLY_SIZED) 
    {
        if(!ssSetInputPortMatrixDimensions(S,OUTPORT, inRows, inCols)) return;
    }
    else
    {   
	if (ssGetInputPortWidth(S, INPORT) != inRows) 
        {
                THROW_ERROR(S, "Invalid Dimensions for Rate Matching and Dematching Block.");
        }                
    }
}
#define MDL_SET_DEFAULT_PORT_DIMENSION_INFOstatic void mdlSetDefaultPortDimensionInfo(SimStruct *S){    /* initialize a dynamically-dimensioned DimsInfo_T */    DECL_AND_INIT_DIMSINFO(dInfo);     int_T dims[2] = {1, 1};    /* select valid port dimensions */    dInfo.width     = 1;    dInfo.numDims   = 2;    dInfo.dims      = dims;    /* call the output functions */    if (ssGetOutputPortWidth(S,OUTPORT) == DYNAMICALLY_SIZED)     {         mdlSetOutputPortDimensionInfo(S, OUTPORT, &dInfo);    }    /* call the input functions */    if (ssGetInputPortWidth(S,INPORT) == DYNAMICALLY_SIZED)     {         mdlSetInputPortDimensionInfo(S, INPORT, &dInfo);    }}#endif #ifdef  MATLAB_MEX_FILE    #include "simulink.c"      #else#include "cg_sfun.h"       #endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美韩日一区二区三区四区| 日韩天堂在线观看| 综合自拍亚洲综合图不卡区| 成人激情小说乱人伦| 亚洲欧美日韩电影| 欧美亚洲愉拍一区二区| 日本亚洲欧美天堂免费| 精品欧美乱码久久久久久| 国产老女人精品毛片久久| 国产日韩欧美激情| 在线视频一区二区三| 日韩国产在线观看| 久久久精品国产免大香伊| 91色在线porny| 日韩精品亚洲专区| 欧美国产乱子伦| 色婷婷av一区二区三区大白胸 | 在线观看免费视频综合| 亚洲成年人影院| 久久先锋资源网| 久久久精品影视| 色狠狠桃花综合| 婷婷综合久久一区二区三区| 久久伊99综合婷婷久久伊| 91蝌蚪porny九色| 蜜臀a∨国产成人精品| 国产精品视频第一区| 在线电影欧美成精品| 狠狠色丁香久久婷婷综合丁香| 中文字幕视频一区| 91麻豆精品国产91| 91丨porny丨中文| 美腿丝袜亚洲三区| 一区二区三区国产豹纹内裤在线| 日韩亚洲欧美成人一区| 色综合久久中文综合久久97| 麻豆成人免费电影| 一级精品视频在线观看宜春院| 日韩欧美国产电影| 色美美综合视频| 国产一区二区三区免费播放| 亚洲国产一区二区视频| 国产精品主播直播| 午夜欧美视频在线观看| 国产精品成人免费在线| 精品国产乱码久久久久久久久| 色综合色综合色综合| 国产91精品一区二区麻豆网站| 亚洲v中文字幕| 中文字幕在线不卡| 久久伊人蜜桃av一区二区| 欧美另类变人与禽xxxxx| 99re热视频这里只精品| 国产成人在线观看免费网站| 免费不卡在线观看| 亚洲h动漫在线| 亚洲卡通欧美制服中文| 一区在线播放视频| 国产欧美一区二区三区沐欲| 日韩一区二区三区精品视频| 欧美三级蜜桃2在线观看| 色综合久久久网| 91在线丨porny丨国产| 国产成人夜色高潮福利影视| 精油按摩中文字幕久久| 蜜桃久久久久久| 日韩激情一二三区| 性做久久久久久久免费看| 亚洲成人av一区二区| 亚洲在线视频一区| 亚洲一区二区视频在线观看| 一区二区三区高清不卡| 亚洲女人的天堂| 最新日韩av在线| 综合久久综合久久| 亚洲男人都懂的| 一区二区三区在线高清| 亚洲色图视频网| 亚洲欧美日韩精品久久久久| 中文字幕欧美一区| 综合久久国产九一剧情麻豆| 亚洲视频一区在线| 夜夜嗨av一区二区三区中文字幕| 一区二区三区四区不卡在线 | 欧美日韩一区视频| 欧美日韩国产欧美日美国产精品| 在线观看精品一区| 制服丝袜av成人在线看| 欧美一区二区三区四区视频 | 91国偷自产一区二区三区成为亚洲经典 | 免费成人深夜小野草| 奇米精品一区二区三区在线观看| 日韩国产在线观看一区| 日韩1区2区日韩1区2区| 国产做a爰片久久毛片| 国产成人亚洲综合色影视| 91在线一区二区三区| 欧美色中文字幕| 欧美电影免费观看高清完整版在线 | 2023国产精品自拍| 欧美极品xxx| 亚洲男同性恋视频| 日韩av电影免费观看高清完整版| 国产一区美女在线| 色综合久久88色综合天天6| 欧美福利一区二区| 日本一区二区视频在线| 亚洲一区二区三区影院| 捆绑紧缚一区二区三区视频| 国产91色综合久久免费分享| 91精彩视频在线观看| 日韩女优av电影| 亚洲欧洲精品一区二区三区| 日本aⅴ亚洲精品中文乱码| 国产白丝网站精品污在线入口| 色综合色狠狠综合色| 精品国产第一区二区三区观看体验 | 风间由美中文字幕在线看视频国产欧美| 成人av电影在线播放| 在线不卡一区二区| 中文在线免费一区三区高中清不卡| 亚洲欧美日韩综合aⅴ视频| 精彩视频一区二区| 在线观看日产精品| 日本一区二区三区视频视频| 日韩不卡手机在线v区| 99久久精品99国产精品| 日韩欧美国产一区二区在线播放 | 欧美特级限制片免费在线观看| 久久久美女艺术照精彩视频福利播放| 伊人一区二区三区| 懂色av一区二区三区免费观看| 91精品国产一区二区三区香蕉| 欧美高清在线一区| 美国毛片一区二区三区| 91豆麻精品91久久久久久| 久久久久97国产精华液好用吗| 午夜精品久久久久久| 97久久久精品综合88久久| 久久五月婷婷丁香社区| 日日欢夜夜爽一区| 欧美亚洲综合色| 亚洲欧美一区二区不卡| 成人精品鲁一区一区二区| 日韩精品专区在线影院重磅| 丝袜国产日韩另类美女| 欧日韩精品视频| 亚洲天堂免费在线观看视频| 成人小视频免费观看| 久久久蜜桃精品| 国产毛片精品视频| 欧美sm美女调教| 奇米色777欧美一区二区| 欧美色偷偷大香| 亚洲免费在线播放| 99热这里都是精品| 国产精品久久久久精k8| 成人午夜视频免费看| 久久久久国产精品厨房| 精品一区二区三区久久久| 91精品国产综合久久蜜臀| 日韩国产欧美三级| 欧美巨大另类极品videosbest| 亚洲高清视频中文字幕| 欧美综合视频在线观看| 91丨九色丨蝌蚪富婆spa| 国产精品国产三级国产a | 亚洲色图一区二区| 99国产麻豆精品| 亚洲欧美色图小说| 欧美在线免费播放| 亚洲尤物在线视频观看| 欧美日韩成人高清| 视频在线在亚洲| 日韩美女视频一区二区在线观看| 久久国产福利国产秒拍| 久久亚洲综合色一区二区三区| 国产精品一区二区三区网站| 国产精品无码永久免费888| 99视频精品在线| 亚洲一级在线观看| 制服丝袜亚洲播放| 韩国精品在线观看| 欧美国产激情二区三区| 99久久免费视频.com| 一区二区三区精品在线| 欧美人伦禁忌dvd放荡欲情| 另类调教123区| 国产精品乱人伦| 91久久国产最好的精华液| 午夜不卡在线视频| 精品sm在线观看| 91最新地址在线播放| 亚洲成人精品一区| 欧美精品一区二区三区一线天视频 | 天天综合色天天综合色h| 精品欧美一区二区久久| 99视频热这里只有精品免费| 亚洲动漫第一页| 26uuu久久天堂性欧美|