青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

Kisser Leon

這個kisser不太冷
posts - 100, comments - 102, trackbacks - 0, articles - 0

ConvertUTF.c

Posted on 2007-03-08 16:02 kk 閱讀(3345) 評論(0)  編輯 收藏 引用 所屬分類: IT
UTF8和UTF16和UTF32之間的相互轉(zhuǎn)化

/* ================================================================ */
/*
File:?? ?ConvertUTF.C
Author: Mark E. Davis
Copyright (C) 1994 Taligent, Inc. All rights reserved.

This code is copyrighted. Under the copyright laws, this code may not
be copied, in whole or part, without prior written consent of Taligent.

Taligent grants the right to use or reprint this code as long as this
ENTIRE copyright notice is reproduced in the code or reproduction.
The code is provided AS-IS, AND TALIGENT DISCLAIMS ALL WARRANTIES,
EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.? IN
NO EVENT WILL TALIGENT BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING,
WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS
INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER PECUNIARY
LOSS) ARISING OUT OF THE USE OR INABILITY TO USE THIS CODE, EVEN
IF TALIGENT HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
BECAUSE SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF
LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, THE ABOVE
LIMITATION MAY NOT APPLY TO YOU.

RESTRICTED RIGHTS LEGEND: Use, duplication, or disclosure by the
government is subject to restrictions as set forth in subparagraph
(c)(l)(ii) of the Rights in Technical Data and Computer Software
clause at DFARS 252.227-7013 and FAR 52.227-19.

This code may be protected by one or more U.S. and International
Patents.

TRADEMARKS: Taligent and the Taligent Design Mark are registered
trademarks of Taligent, Inc.
*/
/* ================================================================ */

#include "ConvertUTF.h"

/* ================================================================ */

const int halfShift?? ??? ??? ??? ?= 10;
const UCS4 halfBase?? ??? ??? ??? ?= 0x0010000UL;
const UCS4 halfMask?? ??? ??? ??? ?= 0x3FFUL;
const UCS4 kSurrogateHighStart?? ?= 0xD800UL;
const UCS4 kSurrogateHighEnd?? ?= 0xDBFFUL;
const UCS4 kSurrogateLowStart?? ?= 0xDC00UL;
const UCS4 kSurrogateLowEnd?? ??? ?= 0xDFFFUL;

/* ================================================================ */

ConversionResult?? ?ConvertUCS4toUTF16 (
?? ??? ?UCS4** sourceStart, const UCS4* sourceEnd,
?? ??? ?UTF16** targetStart, const UTF16* targetEnd) {
?? ?ConversionResult result = kUTFConversionOK;
?? ?register UCS4* source = *sourceStart;
?? ?register UTF16* target = *targetStart;
?? ?while (source < sourceEnd) {
?? ??? ?register UCS4 ch;
?? ??? ?if (target >= targetEnd) {
?? ??? ??? ?result = kUTFConversionTargetExhausted; break;
?? ??? ?};
?? ??? ?ch = *source++;
?? ??? ?if (ch <= kMaximumUCS2) {
?? ??? ??? ?*target++ = ch;
?? ??? ?} else if (ch > kMaximumUTF16) {
?? ??? ??? ?*target++ = kReplacementCharacter;
?? ??? ?} else {
?? ??? ??? ?if (target + 1 >= targetEnd) {
?? ??? ??? ??? ?result = kUTFConversionTargetExhausted; break;
?? ??? ??? ?};
?? ??? ??? ?ch -= halfBase;
?? ??? ??? ?*target++ = (ch >> halfShift) + kSurrogateHighStart;
?? ??? ??? ?*target++ = (ch & halfMask) + kSurrogateLowStart;
?? ??? ?};
?? ?};
?? ?*sourceStart = source;
?? ?*targetStart = target;
?? ?return result;
};

/* ================================================================ */

