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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? 測試模式提取及模式壓縮軟件設計,huffman編碼與golomb碼的比較.txt

?? 從 Mentor Graphics 的自動測試圖形生成(ATPG)工具 FastScan的 測試文檔中提取出測試電路(CUT)的測試模式
?? TXT
?? 第 1 頁 / 共 2 頁
字號:
//模式提取 
 OnButton1()用于從測試文檔中提取出測試模式,并且在圖形界面中顯示出來。 
 OnButton2()將提取出來的測試模式,以自己的文件格式保存。 
//模式壓縮軟件設計 
 OnButton1()從文檔中讀入測試數據,顯示在圖形界面上。 
 OnButton3()對于測試數據,使用 Huffman 編碼進行壓縮,并且將壓縮后的數據以及結
果報告顯示在界面上。 
 OnButton4()對于測試數據,使用 Golomb 編碼進行壓縮,并且將壓縮后的數據以及結果
報告顯示在界面上。 
 Gethafmtree()根據對碼字出現頻率的統計,建立哈夫曼樹。 
 GetCode()  根據建好的哈夫曼樹, 根據根結點到葉子結點的路徑, 得到每種碼字的編碼。  
//模式提取: 
// serveDlg.cpp : implementation file 
// 


#include "stdafx.h" 
#include "serve.h" 
#include "serveDlg.h" 
#include <fstream.h> 
#include "m_input.h" 
#include "Dialog2.h" 
#include "math.h" 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 

///////////////////////////////////////////////////////////////////////////// 
// CAboutDlg dialog used for App About 
int chainnumber; 
float numberbeforecode; 
CString str[1000]; 
int width[1000],listnumber; 
int number=0; 
bool compareb(char b[]) 
  {  
   if(b[0]=='S'&&b[1]=='C'&&b[2]=='A'&&b[3]=='N') 
    return true; 
   else return false; 
  } 

bool comparec(char c[]) 
{ 
 if(c[0]=='p'&&c[1]=='a'&&c[2]=='t'&&c[3]=='t'&&c[4]=='e'&&c[5]=='r'&&c[6]=='n') 
  return true; 
  else return false; 
} 
bool compared(char d[]) 
{ 
 if(d[0]=='"'&&d[1]=='='&&d[2]=='"') 
  return true; 
  else return false; 
} 

bool comparee(char e[]) 
{ 
 if(e[0]=='e'&&e[1]=='n'&&e[2]=='d') 
  return true; 
  else return false; 
} 
 
class CAboutDlg : public CDialog 
{ 
public: 
 CAboutDlg(); 
 
// Dialog Data 
 //{{AFX_DATA(CAboutDlg) 
  enum { IDD = IDD_ABOUTBOX }; 
 //}}AFX_DATA 
 
  // ClassWizard generated virtual function overrides 
 //{{AFX_VIRTUAL(CAboutDlg) 
 protected: 
  virtual void DoDataExchange(CDataExchange* pDX);        // DDX/DDV support 
 //}}AFX_VIRTUAL 

// Implementation 
protected: 
 //{{AFX_MSG(CAboutDlg) 
 //}}AFX_MSG 
 DECLARE_MESSAGE_MAP() 
}; 
 
CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD) 
{ 
 //{{AFX_DATA_INIT(CAboutDlg) 
 //}}AFX_DATA_INIT 
} 
 
void CAboutDlg::DoDataExchange(CDataExchange* pDX) 
{ 
 CDialog::DoDataExchange(pDX); 
 //{{AFX_DATA_MAP(CAboutDlg) 
 //}}AFX_DATA_MAP 
} 

BEGIN_MESSAGE_MAP(CAboutDlg, CDialog) 
 //{{AFX_MSG_MAP(CAboutDlg) 
    // No message handlers 
 //}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CServeDlg dialog 
 
CServeDlg::CServeDlg(CWnd* pParent /*=NULL*/) 
 : CDialog(CServeDlg::IDD, pParent) 
{ 
 //{{AFX_DATA_INIT(CServeDlg) 
  m_edit = _T(""); 
  //}}AFX_DATA_INIT 
  // Note that LoadIcon does not require a subsequent DestroyIcon in Win32 
 m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); 
} 
 