ConversionResult?? ?ConvertUTF16toUCS4 (
?? ??? ?UTF16** sourceStart, UTF16* sourceEnd,
?? ??? ?UCS4** targetStart, const UCS4* targetEnd) {
?? ?ConversionResult result = kUTFConversionOK;
?? ?register UTF16* source = *sourceStart;
?? ?register UCS4* target = *targetStart;
?? ?while (source < sourceEnd) {
?? ??? ?register UCS4 ch;
?? ??? ?ch = *source++;
?? ??? ?if (ch >= kSurrogateHighStart && ch <= kSurrogateHighEnd && source < sourceEnd) {
?? ??? ??? ?register UCS4 ch2 = *source;
?? ??? ??? ?if (ch2 >= kSurrogateLowStart && ch2 <= kSurrogateLowEnd) {
?? ??? ??? ??? ?ch = ((ch - kSurrogateHighStart) << halfShift)
?? ??? ??? ??? ??? ?+ (ch2 - kSurrogateLowStart) + halfBase;
?? ??? ??? ??? ?++source;
?? ??? ??? ?};
?? ??? ?};
?? ??? ?if (target >= targetEnd) {
?? ??? ??? ?result = kUTFConversionTargetExhausted; break;
?? ??? ?};
?? ??? ?*target++ = ch;
?? ?};
?? ?*sourceStart = source;
?? ?*targetStart = target;
?? ?return result;
};

/* ================================================================ */

UCS4 offsetsFromUTF8[6] =?? ?{0x00000000UL, 0x00003080UL, 0x000E2080UL,
?? ??? ??? ??? ??? ? ?? ? ?? ? 0x03C82080UL, 0xFA082080UL, 0x82082080UL};
char bytesFromUTF8[256] = {
?? ?0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
?? ?0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
?? ?0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
?? ?0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
?? ?0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
?? ?0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
?? ?1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
?? ?2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, 3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5};

UTF8 firstByteMark[7] = {0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC};

/* ================================================================ */
/*?? ?This code is similar in effect to making successive calls on the
mbtowc and wctomb routines in FSS-UTF. However, it is considerably
different in code:
* it is adapted to be consistent with UTF16,
* the interface converts a whole buffer to avoid function-call overhead
* constants have been gathered.
* loops & conditionals have been removed as much as possible for
efficiency, in favor of drop-through switch statements.
*/

/* ================================================================ */
ConversionResult?? ?ConvertUTF16toUTF8 (
?? ??? ?UTF16** sourceStart, const UTF16* sourceEnd,
?? ??? ?UTF8** targetStart, const UTF8* targetEnd)
{
?? ?ConversionResult result = kUTFConversionOK;
?? ?register UTF16* source = *sourceStart;
?? ?register UTF8* target = *targetStart;
?? ?while (source < sourceEnd) {
?? ??? ?register UCS4 ch;
?? ??? ?register unsigned short bytesToWrite = 0;
?? ??? ?register const UCS4 byteMask = 0xBF;
?? ??? ?register const UCS4 byteMark = 0x80;
?? ??? ?ch = *source++;
?? ??? ?if (ch >= kSurrogateHighStart && ch <= kSurrogateHighEnd
?? ??? ??? ??? ?&& source < sourceEnd) {
?? ??? ??? ?register UCS4 ch2 = *source;
?? ??? ??? ?if (ch2 >= kSurrogateLowStart && ch2 <= kSurrogateLowEnd) {
?? ??? ??? ??? ?ch = ((ch - kSurrogateHighStart) << halfShift)
?? ??? ??? ??? ??? ?+ (ch2 - kSurrogateLowStart) + halfBase;
?? ??? ??? ??? ?++source;
?? ??? ??? ?};
?? ??? ?};
?? ??? ?if (ch < 0x80) {?? ??? ??? ??? ?bytesToWrite = 1;
?? ??? ?} else if (ch < 0x800) {?? ??? ?bytesToWrite = 2;
?? ??? ?} else if (ch < 0x10000) {?? ??? ?bytesToWrite = 3;
?? ??? ?} else if (ch < 0x200000) {?? ??? ?bytesToWrite = 4;
?? ??? ?} else if (ch < 0x4000000) {?? ?bytesToWrite = 5;
?? ??? ?} else if (ch <= kMaximumUCS4){?? ?bytesToWrite = 6;
?? ??? ?} else {?? ??? ??? ??? ??? ??? ?bytesToWrite = 2;
?? ??? ??? ??? ??? ??? ??? ??? ??? ??? ?ch = kReplacementCharacter;
?? ??? ?}; /* I wish there were a smart way to avoid this conditional */
?? ??? ?
?? ??? ?target += bytesToWrite;
?? ??? ?if (target > targetEnd) {
?? ??? ??? ?target -= bytesToWrite; result = kUTFConversionTargetExhausted; break;
?? ??? ?};
?? ??? ?switch (bytesToWrite) {?? ?/* note: code falls through cases! */
?? ??? ??? ?case 6:?? ?*--target = (ch | byteMark) & byteMask; ch >>= 6;
?? ??? ??? ?case 5:?? ?*--target = (ch | byteMark) & byteMask; ch >>= 6;
?? ??? ??? ?case 4:?? ?*--target = (ch | byteMark) & byteMask; ch >>= 6;
?? ??? ??? ?case 3:?? ?*--target = (ch | byteMark) & byteMask; ch >>= 6;
?? ??? ??? ?case 2:?? ?*--target = (ch | byteMark) & byteMask; ch >>= 6;
?? ??? ??? ?case 1:?? ?*--target =? ch | firstByteMark[bytesToWrite];
?? ??? ?};
?? ??? ?target += bytesToWrite;
?? ?};
?? ?*sourceStart = source;
?? ?*targetStart = target;
?? ?return result;
};

/* ================================================================ */

ConversionResult?? ?ConvertUTF8toUTF16 (
?? ??? ?UTF8** sourceStart, const UTF8* sourceEnd,
?? ??? ?UTF16** targetStart, const UTF16* targetEnd)
{
?? ?ConversionResult result = kUTFConversionOK;
?? ?register UTF8* source = *sourceStart;
?? ?register UTF16* target = *targetStart;
?? ?while (source < sourceEnd) {
?? ??? ?register UCS4 ch = 0;
?? ??? ?register unsigned short extraBytesToWrite = bytesFromUTF8[*source];
?? ??? ?if (source + extraBytesToWrite > sourceEnd) {
?? ??? ??? ?result = kUTFConversionSourceExhausted; break;
?? ??? ?};
?? ??? ?switch(extraBytesToWrite) {?? ?/* note: code falls through cases! */
?? ??? ??? ?case 5:?? ?ch += *source++; ch <<= 6;
?? ??? ??? ?case 4:?? ?ch += *source++; ch <<= 6;
?? ??? ??? ?case 3:?? ?ch += *source++; ch <<= 6;
?? ??? ??? ?case 2:?? ?ch += *source++; ch <<= 6;
?? ??? ??? ?case 1:?? ?ch += *source++; ch <<= 6;
?? ??? ??? ?case 0:?? ?ch += *source++;
?? ??? ?};
?? ??? ?ch -= offsetsFromUTF8[extraBytesToWrite];

?? ??? ?if (target >= targetEnd) {
?? ??? ??? ?result = kUTFConversionTargetExhausted; break;
?? ??? ?};
?? ??? ?if (ch <= kMaximumUCS2) {
?? ??? ??? ?*target++ = ch;
?? ??? ?} else if (ch > kMaximumUTF16) {
?? ??? ??? ?*target++ = kReplacementCharacter;
?? ??? ?} else {
?? ??? ??? ?if (target + 1 >= targetEnd) {
?? ??? ??? ??? ?result = kUTFConversionTargetExhausted; break;
?? ??? ??? ?};
?? ??? ??? ?ch -= halfBase;
?? ??? ??? ?*target++ = (ch >> halfShift) + kSurrogateHighStart;
?? ??? ??? ?*target++ = (ch & halfMask) + kSurrogateLowStart;
?? ??? ?};
?? ?};
?? ?*sourceStart = source;
?? ?*targetStart = target;
?? ?return result;
};