void CServeDlg::DoDataExchange(CDataExchange* pDX) 
{ 
 CDialog::DoDataExchange(pDX); 
 //{{AFX_DATA_MAP(CServeDlg) 
  DDX_Text(pDX, IDC_EDIT1, m_edit); 
 //}}AFX_DATA_MAP 
} 

BEGIN_MESSAGE_MAP(CServeDlg, CDialog) 
 //{{AFX_MSG_MAP(CServeDlg) 
 ON_WM_SYSCOMMAND() 
 ON_WM_PAINT() 
 ON_WM_QUERYDRAGICON() 
 ON_EN_CHANGE(IDC_EDIT1, OnChangeEdit1) 
 ON_BN_CLICKED(IDC_BUTTON1, OnButton1) 
 ON_BN_CLICKED(IDC_BUTTON3, OnButton3) 
 ON_BN_CLICKED(IDC_BUTTON4, OnButton4) 
 ON_BN_CLICKED(IDC_BUTTON2, OnButton2) 
 //}}AFX_MSG_MAP 
END_MESSAGE_MAP() 

///////////////////////////////////////////////////////////////////////////// 
// CServeDlg message handlers 
 
BOOL CServeDlg::OnInitDialog() 
{ 
 CDialog::OnInitDialog(); 
 
  // Add "About..." menu item to system menu. 
 
  // IDM_ABOUTBOX must be in the system command range. 
  ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX); 
  ASSERT(IDM_ABOUTBOX < 0xF000); 

  CMenu* pSysMenu = GetSystemMenu(FALSE); 
  if (pSysMenu != NULL) 
 { 
  CString strAboutMenu; 
  strAboutMenu.LoadString(IDS_ABOUTBOX); 
  if (!strAboutMenu.IsEmpty()) 
  { 
   pSysMenu->AppendMenu(MF_SEPARATOR); 
   pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu); 
  } 
 } 

  // Set the icon for this dialog.    The framework does this automatically 
  //    when the application's main window is not a dialog 
 SetIcon(m_hIcon, TRUE);   // Set big icon 
  SetIcon(m_hIcon, FALSE);    // Set small icon 
  
  // TODO: Add extra initialization here 
  
  return TRUE;    // return TRUE    unless you set the focus to a control 
} 
 
void CServeDlg::OnSysCommand(UINT nID, LPARAM lParam) 
{ 
  if ((nID & 0xFFF0) == IDM_ABOUTBOX) 
 { 
  CAboutDlg dlgAbout; 
  dlgAbout.DoModal(); 
 } 
 else 
 { 
  CDialog::OnSysCommand(nID, lParam); 
 } 
} 

// If you add a minimize button to your dialog, you will need the code below 
//    to draw the icon.    For MFC applications using the document/view model, 
//    this is automatically done for you by the framework. 

void CServeDlg::OnPaint()   
{ 
 if (IsIconic()) 
 { 
    CPaintDC dc(this); // device context for painting 
 
  SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0); 
 
    // Center icon in client rectangle 
    int cxIcon = GetSystemMetrics(SM_CXICON); 
    int cyIcon = GetSystemMetrics(SM_CYICON); 
  CRect rect; 
  GetClientRect(&rect); 
    int x = (rect.Width() - cxIcon + 1) / 2; 
    int y = (rect.Height() - cyIcon + 1) / 2; 
    
    // Draw the icon 
  dc.DrawIcon(x, y, m_hIcon); 
 } 
 else 
 { 
  CDialog::OnPaint(); 
 } 
} 
 
// The system calls this to obtain the cursor to display while the user drags 
//  the minimized window. 

HCURSOR CServeDlg::OnQueryDragIcon() 
{ 
  return (HCURSOR) m_hIcon; 
} 
 
void CServeDlg::OnChangeEdit1()   
{ 
  // TODO: If this is a RICHEDIT control, the control will not 
  // send this notification unless you override the CDialog::OnInitDialog()
  // function and call CRichEditCtrl().SetEventMask() 
  // with the ENM_CHANGE flag ORed into the mask. 
  
  // TODO: Add your control notification handler code here 
  
} 

void CServeDlg::OnButton1()   
{ 
 bool config,config1,config2; 
 char a,b[4],c[7],d[3],e[3],tempb; 
 link p; 
 CString temp0=CString(""); 
 CString temp1=CString(""); 
 int i,j,k,m,num; 
 i=j=k=num=0; 
 config=config1=config2=false; 
 numberbeforecode=0; 
 CFileDialog 
fdlg(TRUE,NULL,NULL,OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT,_T("TXT 
Files(*.txt)|*.txt||"),NULL); 
 if(fdlg.DoModal()==IDOK) 
 {  
  CString strFilePath; 
  strFilePath=fdlg.GetPathName(); 
        ifstream in(strFilePath); 
   
  for(i=0;i<1000;i++) 
  { 
   str[i]=CString("CHAIN"); 
  } 

 
  m_edit=CString(""); 
 while(!in.eof()) 
 {  
  in>>a; 

  if(i<4) 
   b[i]=a; 
  else 
  { 
   for(m=0;m<3;m++) 
    b[m]=b[m+1]; 
            b[3]=a; 
  } 
  if(i<7) 
   c[i]=a; 
  else 
  { 
   for(m=0;m<6;m++) 
    c[m]=c[m+1]; 
            c[6]=a; 
  } 
  if(i<3) 
   d[i]=a; 
  else 
  { 
   for(m=0;m<2;m++) 
    d[m]=d[m+1]; 
            d[2]=a; 
  } 
if(i<3) 
   e[i]=a; 
  else 
  { 
   for(m=0;m<2;m++) 
    e[m]=e[m+1]; 
            e[2]=a; 
  } 
  i++; 
  if(compareb(b)==true) 
  { 
   config=true; 
    
  } 
  if(comparec(c)==true&&config==true) 
  { 
   config1=true; 
   number++; 
  } 
  if(compared(d)==true&&config1==true)
   config2=true; 
  if((a=='1'||a=='0'||a=='X'||a=='x')&&config2==true) 
  {  
   str[k]=str[k]+a; 
   num++; 
   numberbeforecode++; 
  } 
        
if(a=='"'&&config2==true&&comparee(e)!=true&&compared(d)!=true&&comparec(c)!=true&&
compareb(b)!=true) 
  {  
   config2=false; 
   width[k]=num; 
   k++; 
   num=0; 
  } 
  if(config2==false&&comparee(e)==true&&config==true&&config1==true) 
  { 
   chainnumber=k; 
   k=0; 
   config1=false; 
  } 
 
 } 
  
 for(i=0;i<chainnumber;i++) 
 { 
      str[i]=str[i]+"\r\n"; 
  temp1="number:"; 
  str[i]+=temp1; 
  temp0=""; 
  temp0.Format("%d",number); 
  temp0=temp0+"\r\n"; 
  str[i]+=temp0; 
  temp1="width:"; 
  str[i]+=temp1; 
  temp0=""; 
  temp0.Format("%d",width[i]); 
  temp0=temp0+"\r\n"; 
  str[i]=str[i]+temp0; 
 } 
  
 for(i=0;i<chainnumber;i++) 
      m_edit+=str[i]; 
  
 }  
 UpdateData(false);  
 } 
void CServeDlg::OnButton2()   
{ 
 CFileDialog 
fdlg(FALSE,NULL,NULL,OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT,_T("TXT 
Files(*.txt)|*.txt||"),NULL); 
 if(fdlg.DoModal()==IDOK) 
 {  
  CString strFilePath; 
  strFilePath=fdlg.GetPathName(); 
        ofstream fout(strFilePath); 
  int i,m,n; 
  char b; 
  for(i=0;i<chainnumber;i++) 
  { 
   m=0; 
   fout<<number<<" "; 
   fout<<width[i]<<endl; 
   for(n=0;n<str[i].GetLength();n++) 
   { 
    b=str[i].GetAt(n); 
    if(b=='1'||b=='0'||b=='X'||b=='x') 
    { 
     if(m<width[i]*number) 
     { 
      fout<<b; 
      m++; 
     } 
    } 
   } 
   fout<<endl; 
  } 
 } 
   
} 
/模式壓縮軟件設計 
// serveDlg.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "serve.h" 
#include "serveDlg.h" 
#include "m_input.h" 
#include "Dialog2.h" 
#include "math.h" 
#include "fstream" 
#include "vector" 
using namespace std; 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CAboutDlg dialog used for App About 
CString str,str1,str2,str3,str4,str5,str6; 
CString cod[1000]; 
vector<CString> vec; 
vector<CString> vec1; 
vector<int>     freqence; 
int bnode[10000]; 
float numberbeforecode; 
int width; 
int length; 
//結構定義; 
struct node 
{ 
 char data; 
  struct node *next; 
}; 
typedef node *link; 
link list; 
struct tnode 
{ 
 int num; 
 int freq; 
 tnode *next; 
 tnode *lchild,*rchild; 
}; 
typedef tnode *tree; 
tree roott; 
 
//  建立哈夫曼樹; 
tree Gethafmtree(int bnode[],int length) 
 { 
  tnode head; 
  tree pre,p; 
  head.next=NULL;  
  int w; 
  for(w=0;w<length;w++) 
  { 
   pre=&head; 
   p=head.next; 
   while(p!=NULL&&p->freq<bnode[w]) 
   { 
    pre=p; 
    p=p->next; 
   } 
   tree newtree=new tnode; 
   newtree->freq=bnode[w]; 
   newtree->lchild=NULL; 
   newtree->rchild=NULL; 
   newtree->num=w; 
   pre->next=newtree; 
   newtree->next=p; 
  } 
  for(w=1;w<length;w++) 
  { 
   tree newtree=new tnode; 
   tree first,second; 
   first=head.next; 
   second=first->next; 
   head.next=second->next; 
   newtree->freq=first->freq+second->freq; 
   newtree->lchild=first; 
   newtree->rchild=second; 
   newtree->num=-1; 
   pre=&head; 
   p=head.next; 
   while(p!=NULL&&p->freq<newtree->freq) 
   { 
     pre=p; 
    p=p->next; 
   } 
   pre->next=newtree; 
   newtree->next=p; 
  } 
  return head.next; 
 } 
//遍歷哈夫曼樹,得到每種碼字對應的編碼; 
char A[100]; 
void Getcode(tree t,int m) 
{ 
 if(t!=NULL) 
 { 
  if(t->lchild==NULL&&t->rchild==NULL) 
  {  
   int w; 
   for(w=0;w<m;w++) 
   { 
    cod[t->num]=cod[t->num]+A[w]; 
   } 
  } 
  if(t->lchild!=NULL) 
  { 
   A[m]='0'; 
   Getcode(t->lchild,m+1); 
  } 
  if(t->rchild!=NULL) 
  { 
   A[m]='1'; 
   Getcode(t->rchild,m+1); 
  } 
         
 } 
} 
 
 
class CAboutDlg : public CDialog 
{ 
public: 
 CAboutDlg(); 
 
// Dialog Data 
 //{{AFX_DATA(CAboutDlg) 
  enum { IDD = IDD_ABOUTBOX }; 
 //}}AFX_DATA 
 
  // ClassWizard generated virtual function overrides 
 //{{AFX_VIRTUAL(CAboutDlg) 
 protected: 
  virtual void DoDataExchange(CDataExchange* pDX);        // DDX/DDV support 
 //}}AFX_VIRTUAL 
 
// Implementation 
protected: 
 //{{AFX_MSG(CAboutDlg) 
 //}}AFX_MSG 
 DECLARE_MESSAGE_MAP() 
}; 
 
CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD) 
{ 
 //{{AFX_DATA_INIT(CAboutDlg) 
 //}}AFX_DATA_INIT 
} 
 
void CAboutDlg::DoDataExchange(CDataExchange* pDX) 
{ 
 CDialog::DoDataExchange(pDX); 
 //{{AFX_DATA_MAP(CAboutDlg) 
 //}}AFX_DATA_MAP 
} 
 
BEGIN_MESSAGE_MAP(CAboutDlg, CDialog) 
 //{{AFX_MSG_MAP(CAboutDlg) 
    // No message handlers 
 //}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CServeDlg dialog 
 
CServeDlg::CServeDlg(CWnd* pParent /*=NULL*/) 
 : CDialog(CServeDlg::IDD, pParent) 
{ 
 //{{AFX_DATA_INIT(CServeDlg) 
  m_edit = _T(""); 
 //}}AFX_DATA_INIT 
  // Note that LoadIcon does not require a subsequent DestroyIcon in Win32 
 m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); 
} 

void CServeDlg::DoDataExchange(CDataExchange* pDX) 
{ 
 CDialog::DoDataExchange(pDX); 


//{{AFX_DATA_MAP(CServeDlg) 
  DDX_Text(pDX, IDC_EDIT1, m_edit); 
 //}}AFX_DATA_MAP 
} 
 
BEGIN_MESSAGE_MAP(CServeDlg, CDialog) 
 //{{AFX_MSG_MAP(CServeDlg) 
 ON_WM_SYSCOMMAND() 
 ON_WM_PAINT() 
 ON_WM_QUERYDRAGICON() 
 ON_EN_CHANGE(IDC_EDIT1, OnChangeEdit1) 
 ON_BN_CLICKED(IDC_BUTTON1, OnButton1) 
 ON_BN_CLICKED(IDC_BUTTON3, OnButton3) 
 ON_BN_CLICKED(IDC_BUTTON4, OnButton4) 
 ON_BN_CLICKED(IDC_BUTTON2, OnButton2) 
 //}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CServeDlg message handlers 
 
BOOL CServeDlg::OnInitDialog() 
{ 
 CDialog::OnInitDialog(); 
 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
丝袜亚洲另类丝袜在线| 成人高清免费在线播放| 国产一区二区三区黄视频| 成人av动漫网站| 欧美一级在线免费| 亚洲欧美激情小说另类| 精品一区中文字幕| 欧美日韩国产综合一区二区三区| 久久久不卡影院| 日韩精品成人一区二区三区| 99re这里只有精品首页| 精品国产成人系列| 婷婷综合另类小说色区| 91一区一区三区| 国产视频不卡一区| 精品制服美女久久| 欧美麻豆精品久久久久久| 成人欧美一区二区三区黑人麻豆 | 欧美高清视频不卡网| 亚洲制服丝袜av| 国产**成人网毛片九色| 日韩欧美一区二区三区在线| 亚洲一区二区精品久久av| 99久久精品国产毛片| 久久久不卡影院| 国产一区二区三区美女| 日韩视频在线永久播放| 视频在线观看一区二区三区| 欧美色图免费看| 一区二区三区欧美| 91美女福利视频| 亚洲欧美二区三区| 色94色欧美sute亚洲线路一久| 欧美高清一级片在线观看| 国产综合色产在线精品| 精品人在线二区三区| 美女一区二区久久| 日韩一级完整毛片| 免费成人美女在线观看.| 欧美一区二区三级| 久久国产视频网| 精品国产一区二区三区不卡| 国产中文一区二区三区| 亚洲精品一区在线观看| 国产米奇在线777精品观看| 欧美v亚洲v综合ⅴ国产v| 国产一区二区三区综合| 国产欧美日韩视频一区二区| 风间由美一区二区三区在线观看| 中文字幕av免费专区久久| 99re这里只有精品视频首页| 亚洲综合色丁香婷婷六月图片| 欧美日韩一卡二卡| 蜜臀a∨国产成人精品| 久久伊99综合婷婷久久伊| 成人中文字幕电影| 亚洲免费伊人电影| 制服丝袜亚洲色图| 国内精品写真在线观看| 中文字幕五月欧美| 3atv在线一区二区三区| 国产精品资源网| 一区二区三区免费| 日韩免费观看高清完整版 | 久久爱www久久做| 欧美激情资源网| 欧美在线你懂的| 国产一区二三区| 一区二区三区视频在线看| 欧美大片一区二区| www.欧美.com| 三级成人在线视频| 中文字幕免费不卡| 91精品国产高清一区二区三区| 韩国av一区二区三区四区| 亚洲精品久久7777| 欧美电影免费观看高清完整版在线| 岛国精品在线观看| 日韩精品欧美精品| 亚洲欧洲日本在线| 欧美电视剧在线看免费| 在线一区二区观看| 国产精品亚洲视频| 日日夜夜精品视频免费| 国产精品免费网站在线观看| 91精品国产综合久久蜜臀| 成人h动漫精品一区二区| 青草av.久久免费一区| 国产精品超碰97尤物18| 精品国产一区二区三区四区四| 欧美在线免费观看亚洲| 成人黄色免费短视频| 麻豆精品新av中文字幕| 亚洲一区在线看| 成人欧美一区二区三区1314| 久久久久久久久久久久电影| 91精品国产黑色紧身裤美女| 欧美在线短视频| 91香蕉视频污| 成人午夜视频在线观看| 国产精品一区二区视频| 日本一区中文字幕| 亚洲成人免费观看| 一区二区三区精品视频在线| 国产精品福利影院| 国产亚洲精久久久久久| 久久综合色之久久综合| 日韩一区二区三| 日韩一级黄色大片| 91精品国产入口在线| 欧美一区二区免费观在线| 欧美日韩国产a| 欧美日韩综合在线| 欧美性一区二区| 精品1区2区3区| 欧美人动与zoxxxx乱| 欧美福利电影网| 91精品国产欧美一区二区成人| 欧美人妖巨大在线| 欧美精品在欧美一区二区少妇| 欧美日韩免费观看一区三区| 欧美日韩在线三区| 欧美日韩精品一区视频| 欧美美女直播网站| 5月丁香婷婷综合| 日韩欧美激情一区| 精品va天堂亚洲国产| 国产欧美一区二区精品久导航| 欧美国产一区二区| 亚洲欧洲国产日韩| 亚洲午夜激情av| 日韩—二三区免费观看av| 麻豆精品久久久| 国产美女主播视频一区| av在线播放成人| 欧美亚洲国产一区二区三区va| 欧美日韩免费在线视频| 欧美一级欧美三级| 久久精子c满五个校花| 国产精品久久久一区麻豆最新章节| 亚洲色图制服丝袜| 日日骚欧美日韩| 国产精品中文有码| 97久久久精品综合88久久| 欧美综合在线视频| 亚洲精品在线电影| 一区二区三区蜜桃网| 蜜桃视频在线一区| 99视频有精品| 欧美久久久久久久久中文字幕| 精品国产伦一区二区三区免费 | 欧美在线免费观看亚洲| 日韩久久久精品| ●精品国产综合乱码久久久久| 亚洲国产成人精品视频| 国产精品一区二区三区99| 色婷婷综合久色| 久久只精品国产| 一区二区三区在线观看欧美| 激情五月激情综合网| 色综合天天性综合| 国产精品人人做人人爽人人添| 亚洲欧洲一区二区在线播放| 亚洲国产一区视频| 丁香婷婷综合五月| 欧美一区二区视频网站| 中文字幕亚洲一区二区av在线| 三级欧美在线一区| 99在线精品一区二区三区| 欧美大片一区二区| 亚洲一区二区三区中文字幕在线| 国产一区二区成人久久免费影院| 欧美色网站导航| 中文字幕一区二区日韩精品绯色| 另类调教123区| 欧美日韩国产天堂| 亚洲激情自拍偷拍| 风间由美性色一区二区三区| 精品久久久久久久久久久院品网 | 狠狠色丁香九九婷婷综合五月| 99riav久久精品riav| 久久久精品黄色| 日韩精品一级二级 | 日韩伦理av电影| 国产精品一二三在| 日韩欧美一区二区免费| 亚洲成人综合网站| 欧洲视频一区二区| 亚洲免费大片在线观看| 99麻豆久久久国产精品免费优播| 欧美大片在线观看一区二区| 日本在线不卡一区| 8v天堂国产在线一区二区| 人妖欧美一区二区| 日本韩国欧美在线| 国产精品对白交换视频| 菠萝蜜视频在线观看一区| 国产亚洲欧美日韩在线一区| 国内精品免费**视频| www久久精品|