/* ================================================================ */
ConversionResult?? ?ConvertUCS4toUTF8 (
?? ??? ?UCS4** sourceStart, const UCS4* sourceEnd,
?? ??? ?UTF8** targetStart, const UTF8* targetEnd)
{
?? ?ConversionResult result = kUTFConversionOK;
?? ?register UCS4* source = *sourceStart;
?? ?register UTF8* target = *targetStart;
?? ?while (source < sourceEnd) {
?? ??? ?register UCS4 ch;
?? ??? ?register unsigned short bytesToWrite = 0;
?? ??? ?register const UCS4 byteMask = 0xBF;
?? ??? ?register const UCS4 byteMark = 0x80;
?? ??? ?ch = *source++;
?? ??? ?if (ch >= kSurrogateHighStart && ch <= kSurrogateHighEnd
?? ??? ??? ??? ?&& source < sourceEnd) {
?? ??? ??? ?register UCS4 ch2 = *source;
?? ??? ??? ?if (ch2 >= kSurrogateLowStart && ch2 <= kSurrogateLowEnd) {
?? ??? ??? ??? ?ch = ((ch - kSurrogateHighStart) << halfShift)
?? ??? ??? ??? ??? ?+ (ch2 - kSurrogateLowStart) + halfBase;
?? ??? ??? ??? ?++source;
?? ??? ??? ?};
?? ??? ?};
?? ??? ?if (ch < 0x80) {?? ??? ??? ??? ?bytesToWrite = 1;
?? ??? ?} else if (ch < 0x800) {?? ??? ?bytesToWrite = 2;
?? ??? ?} else if (ch < 0x10000) {?? ??? ?bytesToWrite = 3;
?? ??? ?} else if (ch < 0x200000) {?? ??? ?bytesToWrite = 4;
?? ??? ?} else if (ch < 0x4000000) {?? ?bytesToWrite = 5;
?? ??? ?} else if (ch <= kMaximumUCS4){?? ?bytesToWrite = 6;
?? ??? ?} else {?? ??? ??? ??? ??? ??? ?bytesToWrite = 2;
?? ??? ??? ??? ??? ??? ??? ??? ??? ??? ?ch = kReplacementCharacter;
?? ??? ?}; /* I wish there were a smart way to avoid this conditional */
?? ??? ?
?? ??? ?target += bytesToWrite;
?? ??? ?if (target > targetEnd) {
?? ??? ??? ?target -= bytesToWrite; result = kUTFConversionTargetExhausted; break;
?? ??? ?};
?? ??? ?switch (bytesToWrite) {?? ?/* note: code falls through cases! */
?? ??? ??? ?case 6:?? ?*--target = (ch | byteMark) & byteMask; ch >>= 6;
?? ??? ??? ?case 5:?? ?*--target = (ch | byteMark) & byteMask; ch >>= 6;
?? ??? ??? ?case 4:?? ?*--target = (ch | byteMark) & byteMask; ch >>= 6;
?? ??? ??? ?case 3:?? ?*--target = (ch | byteMark) & byteMask; ch >>= 6;
?? ??? ??? ?case 2:?? ?*--target = (ch | byteMark) & byteMask; ch >>= 6;
?? ??? ??? ?case 1:?? ?*--target =? ch | firstByteMark[bytesToWrite];
?? ??? ?};
?? ??? ?target += bytesToWrite;
?? ?};
?? ?*sourceStart = source;
?? ?*targetStart = target;
?? ?return result;
};

/* ================================================================ */

ConversionResult?? ?ConvertUTF8toUCS4 (
?? ??? ?UTF8** sourceStart, const UTF8* sourceEnd,
?? ??? ?UCS4** targetStart, const UCS4* targetEnd)
{
?? ?ConversionResult result = kUTFConversionOK;
?? ?register UTF8* source = *sourceStart;
?? ?register UCS4* target = *targetStart;
?? ?while (source < sourceEnd) {
?? ??? ?register UCS4 ch = 0;
?? ??? ?register unsigned short extraBytesToWrite = bytesFromUTF8[*source];
?? ??? ?if (source + extraBytesToWrite > sourceEnd) {
?? ??? ??? ?result = kUTFConversionSourceExhausted; break;
?? ??? ?};
?? ??? ?switch(extraBytesToWrite) {?? ?/* note: code falls through cases! */
?? ??? ??? ?case 5:?? ?ch += *source++; ch <<= 6;
?? ??? ??? ?case 4:?? ?ch += *source++; ch <<= 6;
?? ??? ??? ?case 3:?? ?ch += *source++; ch <<= 6;
?? ??? ??? ?case 2:?? ?ch += *source++; ch <<= 6;
?? ??? ??? ?case 1:?? ?ch += *source++; ch <<= 6;
?? ??? ??? ?case 0:?? ?ch += *source++;
?? ??? ?};
?? ??? ?ch -= offsetsFromUTF8[extraBytesToWrite];

?? ??? ?if (target >= targetEnd) {
?? ??? ??? ?result = kUTFConversionTargetExhausted; break;
?? ??? ?};
?? ??? ?if (ch <= kMaximumUCS2) {
?? ??? ??? ?*target++ = ch;
?? ??? ?} else if (ch > kMaximumUCS4) {
?? ??? ??? ?*target++ = kReplacementCharacter;
?? ??? ?} else {
?? ??? ??? ?if (target + 1 >= targetEnd) {
?? ??? ??? ??? ?result = kUTFConversionTargetExhausted; break;
?? ??? ??? ?};
?? ??? ??? ?ch -= halfBase;
?? ??? ??? ?*target++ = (ch >> halfShift) + kSurrogateHighStart;
?? ??? ??? ?*target++ = (ch & halfMask) + kSurrogateLowStart;
?? ??? ?};
?? ?};
?? ?*sourceStart = source;
?? ?*targetStart = target;
?? ?return result;
};

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            国产日韩欧美在线| 国产精品日韩专区| 久久精品国产91精品亚洲| 老司机成人在线视频| 欧美一区二区性| 欧美精品久久久久久久免费观看| 性做久久久久久久久| 欧美区日韩区| 欧美大学生性色视频| 国产日韩欧美电影在线观看| 9l国产精品久久久久麻豆| 亚洲激情精品| 久久人人97超碰精品888| 久久av二区| 国产精品日韩欧美一区二区三区| 亚洲美女精品久久| 日韩视频在线免费观看| 欧美v亚洲v综合ⅴ国产v| 久久综合久久综合久久| 国产一区视频观看| 欧美一区综合| 久久亚洲欧美| 一色屋精品视频在线观看网站| 欧美一区二区三区在线观看| 久久国产精彩视频| 国产日韩一区在线| 久久成人精品| 久久中文字幕导航| 亚洲国产精品久久人人爱蜜臀 | 欧美亚洲视频| 欧美日韩系列| 亚洲天堂久久| 欧美在线视频全部完| 国产午夜精品一区二区三区视频 | 欧美日韩无遮挡| 亚洲三级性片| 亚洲精品久久久久久久久久久久 | 亚洲一二三区精品| 校园激情久久| 国内精品国产成人| 免费成人黄色片| 亚洲精品日韩在线观看| 亚洲欧美日韩另类精品一区二区三区 | 亚洲视频香蕉人妖| 欧美在线在线| 亚洲国产高清自拍| 欧美精品一区二区在线观看| 亚洲精品美女在线| 亚洲欧美三级伦理| 激情视频一区| 欧美猛交免费看| 亚洲一区二区三区中文字幕| 久久久久久夜| 日韩视频在线观看免费| 国产精品高潮呻吟久久av无限| 欧美一区二区视频在线观看2020| 欧美大片第1页| 亚洲一区久久久| 一区二区在线视频观看| 欧美激情视频一区二区三区免费| 亚洲视频在线视频| 欧美jizzhd精品欧美巨大免费| 亚洲视频免费观看| 国产原创一区二区| 欧美日韩一区综合| 久久久久久久久久码影片| 亚洲精品国产精品久久清纯直播| 久久se精品一区二区| 亚洲精品乱码久久久久久日本蜜臀 | 欧美黄色免费| 欧美在线播放高清精品| 日韩视频三区| 欧美好骚综合网| 欧美一区二区精美| 亚洲美女黄色片| 国产网站欧美日韩免费精品在线观看| 欧美激情女人20p| 久久久99久久精品女同性| 99re8这里有精品热视频免费 | 久久大综合网| 一本色道久久综合亚洲精品小说 | 欧美一区三区三区高中清蜜桃| 亚洲国产第一页| 国产亚洲一本大道中文在线| 欧美日韩国产在线| 鲁大师影院一区二区三区| 亚洲欧洲99久久| 一区二区三区高清视频在线观看| 欧美福利一区| 蜜桃av噜噜一区| 久久国产综合精品| 亚洲午夜精品久久久久久app| 亚洲区一区二区三区| 黄色亚洲大片免费在线观看| 国产欧美精品一区| 国产精品推荐精品| 国产精品草莓在线免费观看| 欧美日韩国产综合网| 欧美成人一区二区三区片免费| 久久久久久日产精品| 久久gogo国模啪啪人体图| 亚洲欧美成aⅴ人在线观看| 亚洲图片你懂的| 亚洲少妇中出一区| 一区二区三区日韩在线观看 | 欧美成人中文字幕在线| 久久中文在线| 欧美电影在线| 亚洲高清电影| 欧美成人精品1314www| 男人天堂欧美日韩| 欧美成人精品一区二区| 免费不卡亚洲欧美| 久久躁日日躁aaaaxxxx| 欧美a级在线| 亚洲韩日在线| 亚洲精品国产精品乱码不99按摩| 亚洲日本欧美日韩高观看| 亚洲精品极品| 一区二区三区四区在线| 亚洲午夜精品久久久久久浪潮| 日韩午夜av| 亚洲综合成人婷婷小说| 午夜精品久久久久久久久久久久久 | 久久黄色网页| 老牛嫩草一区二区三区日本 | 久久久久久久久岛国免费| 久久频这里精品99香蕉| 欧美大片网址| 国产精品九九| 国产毛片一区二区| 国产在线不卡| 亚洲高清毛片| 亚洲一区二区在线看| 午夜精品亚洲一区二区三区嫩草| 久久国内精品自在自线400部| 免费久久99精品国产| 亚洲激情亚洲| 午夜精品久久久久久久蜜桃app | 欧美一区二区在线看| 麻豆精品精华液| 国产精品成人一区二区艾草| 国内成+人亚洲+欧美+综合在线| 亚洲国产日韩在线| 亚洲色在线视频| 久久久久国产免费免费| 亚洲国产一区二区a毛片| 亚洲综合清纯丝袜自拍| 欧美超级免费视 在线| 国产精品国产自产拍高清av| 在线观看国产日韩| 亚洲综合视频在线| 欧美成年人网站| 亚洲精品国精品久久99热一 | 亚洲综合色在线| 蜜臀va亚洲va欧美va天堂 | 亚洲国产精品专区久久| 亚洲亚洲精品三区日韩精品在线视频 | 亚洲国产欧美日韩| 亚洲欧美国产视频| 欧美激情亚洲另类| 欧美在线观看视频| 欧美日韩一区二区视频在线| 影视先锋久久| 欧美一区二区三区视频在线 | 亚洲欧美电影在线观看| 欧美激情久久久| 韩国精品在线观看| 欧美一级在线视频| 一本色道**综合亚洲精品蜜桃冫 | 亚洲永久精品大片| 欧美激情视频网站| 亚洲电影毛片| 久久久亚洲影院你懂的| 亚洲影院一区| 欧美三级午夜理伦三级中视频| 亚洲国产另类久久精品| 久久网站免费| 香蕉乱码成人久久天堂爱免费| 欧美日韩一区二区免费在线观看| 亚洲大胆人体在线| 久久久亚洲人| 久久精品官网| 国内激情久久| 久久久xxx| 欧美一区二区三区免费视| 国产精品久久999| 亚洲视频你懂的| 宅男噜噜噜66国产日韩在线观看| 欧美大秀在线观看| 一区在线免费| 牛牛国产精品| 欧美伊人久久大香线蕉综合69| 国产精品中文字幕欧美| 羞羞色国产精品| 亚洲午夜羞羞片| 国产精品免费小视频| 午夜精品成人在线| 日韩一级在线观看| 国产精品久久福利|