3atv精品不卡视频,97人人超碰国产精品最新,中文字幕av一区二区三区人妻少妇,久久久精品波多野结衣,日韩一区二区三区精品

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

JDK Long源码

發布時間:2025/3/21 编程问答 13 豆豆
生活随笔 收集整理的這篇文章主要介紹了 JDK Long源码 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
// final修飾符 public final class Long extends Number implements Comparable<Long> {/*** A constant holding the minimum value a {@code long} can* have, -2<sup>63</sup>.*/ // 最小值-負值@Native public static final long MIN_VALUE = 0x8000000000000000L;/*** A constant holding the maximum value a {@code long} can* have, 2<sup>63</sup>-1.*/ // 最大值-有符號@Native public static final long MAX_VALUE = 0x7fffffffffffffffL;/*** The {@code Class} instance representing the primitive type* {@code long}.** @since JDK1.1*/@SuppressWarnings("unchecked") // class public static final Class<Long> TYPE = (Class<Long>) Class.getPrimitiveClass("long");/*** Returns a string representation of the first argument in the* radix specified by the second argument.** <p>If the radix is smaller than {@code Character.MIN_RADIX}* or larger than {@code Character.MAX_RADIX}, then the radix* {@code 10} is used instead.** <p>If the first argument is negative, the first element of the* result is the ASCII minus sign {@code '-'}* ({@code '\u005Cu002d'}). If the first argument is not* negative, no sign character appears in the result.** <p>The remaining characters of the result represent the magnitude* of the first argument. If the magnitude is zero, it is* represented by a single zero character {@code '0'}* ({@code '\u005Cu0030'}); otherwise, the first character of* the representation of the magnitude will not be the zero* character. The following ASCII characters are used as digits:** <blockquote>* {@code 0123456789abcdefghijklmnopqrstuvwxyz}* </blockquote>** These are {@code '\u005Cu0030'} through* {@code '\u005Cu0039'} and {@code '\u005Cu0061'} through* {@code '\u005Cu007a'}. If {@code radix} is* <var>N</var>, then the first <var>N</var> of these characters* are used as radix-<var>N</var> digits in the order shown. Thus,* the digits for hexadecimal (radix 16) are* {@code 0123456789abcdef}. If uppercase letters are* desired, the {@link java.lang.String#toUpperCase()} method may* be called on the result:** <blockquote>* {@code Long.toString(n, 16).toUpperCase()}* </blockquote>** @param i a {@code long} to be converted to a string.* @param radix the radix to use in the string representation.* @return a string representation of the argument in the specified radix.* @see java.lang.Character#MAX_RADIX* @see java.lang.Character#MIN_RADIX*/ // radix 基數public static String toString(long i, int radix) {if (radix < Character.MIN_RADIX || radix > Character.MAX_RADIX)radix = 10;if (radix == 10)return toString(i);char[] buf = new char[65];int charPos = 64;boolean negative = (i < 0);if (!negative) {i = -i;}while (i <= -radix) {buf[charPos--] = Integer.digits[(int)(-(i % radix))];i = i / radix;}buf[charPos] = Integer.digits[(int)(-i)];if (negative) {buf[--charPos] = '-';}return new String(buf, charPos, (65 - charPos));}/*** Returns a string representation of the first argument as an* unsigned integer value in the radix specified by the second* argument.** <p>If the radix is smaller than {@code Character.MIN_RADIX}* or larger than {@code Character.MAX_RADIX}, then the radix* {@code 10} is used instead.** <p>Note that since the first argument is treated as an unsigned* value, no leading sign character is printed.** <p>If the magnitude is zero, it is represented by a single zero* character {@code '0'} ({@code '\u005Cu0030'}); otherwise,* the first character of the representation of the magnitude will* not be the zero character.** <p>The behavior of radixes and the characters used as digits* are the same as {@link #toString(long, int) toString}.** @param i an integer to be converted to an unsigned string.* @param radix the radix to use in the string representation.* @return an unsigned string representation of the argument in the specified radix.* @see #toString(long, int)* @since 1.8*/public static String toUnsignedString(long i, int radix) {if (i >= 0)return toString(i, radix);else {switch (radix) {case 2:return toBinaryString(i);case 4:return toUnsignedString0(i, 2);case 8:return toOctalString(i);case 10:/** We can get the effect of an unsigned division by 10* on a long value by first shifting right, yielding a* positive value, and then dividing by 5. This* allows the last digit and preceding digits to be* isolated more quickly than by an initial conversion* to BigInteger.*/long quot = (i >>> 1) / 5;long rem = i - quot * 10;return toString(quot) + rem;case 16:return toHexString(i);case 32:return toUnsignedString0(i, 5);default:return toUnsignedBigInteger(i).toString(radix);}}}/*** Return a BigInteger equal to the unsigned value of the* argument.*/private static BigInteger toUnsignedBigInteger(long i) {if (i >= 0L)return BigInteger.valueOf(i);else {int upper = (int) (i >>> 32);int lower = (int) i;// return (upper << 32) + lowerreturn (BigInteger.valueOf(Integer.toUnsignedLong(upper))).shiftLeft(32).add(BigInteger.valueOf(Integer.toUnsignedLong(lower)));}}/*** Returns a string representation of the {@code long}* argument as an unsigned integer in base&nbsp;16.** <p>The unsigned {@code long} value is the argument plus* 2<sup>64</sup> if the argument is negative; otherwise, it is* equal to the argument. This value is converted to a string of* ASCII digits in hexadecimal (base&nbsp;16) with no extra* leading {@code 0}s.** <p>The value of the argument can be recovered from the returned* string {@code s} by calling {@link* Long#parseUnsignedLong(String, int) Long.parseUnsignedLong(s,* 16)}.** <p>If the unsigned magnitude is zero, it is represented by a* single zero character {@code '0'} ({@code '\u005Cu0030'});* otherwise, the first character of the representation of the* unsigned magnitude will not be the zero character. The* following characters are used as hexadecimal digits:** <blockquote>* {@code 0123456789abcdef}* </blockquote>** These are the characters {@code '\u005Cu0030'} through* {@code '\u005Cu0039'} and {@code '\u005Cu0061'} through* {@code '\u005Cu0066'}. If uppercase letters are desired,* the {@link java.lang.String#toUpperCase()} method may be called* on the result:** <blockquote>* {@code Long.toHexString(n).toUpperCase()}* </blockquote>** @param i a {@code long} to be converted to a string.* @return the string representation of the unsigned {@code long}* value represented by the argument in hexadecimal* (base&nbsp;16).* @see #parseUnsignedLong(String, int)* @see #toUnsignedString(long, int)* @since JDK 1.0.2*/public static String toHexString(long i) {return toUnsignedString0(i, 4);}/*** Returns a string representation of the {@code long}* argument as an unsigned integer in base&nbsp;8.** <p>The unsigned {@code long} value is the argument plus* 2<sup>64</sup> if the argument is negative; otherwise, it is* equal to the argument. This value is converted to a string of* ASCII digits in octal (base&nbsp;8) with no extra leading* {@code 0}s.** <p>The value of the argument can be recovered from the returned* string {@code s} by calling {@link* Long#parseUnsignedLong(String, int) Long.parseUnsignedLong(s,* 8)}.** <p>If the unsigned magnitude is zero, it is represented by a* single zero character {@code '0'} ({@code '\u005Cu0030'});* otherwise, the first character of the representation of the* unsigned magnitude will not be the zero character. The* following characters are used as octal digits:** <blockquote>* {@code 01234567}* </blockquote>** These are the characters {@code '\u005Cu0030'} through* {@code '\u005Cu0037'}.** @param i a {@code long} to be converted to a string.* @return the string representation of the unsigned {@code long}* value represented by the argument in octal (base&nbsp;8).* @see #parseUnsignedLong(String, int)* @see #toUnsignedString(long, int)* @since JDK 1.0.2*/public static String toOctalString(long i) {return toUnsignedString0(i, 3);}/*** Returns a string representation of the {@code long}* argument as an unsigned integer in base&nbsp;2.** <p>The unsigned {@code long} value is the argument plus* 2<sup>64</sup> if the argument is negative; otherwise, it is* equal to the argument. This value is converted to a string of* ASCII digits in binary (base&nbsp;2) with no extra leading* {@code 0}s.** <p>The value of the argument can be recovered from the returned* string {@code s} by calling {@link* Long#parseUnsignedLong(String, int) Long.parseUnsignedLong(s,* 2)}.** <p>If the unsigned magnitude is zero, it is represented by a* single zero character {@code '0'} ({@code '\u005Cu0030'});* otherwise, the first character of the representation of the* unsigned magnitude will not be the zero character. The* characters {@code '0'} ({@code '\u005Cu0030'}) and {@code* '1'} ({@code '\u005Cu0031'}) are used as binary digits.** @param i a {@code long} to be converted to a string.* @return the string representation of the unsigned {@code long}* value represented by the argument in binary (base&nbsp;2).* @see #parseUnsignedLong(String, int)* @see #toUnsignedString(long, int)* @since JDK 1.0.2*/public static String toBinaryString(long i) {return toUnsignedString0(i, 1);}/*** Format a long (treated as unsigned) into a String.* @param val the value to format* @param shift the log2 of the base to format in (4 for hex, 3 for octal, 1 for binary)*/static String toUnsignedString0(long val, int shift) {// assert shift > 0 && shift <=5 : "Illegal shift value";int mag = Long.SIZE - Long.numberOfLeadingZeros(val);int chars = Math.max(((mag + (shift - 1)) / shift), 1);char[] buf = new char[chars];formatUnsignedLong(val, shift, buf, 0, chars);return new String(buf, true);}/*** Format a long (treated as unsigned) into a character buffer.* @param val the unsigned long to format* @param shift the log2 of the base to format in (4 for hex, 3 for octal, 1 for binary)* @param buf the character buffer to write to* @param offset the offset in the destination buffer to start at* @param len the number of characters to write* @return the lowest character location used*/static int formatUnsignedLong(long val, int shift, char[] buf, int offset, int len) {int charPos = len;int radix = 1 << shift;int mask = radix - 1;do {buf[offset + --charPos] = Integer.digits[((int) val) & mask];val >>>= shift;} while (val != 0 && charPos > 0);return charPos;}/*** Returns a {@code String} object representing the specified* {@code long}. The argument is converted to signed decimal* representation and returned as a string, exactly as if the* argument and the radix 10 were given as arguments to the {@link* #toString(long, int)} method.** @param i a {@code long} to be converted.* @return a string representation of the argument in base&nbsp;10.*/public static String toString(long i) {if (i == Long.MIN_VALUE)return "-9223372036854775808";int size = (i < 0) ? stringSize(-i) + 1 : stringSize(i);char[] buf = new char[size];getChars(i, size, buf);return new String(buf, true);}/*** Returns a string representation of the argument as an unsigned* decimal value.** The argument is converted to unsigned decimal representation* and returned as a string exactly as if the argument and radix* 10 were given as arguments to the {@link #toUnsignedString(long,* int)} method.** @param i an integer to be converted to an unsigned string.* @return an unsigned string representation of the argument.* @see #toUnsignedString(long, int)* @since 1.8*/public static String toUnsignedString(long i) {return toUnsignedString(i, 10);}/*** Places characters representing the integer i into the* character array buf. The characters are placed into* the buffer backwards starting with the least significant* digit at the specified index (exclusive), and working* backwards from there.** Will fail if i == Long.MIN_VALUE*/static void getChars(long i, int index, char[] buf) {long q;int r;int charPos = index;char sign = 0;if (i < 0) {sign = '-';i = -i;}// Get 2 digits/iteration using longs until quotient fits into an intwhile (i > Integer.MAX_VALUE) {q = i / 100;// really: r = i - (q * 100);r = (int)(i - ((q << 6) + (q << 5) + (q << 2)));i = q;buf[--charPos] = Integer.DigitOnes[r];buf[--charPos] = Integer.DigitTens[r];}// Get 2 digits/iteration using intsint q2;int i2 = (int)i;while (i2 >= 65536) {q2 = i2 / 100;// really: r = i2 - (q * 100);r = i2 - ((q2 << 6) + (q2 << 5) + (q2 << 2));i2 = q2;buf[--charPos] = Integer.DigitOnes[r];buf[--charPos] = Integer.DigitTens[r];}// Fall thru to fast mode for smaller numbers// assert(i2 <= 65536, i2);for (;;) {q2 = (i2 * 52429) >>> (16+3);r = i2 - ((q2 << 3) + (q2 << 1)); // r = i2-(q2*10) ...buf[--charPos] = Integer.digits[r];i2 = q2;if (i2 == 0) break;}if (sign != 0) {buf[--charPos] = sign;}}// Requires positive xstatic int stringSize(long x) {long p = 10;for (int i=1; i<19; i++) {if (x < p)return i;p = 10*p;}return 19;}/*** Parses the string argument as a signed {@code long} in the* radix specified by the second argument. The characters in the* string must all be digits of the specified radix (as determined* by whether {@link java.lang.Character#digit(char, int)} returns* a nonnegative value), except that the first character may be an* ASCII minus sign {@code '-'} ({@code '\u005Cu002D'}) to* indicate a negative value or an ASCII plus sign {@code '+'}* ({@code '\u005Cu002B'}) to indicate a positive value. The* resulting {@code long} value is returned.** <p>Note that neither the character {@code L}* ({@code '\u005Cu004C'}) nor {@code l}* ({@code '\u005Cu006C'}) is permitted to appear at the end* of the string as a type indicator, as would be permitted in* Java programming language source code - except that either* {@code L} or {@code l} may appear as a digit for a* radix greater than or equal to 22.** <p>An exception of type {@code NumberFormatException} is* thrown if any of the following situations occurs:* <ul>** <li>The first argument is {@code null} or is a string of* length zero.** <li>The {@code radix} is either smaller than {@link* java.lang.Character#MIN_RADIX} or larger than {@link* java.lang.Character#MAX_RADIX}.** <li>Any character of the string is not a digit of the specified* radix, except that the first character may be a minus sign* {@code '-'} ({@code '\u005Cu002d'}) or plus sign {@code* '+'} ({@code '\u005Cu002B'}) provided that the string is* longer than length 1.** <li>The value represented by the string is not a value of type* {@code long}.* </ul>** <p>Examples:* <blockquote><pre>* parseLong("0", 10) returns 0L* parseLong("473", 10) returns 473L* parseLong("+42", 10) returns 42L* parseLong("-0", 10) returns 0L* parseLong("-FF", 16) returns -255L* parseLong("1100110", 2) returns 102L* parseLong("99", 8) throws a NumberFormatException* parseLong("Hazelnut", 10) throws a NumberFormatException* parseLong("Hazelnut", 36) returns 1356099454469L* </pre></blockquote>** @param s the {@code String} containing the* {@code long} representation to be parsed.* @param radix the radix to be used while parsing {@code s}.* @return the {@code long} represented by the string argument in* the specified radix.* @throws NumberFormatException if the string does not contain a* parsable {@code long}.*/public static long parseLong(String s, int radix)throws NumberFormatException{if (s == null) {throw new NumberFormatException("null");}if (radix < Character.MIN_RADIX) {throw new NumberFormatException("radix " + radix +" less than Character.MIN_RADIX");}if (radix > Character.MAX_RADIX) {throw new NumberFormatException("radix " + radix +" greater than Character.MAX_RADIX");}long result = 0;boolean negative = false;int i = 0, len = s.length();long limit = -Long.MAX_VALUE;long multmin;int digit;if (len > 0) {char firstChar = s.charAt(0);if (firstChar < '0') { // Possible leading "+" or "-"if (firstChar == '-') {negative = true;limit = Long.MIN_VALUE;} else if (firstChar != '+')throw NumberFormatException.forInputString(s);if (len == 1) // Cannot have lone "+" or "-"throw NumberFormatException.forInputString(s);i++;}multmin = limit / radix;while (i < len) {// Accumulating negatively avoids surprises near MAX_VALUEdigit = Character.digit(s.charAt(i++),radix);if (digit < 0) {throw NumberFormatException.forInputString(s);}if (result < multmin) {throw NumberFormatException.forInputString(s);}result *= radix;if (result < limit + digit) {throw NumberFormatException.forInputString(s);}result -= digit;}} else {throw NumberFormatException.forInputString(s);}return negative ? result : -result;}/*** Parses the string argument as a signed decimal {@code long}.* The characters in the string must all be decimal digits, except* that the first character may be an ASCII minus sign {@code '-'}* ({@code \u005Cu002D'}) to indicate a negative value or an* ASCII plus sign {@code '+'} ({@code '\u005Cu002B'}) to* indicate a positive value. The resulting {@code long} value is* returned, exactly as if the argument and the radix {@code 10}* were given as arguments to the {@link* #parseLong(java.lang.String, int)} method.** <p>Note that neither the character {@code L}* ({@code '\u005Cu004C'}) nor {@code l}* ({@code '\u005Cu006C'}) is permitted to appear at the end* of the string as a type indicator, as would be permitted in* Java programming language source code.** @param s a {@code String} containing the {@code long}* representation to be parsed* @return the {@code long} represented by the argument in* decimal.* @throws NumberFormatException if the string does not contain a* parsable {@code long}.*/public static long parseLong(String s) throws NumberFormatException {return parseLong(s, 10);}/*** Parses the string argument as an unsigned {@code long} in the* radix specified by the second argument. An unsigned integer* maps the values usually associated with negative numbers to* positive numbers larger than {@code MAX_VALUE}.** The characters in the string must all be digits of the* specified radix (as determined by whether {@link* java.lang.Character#digit(char, int)} returns a nonnegative* value), except that the first character may be an ASCII plus* sign {@code '+'} ({@code '\u005Cu002B'}). The resulting* integer value is returned.** <p>An exception of type {@code NumberFormatException} is* thrown if any of the following situations occurs:* <ul>* <li>The first argument is {@code null} or is a string of* length zero.** <li>The radix is either smaller than* {@link java.lang.Character#MIN_RADIX} or* larger than {@link java.lang.Character#MAX_RADIX}.** <li>Any character of the string is not a digit of the specified* radix, except that the first character may be a plus sign* {@code '+'} ({@code '\u005Cu002B'}) provided that the* string is longer than length 1.** <li>The value represented by the string is larger than the* largest unsigned {@code long}, 2<sup>64</sup>-1.** </ul>*** @param s the {@code String} containing the unsigned integer* representation to be parsed* @param radix the radix to be used while parsing {@code s}.* @return the unsigned {@code long} represented by the string* argument in the specified radix.* @throws NumberFormatException if the {@code String}* does not contain a parsable {@code long}.* @since 1.8*/public static long parseUnsignedLong(String s, int radix)throws NumberFormatException {if (s == null) {throw new NumberFormatException("null");}int len = s.length();if (len > 0) {char firstChar = s.charAt(0);if (firstChar == '-') {throw newNumberFormatException(String.format("Illegal leading minus sign " +"on unsigned string %s.", s));} else {if (len <= 12 || // Long.MAX_VALUE in Character.MAX_RADIX is 13 digits(radix == 10 && len <= 18) ) { // Long.MAX_VALUE in base 10 is 19 digitsreturn parseLong(s, radix);}// No need for range checks on len due to testing above.long first = parseLong(s.substring(0, len - 1), radix);int second = Character.digit(s.charAt(len - 1), radix);if (second < 0) {throw new NumberFormatException("Bad digit at end of " + s);}long result = first * radix + second;if (compareUnsigned(result, first) < 0) {/** The maximum unsigned value, (2^64)-1, takes at* most one more digit to represent than the* maximum signed value, (2^63)-1. Therefore,* parsing (len - 1) digits will be appropriately* in-range of the signed parsing. In other* words, if parsing (len -1) digits overflows* signed parsing, parsing len digits will* certainly overflow unsigned parsing.** The compareUnsigned check above catches* situations where an unsigned overflow occurs* incorporating the contribution of the final* digit.*/throw new NumberFormatException(String.format("String value %s exceeds " +"range of unsigned long.", s));}return result;}} else {throw NumberFormatException.forInputString(s);}}/*** Parses the string argument as an unsigned decimal {@code long}. The* characters in the string must all be decimal digits, except* that the first character may be an an ASCII plus sign {@code* '+'} ({@code '\u005Cu002B'}). The resulting integer value* is returned, exactly as if the argument and the radix 10 were* given as arguments to the {@link* #parseUnsignedLong(java.lang.String, int)} method.** @param s a {@code String} containing the unsigned {@code long}* representation to be parsed* @return the unsigned {@code long} value represented by the decimal string argument* @throws NumberFormatException if the string does not contain a* parsable unsigned integer.* @since 1.8*/public static long parseUnsignedLong(String s) throws NumberFormatException {return parseUnsignedLong(s, 10);}/*** Returns a {@code Long} object holding the value* extracted from the specified {@code String} when parsed* with the radix given by the second argument. The first* argument is interpreted as representing a signed* {@code long} in the radix specified by the second* argument, exactly as if the arguments were given to the {@link* #parseLong(java.lang.String, int)} method. The result is a* {@code Long} object that represents the {@code long}* value specified by the string.** <p>In other words, this method returns a {@code Long} object equal* to the value of:** <blockquote>* {@code new Long(Long.parseLong(s, radix))}* </blockquote>** @param s the string to be parsed* @param radix the radix to be used in interpreting {@code s}* @return a {@code Long} object holding the value* represented by the string argument in the specified* radix.* @throws NumberFormatException If the {@code String} does not* contain a parsable {@code long}.*/public static Long valueOf(String s, int radix) throws NumberFormatException {return Long.valueOf(parseLong(s, radix));}/*** Returns a {@code Long} object holding the value* of the specified {@code String}. The argument is* interpreted as representing a signed decimal {@code long},* exactly as if the argument were given to the {@link* #parseLong(java.lang.String)} method. The result is a* {@code Long} object that represents the integer value* specified by the string.** <p>In other words, this method returns a {@code Long} object* equal to the value of:** <blockquote>* {@code new Long(Long.parseLong(s))}* </blockquote>** @param s the string to be parsed.* @return a {@code Long} object holding the value* represented by the string argument.* @throws NumberFormatException If the string cannot be parsed* as a {@code long}.*/public static Long valueOf(String s) throws NumberFormatException{return Long.valueOf(parseLong(s, 10));}private static class LongCache {private LongCache(){}static final Long cache[] = new Long[-(-128) + 127 + 1];static {for(int i = 0; i < cache.length; i++)cache[i] = new Long(i - 128);}}/*** Returns a {@code Long} instance representing the specified* {@code long} value.* If a new {@code Long} instance is not required, this method* should generally be used in preference to the constructor* {@link #Long(long)}, as this method is likely to yield* significantly better space and time performance by caching* frequently requested values.** Note that unlike the {@linkplain Integer#valueOf(int)* corresponding method} in the {@code Integer} class, this method* is <em>not</em> required to cache values within a particular* range.** @param l a long value.* @return a {@code Long} instance representing {@code l}.* @since 1.5*/public static Long valueOf(long l) {final int offset = 128;if (l >= -128 && l <= 127) { // will cachereturn LongCache.cache[(int)l + offset];}return new Long(l);}/*** Decodes a {@code String} into a {@code Long}.* Accepts decimal, hexadecimal, and octal numbers given by the* following grammar:** <blockquote>* <dl>* <dt><i>DecodableString:</i>* <dd><i>Sign<sub>opt</sub> DecimalNumeral</i>* <dd><i>Sign<sub>opt</sub></i> {@code 0x} <i>HexDigits</i>* <dd><i>Sign<sub>opt</sub></i> {@code 0X} <i>HexDigits</i>* <dd><i>Sign<sub>opt</sub></i> {@code #} <i>HexDigits</i>* <dd><i>Sign<sub>opt</sub></i> {@code 0} <i>OctalDigits</i>** <dt><i>Sign:</i>* <dd>{@code -}* <dd>{@code +}* </dl>* </blockquote>** <i>DecimalNumeral</i>, <i>HexDigits</i>, and <i>OctalDigits</i>* are as defined in section 3.10.1 of* <cite>The Java&trade; Language Specification</cite>,* except that underscores are not accepted between digits.** <p>The sequence of characters following an optional* sign and/or radix specifier ("{@code 0x}", "{@code 0X}",* "{@code #}", or leading zero) is parsed as by the {@code* Long.parseLong} method with the indicated radix (10, 16, or 8).* This sequence of characters must represent a positive value or* a {@link NumberFormatException} will be thrown. The result is* negated if first character of the specified {@code String} is* the minus sign. No whitespace characters are permitted in the* {@code String}.** @param nm the {@code String} to decode.* @return a {@code Long} object holding the {@code long}* value represented by {@code nm}* @throws NumberFormatException if the {@code String} does not* contain a parsable {@code long}.* @see java.lang.Long#parseLong(String, int)* @since 1.2*/public static Long decode(String nm) throws NumberFormatException {int radix = 10;int index = 0;boolean negative = false;Long result;if (nm.length() == 0)throw new NumberFormatException("Zero length string");char firstChar = nm.charAt(0);// Handle sign, if presentif (firstChar == '-') {negative = true;index++;} else if (firstChar == '+')index++;// Handle radix specifier, if presentif (nm.startsWith("0x", index) || nm.startsWith("0X", index)) {index += 2;radix = 16;}else if (nm.startsWith("#", index)) {index ++;radix = 16;}else if (nm.startsWith("0", index) && nm.length() > 1 + index) {index ++;radix = 8;}if (nm.startsWith("-", index) || nm.startsWith("+", index))throw new NumberFormatException("Sign character in wrong position");try {result = Long.valueOf(nm.substring(index), radix);result = negative ? Long.valueOf(-result.longValue()) : result;} catch (NumberFormatException e) {// If number is Long.MIN_VALUE, we'll end up here. The next line// handles this case, and causes any genuine format error to be// rethrown.String constant = negative ? ("-" + nm.substring(index)): nm.substring(index);result = Long.valueOf(constant, radix);}return result;}/*** The value of the {@code Long}.** @serial*/private final long value;/*** Constructs a newly allocated {@code Long} object that* represents the specified {@code long} argument.** @param value the value to be represented by the* {@code Long} object.*/public Long(long value) {this.value = value;}/*** Constructs a newly allocated {@code Long} object that* represents the {@code long} value indicated by the* {@code String} parameter. The string is converted to a* {@code long} value in exactly the manner used by the* {@code parseLong} method for radix 10.** @param s the {@code String} to be converted to a* {@code Long}.* @throws NumberFormatException if the {@code String} does not* contain a parsable {@code long}.* @see java.lang.Long#parseLong(java.lang.String, int)*/public Long(String s) throws NumberFormatException {this.value = parseLong(s, 10);}/*** Returns the value of this {@code Long} as a {@code byte} after* a narrowing primitive conversion.* @jls 5.1.3 Narrowing Primitive Conversions*/public byte byteValue() {return (byte)value;}/*** Returns the value of this {@code Long} as a {@code short} after* a narrowing primitive conversion.* @jls 5.1.3 Narrowing Primitive Conversions*/public short shortValue() {return (short)value;}/*** Returns the value of this {@code Long} as an {@code int} after* a narrowing primitive conversion.* @jls 5.1.3 Narrowing Primitive Conversions*/public int intValue() {return (int)value;}/*** Returns the value of this {@code Long} as a* {@code long} value.*/public long longValue() {return value;}/*** Returns the value of this {@code Long} as a {@code float} after* a widening primitive conversion.* @jls 5.1.2 Widening Primitive Conversions*/public float floatValue() {return (float)value;}/*** Returns the value of this {@code Long} as a {@code double}* after a widening primitive conversion.* @jls 5.1.2 Widening Primitive Conversions*/public double doubleValue() {return (double)value;}/*** Returns a {@code String} object representing this* {@code Long}'s value. The value is converted to signed* decimal representation and returned as a string, exactly as if* the {@code long} value were given as an argument to the* {@link java.lang.Long#toString(long)} method.** @return a string representation of the value of this object in* base&nbsp;10.*/public String toString() {return toString(value);}/*** Returns a hash code for this {@code Long}. The result is* the exclusive OR of the two halves of the primitive* {@code long} value held by this {@code Long}* object. That is, the hashcode is the value of the expression:** <blockquote>* {@code (int)(this.longValue()^(this.longValue()>>>32))}* </blockquote>** @return a hash code value for this object.*/@Overridepublic int hashCode() {return Long.hashCode(value);}/*** Returns a hash code for a {@code long} value; compatible with* {@code Long.hashCode()}.** @param value the value to hash* @return a hash code value for a {@code long} value.* @since 1.8*/public static int hashCode(long value) {return (int)(value ^ (value >>> 32));}/*** Compares this object to the specified object. The result is* {@code true} if and only if the argument is not* {@code null} and is a {@code Long} object that* contains the same {@code long} value as this object.** @param obj the object to compare with.* @return {@code true} if the objects are the same;* {@code false} otherwise.*/public boolean equals(Object obj) {if (obj instanceof Long) {return value == ((Long)obj).longValue();}return false;}/*** Determines the {@code long} value of the system property* with the specified name.** <p>The first argument is treated as the name of a system* property. System properties are accessible through the {@link* java.lang.System#getProperty(java.lang.String)} method. The* string value of this property is then interpreted as a {@code* long} value using the grammar supported by {@link Long#decode decode}* and a {@code Long} object representing this value is returned.** <p>If there is no property with the specified name, if the* specified name is empty or {@code null}, or if the property* does not have the correct numeric format, then {@code null} is* returned.** <p>In other words, this method returns a {@code Long} object* equal to the value of:** <blockquote>* {@code getLong(nm, null)}* </blockquote>** @param nm property name.* @return the {@code Long} value of the property.* @throws SecurityException for the same reasons as* {@link System#getProperty(String) System.getProperty}* @see java.lang.System#getProperty(java.lang.String)* @see java.lang.System#getProperty(java.lang.String, java.lang.String)*/public static Long getLong(String nm) {return getLong(nm, null);}/*** Determines the {@code long} value of the system property* with the specified name.** <p>The first argument is treated as the name of a system* property. System properties are accessible through the {@link* java.lang.System#getProperty(java.lang.String)} method. The* string value of this property is then interpreted as a {@code* long} value using the grammar supported by {@link Long#decode decode}* and a {@code Long} object representing this value is returned.** <p>The second argument is the default value. A {@code Long} object* that represents the value of the second argument is returned if there* is no property of the specified name, if the property does not have* the correct numeric format, or if the specified name is empty or null.** <p>In other words, this method returns a {@code Long} object equal* to the value of:** <blockquote>* {@code getLong(nm, new Long(val))}* </blockquote>** but in practice it may be implemented in a manner such as:** <blockquote><pre>* Long result = getLong(nm, null);* return (result == null) ? new Long(val) : result;* </pre></blockquote>** to avoid the unnecessary allocation of a {@code Long} object when* the default value is not needed.** @param nm property name.* @param val default value.* @return the {@code Long} value of the property.* @throws SecurityException for the same reasons as* {@link System#getProperty(String) System.getProperty}* @see java.lang.System#getProperty(java.lang.String)* @see java.lang.System#getProperty(java.lang.String, java.lang.String)*/public static Long getLong(String nm, long val) {Long result = Long.getLong(nm, null);return (result == null) ? Long.valueOf(val) : result;}/*** Returns the {@code long} value of the system property with* the specified name. The first argument is treated as the name* of a system property. System properties are accessible through* the {@link java.lang.System#getProperty(java.lang.String)}* method. The string value of this property is then interpreted* as a {@code long} value, as per the* {@link Long#decode decode} method, and a {@code Long} object* representing this value is returned; in summary:** <ul>* <li>If the property value begins with the two ASCII characters* {@code 0x} or the ASCII character {@code #}, not followed by* a minus sign, then the rest of it is parsed as a hexadecimal integer* exactly as for the method {@link #valueOf(java.lang.String, int)}* with radix 16.* <li>If the property value begins with the ASCII character* {@code 0} followed by another character, it is parsed as* an octal integer exactly as by the method {@link* #valueOf(java.lang.String, int)} with radix 8.* <li>Otherwise the property value is parsed as a decimal* integer exactly as by the method* {@link #valueOf(java.lang.String, int)} with radix 10.* </ul>** <p>Note that, in every case, neither {@code L}* ({@code '\u005Cu004C'}) nor {@code l}* ({@code '\u005Cu006C'}) is permitted to appear at the end* of the property value as a type indicator, as would be* permitted in Java programming language source code.** <p>The second argument is the default value. The default value is* returned if there is no property of the specified name, if the* property does not have the correct numeric format, or if the* specified name is empty or {@code null}.** @param nm property name.* @param val default value.* @return the {@code Long} value of the property.* @throws SecurityException for the same reasons as* {@link System#getProperty(String) System.getProperty}* @see System#getProperty(java.lang.String)* @see System#getProperty(java.lang.String, java.lang.String)*/public static Long getLong(String nm, Long val) {String v = null;try {v = System.getProperty(nm);} catch (IllegalArgumentException | NullPointerException e) {}if (v != null) {try {return Long.decode(v);} catch (NumberFormatException e) {}}return val;}/*** Compares two {@code Long} objects numerically.** @param anotherLong the {@code Long} to be compared.* @return the value {@code 0} if this {@code Long} is* equal to the argument {@code Long}; a value less than* {@code 0} if this {@code Long} is numerically less* than the argument {@code Long}; and a value greater* than {@code 0} if this {@code Long} is numerically* greater than the argument {@code Long} (signed* comparison).* @since 1.2*/public int compareTo(Long anotherLong) {return compare(this.value, anotherLong.value);}/*** Compares two {@code long} values numerically.* The value returned is identical to what would be returned by:* <pre>* Long.valueOf(x).compareTo(Long.valueOf(y))* </pre>** @param x the first {@code long} to compare* @param y the second {@code long} to compare* @return the value {@code 0} if {@code x == y};* a value less than {@code 0} if {@code x < y}; and* a value greater than {@code 0} if {@code x > y}* @since 1.7*/public static int compare(long x, long y) {return (x < y) ? -1 : ((x == y) ? 0 : 1);}/*** Compares two {@code long} values numerically treating the values* as unsigned.** @param x the first {@code long} to compare* @param y the second {@code long} to compare* @return the value {@code 0} if {@code x == y}; a value less* than {@code 0} if {@code x < y} as unsigned values; and* a value greater than {@code 0} if {@code x > y} as* unsigned values* @since 1.8*/public static int compareUnsigned(long x, long y) {return compare(x + MIN_VALUE, y + MIN_VALUE);}/*** Returns the unsigned quotient of dividing the first argument by* the second where each argument and the result is interpreted as* an unsigned value.** <p>Note that in two's complement arithmetic, the three other* basic arithmetic operations of add, subtract, and multiply are* bit-wise identical if the two operands are regarded as both* being signed or both being unsigned. Therefore separate {@code* addUnsigned}, etc. methods are not provided.** @param dividend the value to be divided* @param divisor the value doing the dividing* @return the unsigned quotient of the first argument divided by* the second argument* @see #remainderUnsigned* @since 1.8*/public static long divideUnsigned(long dividend, long divisor) {if (divisor < 0L) { // signed comparison// Answer must be 0 or 1 depending on relative magnitude// of dividend and divisor.return (compareUnsigned(dividend, divisor)) < 0 ? 0L :1L;}if (dividend > 0) // Both inputs non-negativereturn dividend/divisor;else {/** For simple code, leveraging BigInteger. Longer and faster* code written directly in terms of operations on longs is* possible; see "Hacker's Delight" for divide and remainder* algorithms.*/return toUnsignedBigInteger(dividend).divide(toUnsignedBigInteger(divisor)).longValue();}}/*** Returns the unsigned remainder from dividing the first argument* by the second where each argument and the result is interpreted* as an unsigned value.** @param dividend the value to be divided* @param divisor the value doing the dividing* @return the unsigned remainder of the first argument divided by* the second argument* @see #divideUnsigned* @since 1.8*/public static long remainderUnsigned(long dividend, long divisor) {if (dividend > 0 && divisor > 0) { // signed comparisonsreturn dividend % divisor;} else {if (compareUnsigned(dividend, divisor) < 0) // Avoid explicit check for 0 divisorreturn dividend;elsereturn toUnsignedBigInteger(dividend).remainder(toUnsignedBigInteger(divisor)).longValue();}}// Bit Twiddling/*** The number of bits used to represent a {@code long} value in two's* complement binary form.** @since 1.5*/@Native public static final int SIZE = 64;/*** The number of bytes used to represent a {@code long} value in two's* complement binary form.** @since 1.8*/public static final int BYTES = SIZE / Byte.SIZE;/*** Returns a {@code long} value with at most a single one-bit, in the* position of the highest-order ("leftmost") one-bit in the specified* {@code long} value. Returns zero if the specified value has no* one-bits in its two's complement binary representation, that is, if it* is equal to zero.** @param i the value whose highest one bit is to be computed* @return a {@code long} value with a single one-bit, in the position* of the highest-order one-bit in the specified value, or zero if* the specified value is itself equal to zero.* @since 1.5*/public static long highestOneBit(long i) {// HD, Figure 3-1i |= (i >> 1);i |= (i >> 2);i |= (i >> 4);i |= (i >> 8);i |= (i >> 16);i |= (i >> 32);return i - (i >>> 1);}/*** Returns a {@code long} value with at most a single one-bit, in the* position of the lowest-order ("rightmost") one-bit in the specified* {@code long} value. Returns zero if the specified value has no* one-bits in its two's complement binary representation, that is, if it* is equal to zero.** @param i the value whose lowest one bit is to be computed* @return a {@code long} value with a single one-bit, in the position* of the lowest-order one-bit in the specified value, or zero if* the specified value is itself equal to zero.* @since 1.5*/public static long lowestOneBit(long i) {// HD, Section 2-1return i & -i;}/*** Returns the number of zero bits preceding the highest-order* ("leftmost") one-bit in the two's complement binary representation* of the specified {@code long} value. Returns 64 if the* specified value has no one-bits in its two's complement representation,* in other words if it is equal to zero.** <p>Note that this method is closely related to the logarithm base 2.* For all positive {@code long} values x:* <ul>* <li>floor(log<sub>2</sub>(x)) = {@code 63 - numberOfLeadingZeros(x)}* <li>ceil(log<sub>2</sub>(x)) = {@code 64 - numberOfLeadingZeros(x - 1)}* </ul>** @param i the value whose number of leading zeros is to be computed* @return the number of zero bits preceding the highest-order* ("leftmost") one-bit in the two's complement binary representation* of the specified {@code long} value, or 64 if the value* is equal to zero.* @since 1.5*/public static int numberOfLeadingZeros(long i) {// HD, Figure 5-6if (i == 0)return 64;int n = 1;int x = (int)(i >>> 32);if (x == 0) { n += 32; x = (int)i; }if (x >>> 16 == 0) { n += 16; x <<= 16; }if (x >>> 24 == 0) { n += 8; x <<= 8; }if (x >>> 28 == 0) { n += 4; x <<= 4; }if (x >>> 30 == 0) { n += 2; x <<= 2; }n -= x >>> 31;return n;}/*** Returns the number of zero bits following the lowest-order ("rightmost")* one-bit in the two's complement binary representation of the specified* {@code long} value. Returns 64 if the specified value has no* one-bits in its two's complement representation, in other words if it is* equal to zero.** @param i the value whose number of trailing zeros is to be computed* @return the number of zero bits following the lowest-order ("rightmost")* one-bit in the two's complement binary representation of the* specified {@code long} value, or 64 if the value is equal* to zero.* @since 1.5*/public static int numberOfTrailingZeros(long i) {// HD, Figure 5-14int x, y;if (i == 0) return 64;int n = 63;y = (int)i; if (y != 0) { n = n -32; x = y; } else x = (int)(i>>>32);y = x <<16; if (y != 0) { n = n -16; x = y; }y = x << 8; if (y != 0) { n = n - 8; x = y; }y = x << 4; if (y != 0) { n = n - 4; x = y; }y = x << 2; if (y != 0) { n = n - 2; x = y; }return n - ((x << 1) >>> 31);}/*** Returns the number of one-bits in the two's complement binary* representation of the specified {@code long} value. This function is* sometimes referred to as the <i>population count</i>.** @param i the value whose bits are to be counted* @return the number of one-bits in the two's complement binary* representation of the specified {@code long} value.* @since 1.5*/public static int bitCount(long i) {// HD, Figure 5-14i = i - ((i >>> 1) & 0x5555555555555555L);i = (i & 0x3333333333333333L) + ((i >>> 2) & 0x3333333333333333L);i = (i + (i >>> 4)) & 0x0f0f0f0f0f0f0f0fL;i = i + (i >>> 8);i = i + (i >>> 16);i = i + (i >>> 32);return (int)i & 0x7f;}/*** Returns the value obtained by rotating the two's complement binary* representation of the specified {@code long} value left by the* specified number of bits. (Bits shifted out of the left hand, or* high-order, side reenter on the right, or low-order.)** <p>Note that left rotation with a negative distance is equivalent to* right rotation: {@code rotateLeft(val, -distance) == rotateRight(val,* distance)}. Note also that rotation by any multiple of 64 is a* no-op, so all but the last six bits of the rotation distance can be* ignored, even if the distance is negative: {@code rotateLeft(val,* distance) == rotateLeft(val, distance & 0x3F)}.** @param i the value whose bits are to be rotated left* @param distance the number of bit positions to rotate left* @return the value obtained by rotating the two's complement binary* representation of the specified {@code long} value left by the* specified number of bits.* @since 1.5*/public static long rotateLeft(long i, int distance) {return (i << distance) | (i >>> -distance);}/*** Returns the value obtained by rotating the two's complement binary* representation of the specified {@code long} value right by the* specified number of bits. (Bits shifted out of the right hand, or* low-order, side reenter on the left, or high-order.)** <p>Note that right rotation with a negative distance is equivalent to* left rotation: {@code rotateRight(val, -distance) == rotateLeft(val,* distance)}. Note also that rotation by any multiple of 64 is a* no-op, so all but the last six bits of the rotation distance can be* ignored, even if the distance is negative: {@code rotateRight(val,* distance) == rotateRight(val, distance & 0x3F)}.** @param i the value whose bits are to be rotated right* @param distance the number of bit positions to rotate right* @return the value obtained by rotating the two's complement binary* representation of the specified {@code long} value right by the* specified number of bits.* @since 1.5*/public static long rotateRight(long i, int distance) {return (i >>> distance) | (i << -distance);}/*** Returns the value obtained by reversing the order of the bits in the* two's complement binary representation of the specified {@code long}* value.** @param i the value to be reversed* @return the value obtained by reversing order of the bits in the* specified {@code long} value.* @since 1.5*/public static long reverse(long i) {// HD, Figure 7-1i = (i & 0x5555555555555555L) << 1 | (i >>> 1) & 0x5555555555555555L;i = (i & 0x3333333333333333L) << 2 | (i >>> 2) & 0x3333333333333333L;i = (i & 0x0f0f0f0f0f0f0f0fL) << 4 | (i >>> 4) & 0x0f0f0f0f0f0f0f0fL;i = (i & 0x00ff00ff00ff00ffL) << 8 | (i >>> 8) & 0x00ff00ff00ff00ffL;i = (i << 48) | ((i & 0xffff0000L) << 16) |((i >>> 16) & 0xffff0000L) | (i >>> 48);return i;}/*** Returns the signum function of the specified {@code long} value. (The* return value is -1 if the specified value is negative; 0 if the* specified value is zero; and 1 if the specified value is positive.)** @param i the value whose signum is to be computed* @return the signum function of the specified {@code long} value.* @since 1.5*/public static int signum(long i) {// HD, Section 2-7return (int) ((i >> 63) | (-i >>> 63));}/*** Returns the value obtained by reversing the order of the bytes in the* two's complement representation of the specified {@code long} value.** @param i the value whose bytes are to be reversed* @return the value obtained by reversing the bytes in the specified* {@code long} value.* @since 1.5*/public static long reverseBytes(long i) {i = (i & 0x00ff00ff00ff00ffL) << 8 | (i >>> 8) & 0x00ff00ff00ff00ffL;return (i << 48) | ((i & 0xffff0000L) << 16) |((i >>> 16) & 0xffff0000L) | (i >>> 48);}/*** Adds two {@code long} values together as per the + operator.** @param a the first operand* @param b the second operand* @return the sum of {@code a} and {@code b}* @see java.util.function.BinaryOperator* @since 1.8*/public static long sum(long a, long b) {return a + b;}/*** Returns the greater of two {@code long} values* as if by calling {@link Math#max(long, long) Math.max}.** @param a the first operand* @param b the second operand* @return the greater of {@code a} and {@code b}* @see java.util.function.BinaryOperator* @since 1.8*/public static long max(long a, long b) {return Math.max(a, b);}/*** Returns the smaller of two {@code long} values* as if by calling {@link Math#min(long, long) Math.min}.** @param a the first operand* @param b the second operand* @return the smaller of {@code a} and {@code b}* @see java.util.function.BinaryOperator* @since 1.8*/public static long min(long a, long b) {return Math.min(a, b);}/** use serialVersionUID from JDK 1.0.2 for interoperability */@Native private static final long serialVersionUID = 4290774380558885855L; }Long Source

?

from:?https://www.cnblogs.com/aben-blog/p/8728995.html?

總結

以上是生活随笔為你收集整理的JDK Long源码的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

天天摸天天透天天添 | 国内精品一区二区三区不卡 | 国产精品美女久久久 | 日本高清一区免费中文视频 | 国产精品.xx视频.xxtv | 青草视频在线播放 | 少妇太爽了在线观看 | 天天摸天天透天天添 | 亚洲综合伊人久久大杳蕉 | 97无码免费人妻超级碰碰夜夜 | 天下第一社区视频www日本 | 丝袜人妻一区二区三区 | 国产香蕉97碰碰久久人人 | 国产精品爱久久久久久久 | 人人妻在人人 | 精品少妇爆乳无码av无码专区 | 国产偷国产偷精品高清尤物 | 少妇激情av一区二区 | 大色综合色综合网站 | 欧美高清在线精品一区 | 日韩欧美中文字幕在线三区 | 国内揄拍国内精品少妇国语 | 领导边摸边吃奶边做爽在线观看 | 无码国内精品人妻少妇 | 99国产精品白浆在线观看免费 | 日本丰满熟妇videos | 性生交大片免费看女人按摩摩 | 日本一区二区更新不卡 | 国产亚洲人成a在线v网站 | 国产一区二区三区日韩精品 | 久久99国产综合精品 | 国产口爆吞精在线视频 | 精品无码av一区二区三区 | 中文毛片无遮挡高清免费 | 久久精品国产一区二区三区肥胖 | a国产一区二区免费入口 | 亚洲中文字幕乱码av波多ji | 国产肉丝袜在线观看 | 欧美性色19p | 日本一卡2卡3卡四卡精品网站 | 亚洲の无码国产の无码影院 | 中国大陆精品视频xxxx | 亚洲国产精华液网站w | 精品熟女少妇av免费观看 | 国产97人人超碰caoprom | 成人三级无码视频在线观看 | 熟妇女人妻丰满少妇中文字幕 | 人妻与老人中文字幕 | 黄网在线观看免费网站 | 99国产精品白浆在线观看免费 | 蜜臀av在线播放 久久综合激激的五月天 | 18无码粉嫩小泬无套在线观看 | 乱码午夜-极国产极内射 | 狠狠躁日日躁夜夜躁2020 | a片免费视频在线观看 | 精品欧美一区二区三区久久久 | 荡女精品导航 | 亚洲 激情 小说 另类 欧美 | а√资源新版在线天堂 | 美女黄网站人色视频免费国产 | 377p欧洲日本亚洲大胆 | 日韩成人一区二区三区在线观看 | 国产偷国产偷精品高清尤物 | 精品无码一区二区三区爱欲 | 无码人妻久久一区二区三区不卡 | 无码人妻久久一区二区三区不卡 | 久久久国产精品无码免费专区 | 成人精品天堂一区二区三区 | а√资源新版在线天堂 | 成 人 免费观看网站 | 久久99精品国产.久久久久 | 在线观看免费人成视频 | 67194成是人免费无码 | 丁香花在线影院观看在线播放 | 色婷婷综合激情综在线播放 | 成人三级无码视频在线观看 | 捆绑白丝粉色jk震动捧喷白浆 | 巨爆乳无码视频在线观看 | 荫蒂被男人添的好舒服爽免费视频 | 午夜福利电影 | 亚洲色欲色欲天天天www | 粗大的内捧猛烈进出视频 | 丁香啪啪综合成人亚洲 | 人人爽人人澡人人高潮 | 国产成人无码av一区二区 | 国产午夜亚洲精品不卡 | 国产精品无码永久免费888 | 欧美野外疯狂做受xxxx高潮 | 欧美人与禽zoz0性伦交 | 精品夜夜澡人妻无码av蜜桃 | 欧美成人免费全部网站 | 日本精品高清一区二区 | 成人欧美一区二区三区黑人免费 | 日韩精品a片一区二区三区妖精 | 亚洲精品国产精品乱码不卡 | 国产超级va在线观看视频 | 欧美日韩亚洲国产精品 | 亚洲第一无码av无码专区 | 真人与拘做受免费视频 | 麻豆蜜桃av蜜臀av色欲av | 人人妻人人澡人人爽人人精品浪潮 | 国产精品欧美成人 | 亚洲国产欧美日韩精品一区二区三区 | 国产精品无码一区二区三区不卡 | 亚洲综合精品香蕉久久网 | 国产精品igao视频网 | 国产成人精品久久亚洲高清不卡 | 又大又黄又粗又爽的免费视频 | 国产精品久久久久久无码 | 免费看少妇作爱视频 | 荡女精品导航 | 国产又爽又猛又粗的视频a片 | 日韩精品乱码av一区二区 | 成年美女黄网站色大免费视频 | 久久久久久九九精品久 | 国精产品一品二品国精品69xx | 国产一区二区三区四区五区加勒比 | 领导边摸边吃奶边做爽在线观看 | 亚洲精品国产精品乱码视色 | 2019午夜福利不卡片在线 | 国产精品成人av在线观看 | 好男人www社区 | 欧美精品国产综合久久 | 亚洲色大成网站www国产 | 大地资源网第二页免费观看 | 亚洲自偷自拍另类第1页 | 亚洲一区二区观看播放 | 国内少妇偷人精品视频免费 | 久久aⅴ免费观看 | 国产人妻久久精品二区三区老狼 | 久久zyz资源站无码中文动漫 | 波多野结衣av一区二区全免费观看 | 97se亚洲精品一区 | 特黄特色大片免费播放器图片 | 久久zyz资源站无码中文动漫 | 久久亚洲精品中文字幕无男同 | 无套内谢的新婚少妇国语播放 | 精品人人妻人人澡人人爽人人 | 熟妇人妻无码xxx视频 | 亚洲小说图区综合在线 | 一本久久a久久精品亚洲 | 国产一区二区三区日韩精品 | 国产精品高潮呻吟av久久 | 国产精品久久久久久久影院 | 精品国产福利一区二区 | 福利一区二区三区视频在线观看 | 亚洲欧美国产精品专区久久 | 久久99久久99精品中文字幕 | 久久国内精品自在自线 | 动漫av网站免费观看 | 奇米影视888欧美在线观看 | 亚洲色无码一区二区三区 | 欧美大屁股xxxxhd黑色 | 亚洲男女内射在线播放 | 国产电影无码午夜在线播放 | 成人精品天堂一区二区三区 | 国产精品人人爽人人做我的可爱 | 国产人妻人伦精品1国产丝袜 | 无码帝国www无码专区色综合 | 久久人人97超碰a片精品 | 精品无码av一区二区三区 | 美女黄网站人色视频免费国产 | 牛和人交xxxx欧美 | 亚洲国产av精品一区二区蜜芽 | 少妇太爽了在线观看 | 波多野结衣乳巨码无在线观看 | 日本丰满护士爆乳xxxx | 亚洲精品综合五月久久小说 | 无码帝国www无码专区色综合 | 麻花豆传媒剧国产免费mv在线 | 国产精品久久久久7777 | 呦交小u女精品视频 | 麻豆国产丝袜白领秘书在线观看 | 最新版天堂资源中文官网 | 水蜜桃色314在线观看 | 亚洲人成影院在线无码按摩店 | 成人综合网亚洲伊人 | 中文字幕乱妇无码av在线 | 曰韩无码二三区中文字幕 | 欧美日韩综合一区二区三区 | 少妇愉情理伦片bd | 免费无码一区二区三区蜜桃大 | 无码一区二区三区在线 | 四虎影视成人永久免费观看视频 | 曰本女人与公拘交酡免费视频 | 国产人成高清在线视频99最全资源 | 无遮挡国产高潮视频免费观看 | 欧美野外疯狂做受xxxx高潮 | 国産精品久久久久久久 | 日本成熟视频免费视频 | 国产精品久久精品三级 | 亚洲精品一区二区三区婷婷月 | 久久久中文字幕日本无吗 | 欧美激情综合亚洲一二区 | 色 综合 欧美 亚洲 国产 | 亚洲精品国产a久久久久久 | 日韩在线不卡免费视频一区 | 好男人社区资源 | 久久99精品国产麻豆 | 亚洲精品久久久久久一区二区 | 水蜜桃av无码 | 最近中文2019字幕第二页 | 少妇一晚三次一区二区三区 | 亚洲日韩av一区二区三区四区 | 成人无码视频免费播放 | 亚洲乱码日产精品bd | 久久精品丝袜高跟鞋 | 日日摸夜夜摸狠狠摸婷婷 | 中文字幕 亚洲精品 第1页 | 中文字幕无码乱人伦 | 亚洲欧洲日本综合aⅴ在线 | 亚洲狠狠色丁香婷婷综合 | 在线观看国产一区二区三区 | 99精品国产综合久久久久五月天 | 久久99精品久久久久久 | 国内丰满熟女出轨videos | 国产农村妇女高潮大叫 | 成 人 网 站国产免费观看 | 亚洲色欲久久久综合网东京热 | 亚洲精品成人av在线 | 天天爽夜夜爽夜夜爽 | 午夜福利不卡在线视频 | 欧美午夜特黄aaaaaa片 | 国产精品久久久久久亚洲影视内衣 | 日韩精品无码一区二区中文字幕 | 久久久久se色偷偷亚洲精品av | 国产网红无码精品视频 | 亚洲精品鲁一鲁一区二区三区 | 88国产精品欧美一区二区三区 | 美女极度色诱视频国产 | 人人妻人人澡人人爽人人精品 | 最新国产乱人伦偷精品免费网站 | 性欧美牲交在线视频 | 久久久久久九九精品久 | 国产精品久久久午夜夜伦鲁鲁 | 激情亚洲一区国产精品 | 国产99久久精品一区二区 | 欧美日韩视频无码一区二区三 | 国产成人精品无码播放 | 永久免费精品精品永久-夜色 | 亚洲乱亚洲乱妇50p | 婷婷综合久久中文字幕蜜桃三电影 | 欧美黑人巨大xxxxx | 亚洲熟熟妇xxxx | 丰满人妻一区二区三区免费视频 | 免费网站看v片在线18禁无码 | 中文字幕 人妻熟女 | 乱人伦人妻中文字幕无码久久网 | aa片在线观看视频在线播放 | 中文字幕人成乱码熟女app | 国产精品久久久久久无码 | 久久97精品久久久久久久不卡 | 国产无套粉嫩白浆在线 | 无码人妻精品一区二区三区不卡 | 亚洲熟悉妇女xxx妇女av | av在线亚洲欧洲日产一区二区 | 成人免费视频一区二区 | 色一情一乱一伦一视频免费看 | 久久综合色之久久综合 | 国产舌乚八伦偷品w中 | 国产真实伦对白全集 | 国产人妻精品一区二区三区不卡 | 亚洲色欲久久久综合网东京热 | 麻豆国产人妻欲求不满谁演的 | 久久综合色之久久综合 | 少妇一晚三次一区二区三区 | 成人欧美一区二区三区黑人免费 | 熟妇女人妻丰满少妇中文字幕 | 日日天干夜夜狠狠爱 | 狠狠cao日日穞夜夜穞av | 亚洲欧洲日本综合aⅴ在线 | 国产精品鲁鲁鲁 | 国产亚洲精品久久久久久 | 国模大胆一区二区三区 | 三上悠亚人妻中文字幕在线 | 国产激情精品一区二区三区 | 欧美日韩精品 | 久久精品国产99久久6动漫 | 大肉大捧一进一出视频出来呀 | 初尝人妻少妇中文字幕 | 无码国产色欲xxxxx视频 | 欧美丰满少妇xxxx性 | 丝袜足控一区二区三区 | 亚洲中文字幕在线无码一区二区 | 奇米影视7777久久精品人人爽 | 国产激情精品一区二区三区 | 丰满少妇人妻久久久久久 | 久久久久成人精品免费播放动漫 | 亚洲啪av永久无码精品放毛片 | 国产精品久久久久久久9999 | 伊人久久婷婷五月综合97色 | 波多野结衣 黑人 | 日本又色又爽又黄的a片18禁 | 久久99精品久久久久久 | 亚洲欧美综合区丁香五月小说 | 国产亚洲精品久久久久久久 | 性欧美熟妇videofreesex | 少妇无码一区二区二三区 | 亚洲国产欧美在线成人 | 午夜精品一区二区三区在线观看 | 人妻体内射精一区二区三四 | 性做久久久久久久免费看 | 精品人妻人人做人人爽 | 国产精品va在线观看无码 | 色欲人妻aaaaaaa无码 | 嫩b人妻精品一区二区三区 | 99精品无人区乱码1区2区3区 | 国产亚洲精品久久久久久 | 日日天日日夜日日摸 | 人妻有码中文字幕在线 | 国产麻豆精品精东影业av网站 | 久久人妻内射无码一区三区 | 国产精品自产拍在线观看 | 中文无码成人免费视频在线观看 | 午夜精品一区二区三区在线观看 | 久久久久久久久蜜桃 | 国产成人无码午夜视频在线观看 | 国产九九九九九九九a片 | 荡女精品导航 | 无码国产色欲xxxxx视频 | 亚洲熟妇色xxxxx亚洲 | 强开小婷嫩苞又嫩又紧视频 | 久久午夜无码鲁丝片秋霞 | 久久成人a毛片免费观看网站 | 日本熟妇乱子伦xxxx | 全球成人中文在线 | 少妇无码吹潮 | 中文字幕av伊人av无码av | 久久久久99精品国产片 | 国产熟妇高潮叫床视频播放 | 又大又硬又爽免费视频 | 中国女人内谢69xxxxxa片 | 久久无码中文字幕免费影院蜜桃 | 一区二区三区乱码在线 | 欧洲 | 亚洲欧美国产精品久久 | 乱人伦人妻中文字幕无码 | 丰满人妻精品国产99aⅴ | 九月婷婷人人澡人人添人人爽 | 国产亚洲精品久久久久久大师 | 欧美兽交xxxx×视频 | 亚洲精品欧美二区三区中文字幕 | 国产做国产爱免费视频 | 少妇人妻偷人精品无码视频 | 亚洲精品国产精品乱码不卡 | ass日本丰满熟妇pics | 三上悠亚人妻中文字幕在线 | 中文字幕无码免费久久99 | 日日摸日日碰夜夜爽av | 精品乱码久久久久久久 | 国产麻豆精品一区二区三区v视界 | 六月丁香婷婷色狠狠久久 | 色综合久久久久综合一本到桃花网 | 久久亚洲精品中文字幕无男同 | yw尤物av无码国产在线观看 | 国产成人一区二区三区在线观看 | 性欧美疯狂xxxxbbbb | 无码国内精品人妻少妇 | 久久视频在线观看精品 | 亚洲成av人综合在线观看 | 国产人妻精品一区二区三区 | 日韩av无码一区二区三区 | 国产精品无码永久免费888 | 婷婷丁香五月天综合东京热 | 亚洲国产欧美日韩精品一区二区三区 | 色综合久久久久综合一本到桃花网 | 国产偷抇久久精品a片69 | 国产超碰人人爽人人做人人添 | 性开放的女人aaa片 | 亚洲色欲色欲天天天www | 久久亚洲中文字幕精品一区 | 欧美老人巨大xxxx做受 | 国产在线一区二区三区四区五区 | 老子影院午夜精品无码 | 青青青爽视频在线观看 | 国内综合精品午夜久久资源 | 国产内射爽爽大片视频社区在线 | 亚洲娇小与黑人巨大交 | 熟妇人妻激情偷爽文 | 久久亚洲国产成人精品性色 | aⅴ亚洲 日韩 色 图网站 播放 | 夜先锋av资源网站 | av无码久久久久不卡免费网站 | 曰本女人与公拘交酡免费视频 | 国产精品资源一区二区 | 久久久久久av无码免费看大片 | 亚洲一区二区三区播放 | 国产日产欧产精品精品app | 欧美午夜特黄aaaaaa片 | 人妻熟女一区 | 欧美成人家庭影院 | 波多野结衣av一区二区全免费观看 | 玩弄中年熟妇正在播放 | 成 人 免费观看网站 | 欧美老妇交乱视频在线观看 | 又黄又爽又色的视频 | 久久熟妇人妻午夜寂寞影院 | 中文字幕久久久久人妻 | 亚洲人成网站色7799 | 国产精品99久久精品爆乳 | 精品无码国产自产拍在线观看蜜 | 亚洲一区二区三区播放 | 最近免费中文字幕中文高清百度 | 曰韩少妇内射免费播放 | 久久精品国产99精品亚洲 | 在线欧美精品一区二区三区 | 婷婷色婷婷开心五月四房播播 | 鲁大师影院在线观看 | 日韩亚洲欧美精品综合 | 久久久无码中文字幕久... | 国产精品成人av在线观看 | 久久www免费人成人片 | 日本乱偷人妻中文字幕 | 免费无码肉片在线观看 | 亚洲一区二区三区国产精华液 | 日本又色又爽又黄的a片18禁 | 日本一本二本三区免费 | 欧美 日韩 人妻 高清 中文 | 欧美兽交xxxx×视频 | 亚洲а∨天堂久久精品2021 | 亚洲精品一区二区三区婷婷月 | 国产欧美亚洲精品a | 午夜不卡av免费 一本久久a久久精品vr综合 | 熟妇人妻无乱码中文字幕 | 成人欧美一区二区三区黑人免费 | 成人无码视频在线观看网站 | 日本丰满熟妇videos | 丰满人妻被黑人猛烈进入 | 精品久久久无码人妻字幂 | 亚洲日韩中文字幕在线播放 | 国产av剧情md精品麻豆 | 国产精品手机免费 | 综合激情五月综合激情五月激情1 | 成 人影片 免费观看 | 国产精品办公室沙发 | 成人aaa片一区国产精品 | 正在播放东北夫妻内射 | 亚洲国产欧美日韩精品一区二区三区 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 97人妻精品一区二区三区 | 亚洲人成无码网www | 亚洲午夜福利在线观看 | 97久久超碰中文字幕 | 日本xxxx色视频在线观看免费 | 国产欧美精品一区二区三区 | 乱码午夜-极国产极内射 | 999久久久国产精品消防器材 | 美女极度色诱视频国产 | 爽爽影院免费观看 | 日日夜夜撸啊撸 | 国产精品亚洲专区无码不卡 | 综合网日日天干夜夜久久 | 狠狠亚洲超碰狼人久久 | 亚洲精品中文字幕久久久久 | 日日天日日夜日日摸 | 中文字幕无码人妻少妇免费 | 国精品人妻无码一区二区三区蜜柚 | 中文字幕人妻无码一夲道 | 人人妻人人澡人人爽人人精品 | 娇妻被黑人粗大高潮白浆 | 亚洲欧美综合区丁香五月小说 | 欧美成人午夜精品久久久 | 红桃av一区二区三区在线无码av | 精品成人av一区二区三区 | 欧美成人免费全部网站 | 人妻无码αv中文字幕久久琪琪布 | 成人无码精品一区二区三区 | 鲁一鲁av2019在线 | 亚洲综合色区中文字幕 | 国产精品99爱免费视频 | 丰满人妻翻云覆雨呻吟视频 | 日韩无套无码精品 | 久久精品国产精品国产精品污 | 综合人妻久久一区二区精品 | 亚洲小说图区综合在线 | 精品国产成人一区二区三区 | 久久久久亚洲精品男人的天堂 | 色老头在线一区二区三区 | 亚洲色欲色欲天天天www | 国产精品欧美成人 | 偷窥村妇洗澡毛毛多 | 性欧美熟妇videofreesex | 激情内射亚州一区二区三区爱妻 | 兔费看少妇性l交大片免费 | 乌克兰少妇性做爰 | 免费中文字幕日韩欧美 | 四虎永久在线精品免费网址 | 亚洲中文字幕成人无码 | 国产精品亚洲综合色区韩国 | 亚洲综合无码一区二区三区 | 国产成人无码午夜视频在线观看 | 粗大的内捧猛烈进出视频 | 日韩精品无码一区二区中文字幕 | 少妇愉情理伦片bd | 国产精品高潮呻吟av久久4虎 | 老司机亚洲精品影院无码 | 无码av最新清无码专区吞精 | 日韩成人一区二区三区在线观看 | 国产精品成人av在线观看 | 国产麻豆精品一区二区三区v视界 | 曰韩无码二三区中文字幕 | 特级做a爰片毛片免费69 | 精品水蜜桃久久久久久久 | 国产av剧情md精品麻豆 | 国产综合色产在线精品 | 亚洲 欧美 激情 小说 另类 | 国产深夜福利视频在线 | 人妻尝试又大又粗久久 | 四虎国产精品一区二区 | 国内精品人妻无码久久久影院蜜桃 | 亚洲午夜福利在线观看 | 成人免费视频一区二区 | 成人精品天堂一区二区三区 | 51国偷自产一区二区三区 | 欧洲vodafone精品性 | 国精产品一品二品国精品69xx | 水蜜桃亚洲一二三四在线 | av在线亚洲欧洲日产一区二区 | 99国产精品白浆在线观看免费 | 欧美大屁股xxxxhd黑色 | 国产内射老熟女aaaa | 青草视频在线播放 | 黑人巨大精品欧美一区二区 | www一区二区www免费 | 99精品国产综合久久久久五月天 | 精品aⅴ一区二区三区 | 中文亚洲成a人片在线观看 | 300部国产真实乱 | 精品国产av色一区二区深夜久久 | 久久人人爽人人爽人人片ⅴ | 久久精品成人欧美大片 | 无码人妻精品一区二区三区下载 | 黄网在线观看免费网站 | 又黄又爽又色的视频 | 熟妇激情内射com | 图片小说视频一区二区 | 久久天天躁狠狠躁夜夜免费观看 | 女人被爽到呻吟gif动态图视看 | 亚洲午夜福利在线观看 | 亚洲日本一区二区三区在线 | 激情人妻另类人妻伦 | 国产精品久久久午夜夜伦鲁鲁 | 国产精品毛多多水多 | 少妇被黑人到高潮喷出白浆 | 亚洲国产欧美日韩精品一区二区三区 | 国产区女主播在线观看 | 牲欲强的熟妇农村老妇女 | 青草青草久热国产精品 | 精品乱码久久久久久久 | 少妇厨房愉情理9仑片视频 | 亚洲の无码国产の无码步美 | 亚洲国产精品成人久久蜜臀 | 自拍偷自拍亚洲精品被多人伦好爽 | 日日碰狠狠躁久久躁蜜桃 | 久久久久99精品成人片 | 日日麻批免费40分钟无码 | 偷窥村妇洗澡毛毛多 | 国产三级精品三级男人的天堂 | 婷婷色婷婷开心五月四房播播 | 国产精品毛多多水多 | 一区二区三区高清视频一 | 丰满人妻被黑人猛烈进入 | 精品久久久久久人妻无码中文字幕 | 国产精品沙发午睡系列 | 日韩人妻无码中文字幕视频 | 无码免费一区二区三区 | 国产av一区二区三区最新精品 | 青青久在线视频免费观看 | 美女扒开屁股让男人桶 | 荫蒂添的好舒服视频囗交 | 国产sm调教视频在线观看 | 久久国产精品_国产精品 | 鲁鲁鲁爽爽爽在线视频观看 | 免费无码午夜福利片69 | 色婷婷久久一区二区三区麻豆 | 久久精品中文字幕一区 | 夜夜影院未满十八勿进 | 在线 国产 欧美 亚洲 天堂 | 人妻无码αv中文字幕久久琪琪布 | 黑人巨大精品欧美一区二区 | 亚洲成色在线综合网站 | 红桃av一区二区三区在线无码av | 国产精品va在线播放 | 夜夜高潮次次欢爽av女 | 狠狠色色综合网站 | 国精产品一品二品国精品69xx | 国产亚洲精品精品国产亚洲综合 | 日本一本二本三区免费 | 亚洲色www成人永久网址 | 丰满人妻翻云覆雨呻吟视频 | 小泽玛莉亚一区二区视频在线 | 国内精品人妻无码久久久影院蜜桃 | 波多野结衣乳巨码无在线观看 | 久久久久久国产精品无码下载 | 中文字幕人妻无码一夲道 | 蜜桃视频插满18在线观看 | 国产极品视觉盛宴 | 欧美老妇与禽交 | 中文亚洲成a人片在线观看 | 极品尤物被啪到呻吟喷水 | 久久午夜无码鲁丝片 | 香蕉久久久久久av成人 | 漂亮人妻洗澡被公强 日日躁 | 大地资源网第二页免费观看 | 国产又粗又硬又大爽黄老大爷视 | 日韩成人一区二区三区在线观看 | 国产真人无遮挡作爱免费视频 | 精品偷拍一区二区三区在线看 | 丰满人妻翻云覆雨呻吟视频 | 免费观看激色视频网站 | 性做久久久久久久久 | 无套内射视频囯产 | 青青青手机频在线观看 | 国产国产精品人在线视 | 强伦人妻一区二区三区视频18 | 未满小14洗澡无码视频网站 | 激情亚洲一区国产精品 | 大胆欧美熟妇xx | 国产手机在线αⅴ片无码观看 | 亚洲精品国产品国语在线观看 | 四十如虎的丰满熟妇啪啪 | 日韩精品一区二区av在线 | 任你躁国产自任一区二区三区 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 熟妇人妻中文av无码 | 亚洲精品一区二区三区在线观看 | 亚洲天堂2017无码 | 国产在线aaa片一区二区99 | 精品人人妻人人澡人人爽人人 | 大地资源网第二页免费观看 | 国产xxx69麻豆国语对白 | 欧美日韩在线亚洲综合国产人 | 亚洲综合色区中文字幕 | 性欧美熟妇videofreesex | 欧美日韩久久久精品a片 | 午夜无码人妻av大片色欲 | 色 综合 欧美 亚洲 国产 | 亚洲aⅴ无码成人网站国产app | 日韩精品无码一区二区中文字幕 | 天堂在线观看www | 亚洲人成网站在线播放942 | 亚洲一区二区三区四区 | 国产激情无码一区二区app | 国产口爆吞精在线视频 | 成人免费视频一区二区 | 少妇太爽了在线观看 | 人人妻人人澡人人爽人人精品浪潮 | 精品久久久久久人妻无码中文字幕 | 中文字幕 亚洲精品 第1页 | 成人精品视频一区二区三区尤物 | 欧美一区二区三区视频在线观看 | 国内精品一区二区三区不卡 | 国产超级va在线观看视频 | 亚洲最大成人网站 | 亚洲精品一区二区三区在线观看 | 免费观看激色视频网站 | 人妻天天爽夜夜爽一区二区 | 久久精品女人天堂av免费观看 | 国产精品手机免费 | 一本久久a久久精品vr综合 | 日韩人妻无码一区二区三区久久99 | 久久人妻内射无码一区三区 | 国产精品怡红院永久免费 | 国产精品欧美成人 | 在线成人www免费观看视频 | 久久人人97超碰a片精品 | 亚洲第一无码av无码专区 | 天天摸天天透天天添 | 性色欲网站人妻丰满中文久久不卡 | 久久久中文字幕日本无吗 | 日韩精品无码免费一区二区三区 | 亚洲日韩av一区二区三区中文 | 国产激情一区二区三区 | 国产精品无码一区二区桃花视频 | 女人被男人躁得好爽免费视频 | 国产成人综合色在线观看网站 | 亚洲中文无码av永久不收费 | 久久精品99久久香蕉国产色戒 | 草草网站影院白丝内射 | 美女扒开屁股让男人桶 | 精品水蜜桃久久久久久久 | 领导边摸边吃奶边做爽在线观看 | 国产激情精品一区二区三区 | 中文字幕乱码中文乱码51精品 | 无码成人精品区在线观看 | 国产成人精品久久亚洲高清不卡 | 亚洲色欲久久久综合网东京热 | 欧美日韩综合一区二区三区 | 无套内射视频囯产 | 国产熟妇高潮叫床视频播放 | 亚洲熟妇色xxxxx亚洲 | 日韩精品一区二区av在线 | 国产人成高清在线视频99最全资源 | 国产猛烈高潮尖叫视频免费 | 久久99精品久久久久久动态图 | 国产午夜无码精品免费看 | 中文字幕无码av波多野吉衣 | 久久午夜夜伦鲁鲁片无码免费 | 国产亚洲精品久久久ai换 | 亚洲乱亚洲乱妇50p | 成人免费无码大片a毛片 | 成人无码视频在线观看网站 | 国产真实夫妇视频 | 桃花色综合影院 | 伊人久久大香线蕉午夜 | 精品国产麻豆免费人成网站 | 丰满人妻被黑人猛烈进入 | 香蕉久久久久久av成人 | 色诱久久久久综合网ywww | 女人被爽到呻吟gif动态图视看 | 粉嫩少妇内射浓精videos | 欧美人与物videos另类 | 无码精品人妻一区二区三区av | 精品久久久久久亚洲精品 | 无码一区二区三区在线 | 国产suv精品一区二区五 | 麻豆国产丝袜白领秘书在线观看 | 天堂亚洲免费视频 | 野外少妇愉情中文字幕 | 乱中年女人伦av三区 | 国产一区二区三区四区五区加勒比 | 亚洲熟女一区二区三区 | 中文字幕乱码人妻无码久久 | a在线观看免费网站大全 | 一个人看的www免费视频在线观看 | 人人妻人人澡人人爽精品欧美 | 欧美阿v高清资源不卡在线播放 | 熟妇女人妻丰满少妇中文字幕 | 老子影院午夜精品无码 | 55夜色66夜色国产精品视频 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 国内少妇偷人精品视频 | 日日天干夜夜狠狠爱 | 国产精品久久久午夜夜伦鲁鲁 | 国产亚洲精品久久久ai换 | 天堂亚洲2017在线观看 | 国产成人精品三级麻豆 | ass日本丰满熟妇pics | 日本欧美一区二区三区乱码 | 国内综合精品午夜久久资源 | 夜夜夜高潮夜夜爽夜夜爰爰 | 99久久久国产精品无码免费 | 久久久无码中文字幕久... | 欧美老妇与禽交 | 久久精品国产99精品亚洲 | 国产亚洲欧美日韩亚洲中文色 | 久久无码中文字幕免费影院蜜桃 | 免费网站看v片在线18禁无码 | 激情人妻另类人妻伦 | 国产午夜无码视频在线观看 | 久久久精品成人免费观看 | 在线a亚洲视频播放在线观看 | 日本精品少妇一区二区三区 | 国内精品人妻无码久久久影院 | 久久人人爽人人爽人人片av高清 | 久久精品国产99久久6动漫 | 大肉大捧一进一出视频出来呀 | 久青草影院在线观看国产 | 国产真实乱对白精彩久久 | 1000部啪啪未满十八勿入下载 | 99久久精品日本一区二区免费 | 中文毛片无遮挡高清免费 | 动漫av一区二区在线观看 | 国产成人av免费观看 | 国产亚洲精品久久久久久国模美 | 性生交片免费无码看人 | 中文字幕 亚洲精品 第1页 | 18禁止看的免费污网站 | 少妇性俱乐部纵欲狂欢电影 | 岛国片人妻三上悠亚 | 久激情内射婷内射蜜桃人妖 | 波多野结衣av在线观看 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 国产艳妇av在线观看果冻传媒 | 动漫av网站免费观看 | 久久综合九色综合欧美狠狠 | 中文字幕日产无线码一区 | 蜜臀aⅴ国产精品久久久国产老师 | 免费国产黄网站在线观看 | www国产亚洲精品久久久日本 | 精品乱子伦一区二区三区 | 性欧美牲交在线视频 | 日韩视频 中文字幕 视频一区 | 中文字幕精品av一区二区五区 | 97资源共享在线视频 | 鲁大师影院在线观看 | 国产精品爱久久久久久久 | 蜜桃臀无码内射一区二区三区 | 欧美日韩综合一区二区三区 | 成人三级无码视频在线观看 | 成年美女黄网站色大免费视频 | 亚洲色在线无码国产精品不卡 | 国产精品久久国产精品99 | 精品久久久无码中文字幕 | 久久久www成人免费毛片 | 亚洲精品久久久久久一区二区 | 久久aⅴ免费观看 | 国产超级va在线观看视频 | 国产精品久久久久无码av色戒 | 无码人妻少妇伦在线电影 | 精品乱码久久久久久久 | 红桃av一区二区三区在线无码av | 免费无码的av片在线观看 | 亚洲精品成a人在线观看 | 一二三四在线观看免费视频 | 欧美日韩一区二区免费视频 | 久久五月精品中文字幕 | 久久综合久久自在自线精品自 | 国内丰满熟女出轨videos | 黑森林福利视频导航 | 亚洲精品久久久久avwww潮水 | 在线а√天堂中文官网 | 免费国产成人高清在线观看网站 | 中文字幕乱码人妻无码久久 | 中文字幕无码免费久久99 | 97色伦图片97综合影院 | 三级4级全黄60分钟 | 亚欧洲精品在线视频免费观看 | 熟妇女人妻丰满少妇中文字幕 | 清纯唯美经典一区二区 | 午夜丰满少妇性开放视频 | 久久精品人妻少妇一区二区三区 | 男人和女人高潮免费网站 | 国产精品怡红院永久免费 | 国产精品手机免费 | 国内揄拍国内精品少妇国语 | 久久国内精品自在自线 | 少妇无码av无码专区在线观看 | 99麻豆久久久国产精品免费 | 无码纯肉视频在线观看 | 国产内射老熟女aaaa | 国产特级毛片aaaaaaa高清 | 久久久中文字幕日本无吗 | 亚洲中文字幕乱码av波多ji | 无码国产激情在线观看 | 国产精品亚洲综合色区韩国 | 日本护士毛茸茸高潮 | 99精品国产综合久久久久五月天 | 四十如虎的丰满熟妇啪啪 | 国产色精品久久人妻 | 又粗又大又硬毛片免费看 | 乱人伦中文视频在线观看 | 国产成人无码区免费内射一片色欲 | 国产亚洲欧美日韩亚洲中文色 | 国内少妇偷人精品视频免费 | 欧美丰满熟妇xxxx | 久久久久久久人妻无码中文字幕爆 | 久久婷婷五月综合色国产香蕉 | 国产精品-区区久久久狼 | 欧美日韩一区二区免费视频 | 丰满人妻一区二区三区免费视频 | 麻豆国产丝袜白领秘书在线观看 | 在线а√天堂中文官网 | 久激情内射婷内射蜜桃人妖 | 中文字幕无线码免费人妻 | 玩弄少妇高潮ⅹxxxyw | 色狠狠av一区二区三区 | 亚洲精品久久久久久久久久久 | 国产精品无码一区二区三区不卡 | 亚洲国产av精品一区二区蜜芽 | 色婷婷综合中文久久一本 | 欧洲美熟女乱又伦 | 激情五月综合色婷婷一区二区 | 欧美 日韩 人妻 高清 中文 | 妺妺窝人体色www婷婷 | 无码av免费一区二区三区试看 | 99久久99久久免费精品蜜桃 | 亚洲日韩一区二区 | 国产精品igao视频网 | 内射后入在线观看一区 | 日韩少妇白浆无码系列 | 欧美自拍另类欧美综合图片区 | 国产无av码在线观看 | 一本色道久久综合狠狠躁 | 精品久久久无码人妻字幂 | 亚洲精品国产精品乱码不卡 | 少女韩国电视剧在线观看完整 | 一本久久伊人热热精品中文字幕 | 色五月丁香五月综合五月 | 99久久99久久免费精品蜜桃 | 中文字幕av日韩精品一区二区 | 欧美高清在线精品一区 | 99久久久无码国产精品免费 | 老熟女乱子伦 | 女人被男人爽到呻吟的视频 | 欧美黑人乱大交 | 对白脏话肉麻粗话av | 又大又紧又粉嫩18p少妇 | 成人毛片一区二区 | 色狠狠av一区二区三区 | 国产艳妇av在线观看果冻传媒 | 欧美xxxx黑人又粗又长 | 中文无码伦av中文字幕 | 国产亚洲精品久久久久久 | 麻豆成人精品国产免费 | 兔费看少妇性l交大片免费 | 300部国产真实乱 | 国精产品一品二品国精品69xx | 在线看片无码永久免费视频 | 丰满人妻被黑人猛烈进入 | 永久黄网站色视频免费直播 | 欧美放荡的少妇 | 欧美成人高清在线播放 | 宝宝好涨水快流出来免费视频 | 国产亚av手机在线观看 | 一个人看的www免费视频在线观看 | 久久久久免费精品国产 | 亚洲欧美综合区丁香五月小说 | 丰满妇女强制高潮18xxxx | 欧美大屁股xxxxhd黑色 | 少妇厨房愉情理9仑片视频 | 麻豆蜜桃av蜜臀av色欲av | 伊在人天堂亚洲香蕉精品区 | 99久久久国产精品无码免费 | 九九久久精品国产免费看小说 | 夜精品a片一区二区三区无码白浆 | 亚洲精品国偷拍自产在线麻豆 | 国产真实夫妇视频 | 国产成人久久精品流白浆 | 亚洲中文字幕无码一久久区 | 未满小14洗澡无码视频网站 | 午夜肉伦伦影院 | 国产婷婷色一区二区三区在线 | 天天做天天爱天天爽综合网 | 国产麻豆精品一区二区三区v视界 | 女人高潮内射99精品 | 亚洲区欧美区综合区自拍区 | 久久久精品国产sm最大网站 | 国产福利视频一区二区 | 无码吃奶揉捏奶头高潮视频 | 国产精品18久久久久久麻辣 | 久久精品国产大片免费观看 | 97se亚洲精品一区 | 国产色在线 | 国产 | 久久精品国产一区二区三区肥胖 | 领导边摸边吃奶边做爽在线观看 | 亚拍精品一区二区三区探花 | 丁香花在线影院观看在线播放 | 激情五月综合色婷婷一区二区 | 亚洲天堂2017无码中文 | 久久精品国产日本波多野结衣 | 在线天堂新版最新版在线8 | 真人与拘做受免费视频一 | 日韩无套无码精品 | 少妇性l交大片欧洲热妇乱xxx | 日韩在线不卡免费视频一区 | 人妻无码αv中文字幕久久琪琪布 | 精品无人国产偷自产在线 | 在线精品亚洲一区二区 | 国产香蕉97碰碰久久人人 | 国产欧美精品一区二区三区 | 亚洲va欧美va天堂v国产综合 | 欧美成人午夜精品久久久 | 久久人人爽人人爽人人片ⅴ | 国产成人无码一二三区视频 | 中文字幕人妻无码一夲道 | 国产熟妇高潮叫床视频播放 | 日日躁夜夜躁狠狠躁 | 亚洲日本一区二区三区在线 | 国产一区二区三区四区五区加勒比 | 亚洲精品中文字幕乱码 | 亚洲精品成人福利网站 | 久久国产精品_国产精品 | 欧美精品一区二区精品久久 | 成年女人永久免费看片 | 真人与拘做受免费视频 | 牲交欧美兽交欧美 | 一二三四社区在线中文视频 | 亚洲日韩一区二区 | 国产午夜精品一区二区三区嫩草 | 国产色视频一区二区三区 | 精品成在人线av无码免费看 | 国产va免费精品观看 | 国产精品人妻一区二区三区四 | 狠狠cao日日穞夜夜穞av | 玩弄少妇高潮ⅹxxxyw | 1000部夫妻午夜免费 | 麻豆国产丝袜白领秘书在线观看 | 对白脏话肉麻粗话av | 欧美人与善在线com | 久久亚洲中文字幕无码 | 日韩av无码一区二区三区 | 波多野结衣av一区二区全免费观看 | 99精品国产综合久久久久五月天 | 国产精品久久久久久亚洲毛片 | 亚洲一区二区三区含羞草 | 夜先锋av资源网站 | 日本又色又爽又黄的a片18禁 | 成人亚洲精品久久久久软件 | 国内少妇偷人精品视频免费 | 无码国产色欲xxxxx视频 | 久久aⅴ免费观看 | 中文字幕 人妻熟女 | 久久久www成人免费毛片 | 鲁大师影院在线观看 | 色婷婷综合激情综在线播放 | 国产精品美女久久久久av爽李琼 | 成 人影片 免费观看 | 欧美黑人性暴力猛交喷水 | 国产成人无码区免费内射一片色欲 | 伊人久久婷婷五月综合97色 | 国产无套内射久久久国产 | 亚洲精品久久久久久一区二区 | 国产成人无码专区 | 中文字幕 亚洲精品 第1页 | 少妇激情av一区二区 | 国产又爽又黄又刺激的视频 | 99er热精品视频 | 久久亚洲日韩精品一区二区三区 | 欧美激情内射喷水高潮 | 午夜福利一区二区三区在线观看 | 自拍偷自拍亚洲精品10p | 欧美日韩一区二区综合 | 97无码免费人妻超级碰碰夜夜 | 亚洲七七久久桃花影院 | 亚洲中文字幕在线无码一区二区 | 成人无码精品一区二区三区 | 日产精品高潮呻吟av久久 | 亚洲欧洲日本综合aⅴ在线 | 亚洲色欲久久久综合网东京热 | 一本久久伊人热热精品中文字幕 | 欧美黑人性暴力猛交喷水 | 久久精品人妻少妇一区二区三区 | 4hu四虎永久在线观看 | 精品久久久中文字幕人妻 | 日韩视频 中文字幕 视频一区 | 一二三四在线观看免费视频 | 人人妻人人澡人人爽人人精品浪潮 | 日本丰满熟妇videos | 国产精品无码mv在线观看 | 日韩av无码一区二区三区 | 四虎国产精品一区二区 | 国产精品理论片在线观看 | 4hu四虎永久在线观看 | 撕开奶罩揉吮奶头视频 | 免费无码av一区二区 | 成人精品天堂一区二区三区 | 亚洲无人区一区二区三区 | 中文毛片无遮挡高清免费 | 国产成人精品久久亚洲高清不卡 | 欧美日韩视频无码一区二区三 | 亚洲国产精品一区二区美利坚 | 成人毛片一区二区 | 国产精品成人av在线观看 | 亚洲精品鲁一鲁一区二区三区 | 精品国产av色一区二区深夜久久 | 波多野结衣乳巨码无在线观看 | 丰满人妻一区二区三区免费视频 | 欧美35页视频在线观看 | 最新国产乱人伦偷精品免费网站 | 熟女少妇在线视频播放 | 97久久国产亚洲精品超碰热 | 亚洲春色在线视频 | 精品国产一区二区三区av 性色 | 娇妻被黑人粗大高潮白浆 | 网友自拍区视频精品 | 国产精品亚洲专区无码不卡 | 日本大香伊一区二区三区 | 亚洲成av人片在线观看无码不卡 | 国产在线一区二区三区四区五区 | 中文字幕精品av一区二区五区 | 嫩b人妻精品一区二区三区 | 成人免费无码大片a毛片 | 无码国产激情在线观看 | 狠狠躁日日躁夜夜躁2020 | 日韩av无码中文无码电影 | 亚洲一区二区三区播放 | 亚洲中文字幕在线无码一区二区 | 男人和女人高潮免费网站 | 国产亚洲精品久久久闺蜜 | 国产亚洲人成a在线v网站 | 人人妻人人澡人人爽人人精品浪潮 | 国产精品人人爽人人做我的可爱 | 久久成人a毛片免费观看网站 | 久久国产精品_国产精品 | 欧美日韩人成综合在线播放 | 亚洲中文字幕无码中文字在线 | 婷婷丁香五月天综合东京热 | 又大又黄又粗又爽的免费视频 | 老熟妇乱子伦牲交视频 | 亚洲 a v无 码免 费 成 人 a v | 成人女人看片免费视频放人 | 中文字幕无码人妻少妇免费 | 动漫av一区二区在线观看 | 亚洲国产精品成人久久蜜臀 | 精品国产一区二区三区四区在线看 | 欧美兽交xxxx×视频 | 精品偷拍一区二区三区在线看 | 精品欧美一区二区三区久久久 | 精品无人国产偷自产在线 | 性啪啪chinese东北女人 | 色婷婷av一区二区三区之红樱桃 | 亚洲欧美国产精品专区久久 | 久久精品丝袜高跟鞋 | 日韩av无码一区二区三区 | 国产乱人伦偷精品视频 | 国产高潮视频在线观看 | 国产精品久久久久9999小说 | 中文字幕av伊人av无码av | 少妇厨房愉情理9仑片视频 | 国产亚洲精品久久久久久久久动漫 | 性色av无码免费一区二区三区 | 未满小14洗澡无码视频网站 | 免费观看的无遮挡av | 小泽玛莉亚一区二区视频在线 | 国产一区二区三区日韩精品 | 国产精品久久久久久亚洲影视内衣 | 国产av人人夜夜澡人人爽麻豆 | 色欲久久久天天天综合网精品 | 中文字幕无码视频专区 | 精品厕所偷拍各类美女tp嘘嘘 | 熟女少妇人妻中文字幕 | 香港三级日本三级妇三级 | 久久精品国产一区二区三区 | 曰本女人与公拘交酡免费视频 | 无码av最新清无码专区吞精 | 亚洲欧洲无卡二区视頻 | 亚洲综合色区中文字幕 | 亚洲国产精品毛片av不卡在线 | 精品一区二区三区波多野结衣 | 亚洲 高清 成人 动漫 | 高潮毛片无遮挡高清免费 | 亚洲精品综合五月久久小说 | 少妇性l交大片欧洲热妇乱xxx | 欧美大屁股xxxxhd黑色 | 成人无码视频免费播放 | 久久天天躁夜夜躁狠狠 | 欧美性生交活xxxxxdddd | 日本www一道久久久免费榴莲 | 欧美丰满少妇xxxx性 | 成在人线av无码免观看麻豆 | 国产特级毛片aaaaaaa高清 | 国产va免费精品观看 | 亚洲精品无码人妻无码 | 少妇被粗大的猛进出69影院 | 日本免费一区二区三区最新 | 日韩av激情在线观看 | 美女黄网站人色视频免费国产 | 久久无码中文字幕免费影院蜜桃 | 3d动漫精品啪啪一区二区中 | 成 人 网 站国产免费观看 | 国产精品18久久久久久麻辣 | 成人无码视频免费播放 | 18禁黄网站男男禁片免费观看 | 老司机亚洲精品影院无码 | 国产亚洲日韩欧美另类第八页 | 精品久久久中文字幕人妻 | 亚洲无人区午夜福利码高清完整版 | 精品一区二区不卡无码av | 午夜成人1000部免费视频 | 国产免费无码一区二区视频 | 一本精品99久久精品77 | 99久久婷婷国产综合精品青草免费 | 人妻尝试又大又粗久久 | 国产精品对白交换视频 | 野外少妇愉情中文字幕 | 女人被男人爽到呻吟的视频 | 无码精品国产va在线观看dvd | 无码人中文字幕 | 久久国语露脸国产精品电影 | 国产精品美女久久久网av | 亚洲中文字幕无码中字 | 国产美女精品一区二区三区 | 中文字幕乱妇无码av在线 | 久久99精品久久久久久 | 亚洲一区二区三区国产精华液 | 国产亚洲美女精品久久久2020 | 精品久久久无码人妻字幂 | 色老头在线一区二区三区 | 久久久久se色偷偷亚洲精品av | 国产精品免费大片 | 国产一区二区三区日韩精品 | 牲交欧美兽交欧美 | 丰满少妇熟乱xxxxx视频 | 蜜桃无码一区二区三区 | 国产在线精品一区二区高清不卡 | 精品人妻人人做人人爽 | 丝袜 中出 制服 人妻 美腿 | 精品无码成人片一区二区98 | 久久久中文久久久无码 | 人妻aⅴ无码一区二区三区 | 久9re热视频这里只有精品 | 欧美丰满老熟妇xxxxx性 | 荡女精品导航 | 宝宝好涨水快流出来免费视频 | 国产在线精品一区二区高清不卡 | 国产精品理论片在线观看 | 激情爆乳一区二区三区 | 少妇性荡欲午夜性开放视频剧场 | 亚洲成av人在线观看网址 | 帮老师解开蕾丝奶罩吸乳网站 | 熟妇人妻激情偷爽文 | 国产在线精品一区二区三区直播 | 色一情一乱一伦 | 国产一区二区三区日韩精品 | 中文字幕亚洲情99在线 | 四虎国产精品免费久久 | 中文字幕无码热在线视频 | 亚拍精品一区二区三区探花 | 狠狠噜狠狠狠狠丁香五月 | 青草青草久热国产精品 | 久久99精品国产麻豆蜜芽 | 天堂在线观看www | 在线精品国产一区二区三区 | 国产莉萝无码av在线播放 | 激情内射日本一区二区三区 | 在线天堂新版最新版在线8 | 免费看少妇作爱视频 | 午夜福利一区二区三区在线观看 | 国产av久久久久精东av | 伊人久久婷婷五月综合97色 | 国产肉丝袜在线观看 | 偷窥日本少妇撒尿chinese | 成人精品天堂一区二区三区 | 东京一本一道一二三区 | 55夜色66夜色国产精品视频 | 亚洲一区二区三区含羞草 | 日日天干夜夜狠狠爱 | 丰满人妻一区二区三区免费视频 | 日日摸夜夜摸狠狠摸婷婷 | 国产欧美熟妇另类久久久 | 国产精品无码mv在线观看 | 大地资源网第二页免费观看 | 国产片av国语在线观看 | 午夜精品一区二区三区的区别 | 男女猛烈xx00免费视频试看 | 国产内射老熟女aaaa | 亚欧洲精品在线视频免费观看 | 欧美野外疯狂做受xxxx高潮 | 久久久婷婷五月亚洲97号色 | 伊人久久大香线蕉av一区二区 | 高中生自慰www网站 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 日本www一道久久久免费榴莲 | 午夜福利不卡在线视频 | 国产精品视频免费播放 | 麻豆人妻少妇精品无码专区 | 嫩b人妻精品一区二区三区 | 乱码午夜-极国产极内射 | 国产又爽又猛又粗的视频a片 | 亚洲gv猛男gv无码男同 | 日日橹狠狠爱欧美视频 | 欧美日韩一区二区三区自拍 | 国产内射爽爽大片视频社区在线 | 色综合久久网 | 麻豆成人精品国产免费 | 国内精品人妻无码久久久影院蜜桃 | 成 人 网 站国产免费观看 | 久久无码中文字幕免费影院蜜桃 | 久久久久久久人妻无码中文字幕爆 | 性欧美videos高清精品 | 在线а√天堂中文官网 | 免费看少妇作爱视频 | 在线天堂新版最新版在线8 | 丰满少妇弄高潮了www | 国产午夜手机精彩视频 | 亚洲综合无码一区二区三区 | 欧美精品无码一区二区三区 | 三上悠亚人妻中文字幕在线 | 国产精品欧美成人 | 欧美丰满熟妇xxxx性ppx人交 | 国内少妇偷人精品视频 | 久久国产自偷自偷免费一区调 | 日韩 欧美 动漫 国产 制服 | 四虎影视成人永久免费观看视频 | 高中生自慰www网站 | 无码av免费一区二区三区试看 | 男人和女人高潮免费网站 | 亚洲国产一区二区三区在线观看 | 激情国产av做激情国产爱 | 最新国产麻豆aⅴ精品无码 | 天天躁夜夜躁狠狠是什么心态 | 亚洲s码欧洲m码国产av | 国产高清不卡无码视频 | 福利一区二区三区视频在线观看 | 久久精品国产一区二区三区 | 亚洲国产成人av在线观看 | 国产无遮挡又黄又爽免费视频 | 99久久精品午夜一区二区 | 久在线观看福利视频 | 亚洲成a人一区二区三区 | 一区二区三区高清视频一 | 欧美日本精品一区二区三区 | 丁香花在线影院观看在线播放 | 久久人人爽人人爽人人片av高清 | 亚洲七七久久桃花影院 | 久久精品国产99久久6动漫 | 思思久久99热只有频精品66 | 动漫av一区二区在线观看 | 自拍偷自拍亚洲精品被多人伦好爽 | 亚洲七七久久桃花影院 | 久久久久久久女国产乱让韩 | 中文字幕无码日韩专区 | 99久久久无码国产精品免费 | 欧美精品国产综合久久 | 亚洲自偷自偷在线制服 | 国产明星裸体无码xxxx视频 | 蜜臀aⅴ国产精品久久久国产老师 | 国产精品高潮呻吟av久久 | 国内少妇偷人精品视频免费 | 久久伊人色av天堂九九小黄鸭 | 欧美成人午夜精品久久久 | 超碰97人人射妻 | 中文字幕无码日韩欧毛 | 亚洲国产精华液网站w | 夜夜影院未满十八勿进 | 久久精品国产一区二区三区肥胖 | 自拍偷自拍亚洲精品10p | 亚洲欧美日韩成人高清在线一区 | 亚洲欧美日韩综合久久久 | 国产成人无码av在线影院 | 99久久久无码国产aaa精品 | 亚洲va欧美va天堂v国产综合 | 四虎4hu永久免费 | 色情久久久av熟女人妻网站 | 色噜噜亚洲男人的天堂 | 亚洲精品成人av在线 | 日韩精品乱码av一区二区 | 亚洲精品综合五月久久小说 | 一区二区三区乱码在线 | 欧洲 | 日韩在线不卡免费视频一区 | 狠狠亚洲超碰狼人久久 | 色综合久久久无码中文字幕 | 狠狠噜狠狠狠狠丁香五月 | 精品国产一区二区三区av 性色 | 九一九色国产 | 搡女人真爽免费视频大全 | 色五月丁香五月综合五月 | 俺去俺来也在线www色官网 | 久久精品女人天堂av免费观看 | 亚洲色欲色欲欲www在线 | 国产超碰人人爽人人做人人添 | 黄网在线观看免费网站 | 午夜福利一区二区三区在线观看 | 少妇性荡欲午夜性开放视频剧场 | 无码人妻av免费一区二区三区 | 无码人妻丰满熟妇区五十路百度 | 国产舌乚八伦偷品w中 | 成人毛片一区二区 | 国产一区二区不卡老阿姨 | 亚洲国产欧美国产综合一区 | 日韩 欧美 动漫 国产 制服 | 一本久道久久综合狠狠爱 | 欧美精品在线观看 | 丁香花在线影院观看在线播放 | 人妻少妇精品无码专区动漫 | 娇妻被黑人粗大高潮白浆 | 中文字幕中文有码在线 | 对白脏话肉麻粗话av | 亚洲成a人片在线观看无码3d | 18黄暴禁片在线观看 | 狠狠色噜噜狠狠狠狠7777米奇 | 东京热男人av天堂 | 午夜成人1000部免费视频 | 大屁股大乳丰满人妻 | 特黄特色大片免费播放器图片 | 欧美亚洲日韩国产人成在线播放 | 久久午夜无码鲁丝片 | 中文毛片无遮挡高清免费 | 免费中文字幕日韩欧美 | 麻豆国产97在线 | 欧洲 | 无码中文字幕色专区 | 久久午夜无码鲁丝片 | 欧美野外疯狂做受xxxx高潮 | 无码av岛国片在线播放 | 久久精品99久久香蕉国产色戒 | 精品久久久久久人妻无码中文字幕 | 蜜臀av无码人妻精品 | 蜜桃av抽搐高潮一区二区 | 欧美成人免费全部网站 | 久久午夜夜伦鲁鲁片无码免费 | 日韩少妇内射免费播放 | 人妻夜夜爽天天爽三区 | 亚洲综合久久一区二区 | 无码精品国产va在线观看dvd | 夜精品a片一区二区三区无码白浆 | 国产三级久久久精品麻豆三级 | 天堂无码人妻精品一区二区三区 | 亚洲熟悉妇女xxx妇女av | 日韩av无码中文无码电影 | 亚洲中文字幕在线无码一区二区 | a在线观看免费网站大全 | 丝袜 中出 制服 人妻 美腿 | 爆乳一区二区三区无码 | 四虎永久在线精品免费网址 | 人人妻人人藻人人爽欧美一区 | 任你躁国产自任一区二区三区 | 无码精品人妻一区二区三区av | 熟妇人妻无乱码中文字幕 | 欧美精品一区二区精品久久 | 免费网站看v片在线18禁无码 | 日韩人妻少妇一区二区三区 | 精品国精品国产自在久国产87 | 亚洲国产精品美女久久久久 | 女高中生第一次破苞av | 精品熟女少妇av免费观看 | 欧美日韩一区二区免费视频 | 国产亚洲视频中文字幕97精品 | 日韩精品成人一区二区三区 | 初尝人妻少妇中文字幕 | 色妞www精品免费视频 | 成人一区二区免费视频 | 一本久道久久综合婷婷五月 | 国产精品亚洲一区二区三区喷水 | 久久视频在线观看精品 | 午夜成人1000部免费视频 | 最近的中文字幕在线看视频 | 国产偷国产偷精品高清尤物 | 天干天干啦夜天干天2017 | 久久久久亚洲精品男人的天堂 | 99久久精品无码一区二区毛片 | 少妇的肉体aa片免费 | 亚洲欧美日韩成人高清在线一区 | 国产成人精品必看 | 中文字幕乱码人妻无码久久 | 熟女俱乐部五十路六十路av | 国产偷国产偷精品高清尤物 | 日本va欧美va欧美va精品 | 娇妻被黑人粗大高潮白浆 | 亚洲国产av美女网站 | 一个人看的www免费视频在线观看 | 鲁鲁鲁爽爽爽在线视频观看 | 天堂无码人妻精品一区二区三区 | 沈阳熟女露脸对白视频 | 狂野欧美性猛xxxx乱大交 | 国产在线aaa片一区二区99 | 少妇太爽了在线观看 | 久久精品国产一区二区三区肥胖 | 日日摸天天摸爽爽狠狠97 | 中文字幕人成乱码熟女app | 婷婷丁香五月天综合东京热 | 精品久久久中文字幕人妻 | 在线观看国产一区二区三区 | 丰满少妇人妻久久久久久 | 久久人妻内射无码一区三区 | 玩弄少妇高潮ⅹxxxyw | 欧美性色19p | 欧美兽交xxxx×视频 | 国产香蕉尹人视频在线 | 国产片av国语在线观看 | 成年美女黄网站色大免费全看 | 欧美成人家庭影院 | 精品久久久无码人妻字幂 | 日韩少妇白浆无码系列 | 特级做a爰片毛片免费69 | 国产猛烈高潮尖叫视频免费 | 99国产欧美久久久精品 | 亚洲色欲色欲天天天www | 亚洲国产成人av在线观看 | 国产精品久久福利网站 | 午夜不卡av免费 一本久久a久久精品vr综合 | 亚洲精品国偷拍自产在线麻豆 | 天堂无码人妻精品一区二区三区 | 丝袜人妻一区二区三区 | 国产av一区二区精品久久凹凸 | 国产又爽又猛又粗的视频a片 | 激情国产av做激情国产爱 | 黑人大群体交免费视频 | 亚洲毛片av日韩av无码 | 精品偷拍一区二区三区在线看 | 亚洲色偷偷偷综合网 | 日本一区二区三区免费播放 | 狂野欧美性猛交免费视频 | 精品人妻中文字幕有码在线 | 女高中生第一次破苞av | 亚洲熟女一区二区三区 | 乱中年女人伦av三区 | 欧美日本精品一区二区三区 | 亚洲七七久久桃花影院 | 午夜免费福利小电影 | 精品国产一区av天美传媒 | 亚洲s色大片在线观看 | 最新国产乱人伦偷精品免费网站 | 熟女少妇人妻中文字幕 | 成人精品一区二区三区中文字幕 | 亚洲精品国偷拍自产在线观看蜜桃 | 永久免费精品精品永久-夜色 | 亚洲七七久久桃花影院 | 久久99精品久久久久久 | 精品国产一区二区三区四区在线看 | 嫩b人妻精品一区二区三区 | 欧美性色19p | 国产一区二区不卡老阿姨 | 久久综合激激的五月天 | 76少妇精品导航 | 乱人伦人妻中文字幕无码 | 久久午夜夜伦鲁鲁片无码免费 | 精品无码国产自产拍在线观看蜜 | 青草视频在线播放 | 久久精品一区二区三区四区 | 一个人看的www免费视频在线观看 | 无码午夜成人1000部免费视频 | 欧美老妇与禽交 | 久久99国产综合精品 | 性史性农村dvd毛片 | 久久久久成人精品免费播放动漫 | 国产亚洲日韩欧美另类第八页 | 国产一精品一av一免费 | 18黄暴禁片在线观看 | 男人扒开女人内裤强吻桶进去 | 小泽玛莉亚一区二区视频在线 | 欧美人与禽猛交狂配 | 色 综合 欧美 亚洲 国产 | 97人妻精品一区二区三区 | 女高中生第一次破苞av | 日本成熟视频免费视频 | 国产一区二区三区精品视频 | 国产激情艳情在线看视频 | 国产 浪潮av性色四虎 | 国内揄拍国内精品少妇国语 | 久久午夜夜伦鲁鲁片无码免费 | 亚洲中文字幕乱码av波多ji | 国产亚洲精品久久久久久 | 亚洲人成人无码网www国产 | 日本爽爽爽爽爽爽在线观看免 | 夜精品a片一区二区三区无码白浆 | 狠狠色噜噜狠狠狠狠7777米奇 | 国产真实乱对白精彩久久 | 国产美女精品一区二区三区 | 国产精品国产自线拍免费软件 | 国产一区二区三区四区五区加勒比 | 正在播放东北夫妻内射 | 久久久久成人精品免费播放动漫 | 日产精品高潮呻吟av久久 | 国产av人人夜夜澡人人爽麻豆 | 99久久亚洲精品无码毛片 | 伊人色综合久久天天小片 | 无遮挡啪啪摇乳动态图 | 国产一区二区三区四区五区加勒比 | 国产午夜亚洲精品不卡 | 久久人人爽人人爽人人片av高清 | 国产精品人人爽人人做我的可爱 | 国产 浪潮av性色四虎 | 人妻插b视频一区二区三区 | 国产精品亚洲lv粉色 | 亚洲狠狠色丁香婷婷综合 | 精品国产国产综合精品 | 亚洲日本va中文字幕 | 亚洲精品国偷拍自产在线观看蜜桃 | 久精品国产欧美亚洲色aⅴ大片 | 亚洲精品一区二区三区四区五区 | 亚洲码国产精品高潮在线 | 玩弄人妻少妇500系列视频 | 国产精品亚洲lv粉色 | 人妻熟女一区 | 亚洲国产精品一区二区美利坚 | 国产精品久久久 | 亚洲色大成网站www国产 | 97夜夜澡人人爽人人喊中国片 | 天堂亚洲2017在线观看 | 秋霞成人午夜鲁丝一区二区三区 | 装睡被陌生人摸出水好爽 | 成人性做爰aaa片免费看 | 日本xxxx色视频在线观看免费 | 在线欧美精品一区二区三区 | 国产极品美女高潮无套在线观看 | 国产亚洲人成在线播放 | 国产精品无码mv在线观看 | 日韩欧美群交p片內射中文 | 无码人妻精品一区二区三区下载 | 男女猛烈xx00免费视频试看 | 亚洲色成人中文字幕网站 | 疯狂三人交性欧美 | 精品aⅴ一区二区三区 | 欧美zoozzooz性欧美 | 久久久无码中文字幕久... | 久久精品中文闷骚内射 | 国产激情无码一区二区app | 色噜噜亚洲男人的天堂 | 在线亚洲高清揄拍自拍一品区 | 午夜福利电影 | 色综合久久久无码网中文 | 亚洲va欧美va天堂v国产综合 | 欧美一区二区三区视频在线观看 | 亚洲精品一区二区三区四区五区 | 熟妇激情内射com | 色综合久久中文娱乐网 | 中国大陆精品视频xxxx | 久久人人爽人人人人片 | 无码人妻出轨黑人中文字幕 | 国产农村乱对白刺激视频 | 领导边摸边吃奶边做爽在线观看 | 高中生自慰www网站 | 欧美高清在线精品一区 | 水蜜桃亚洲一二三四在线 | 中文字幕+乱码+中文字幕一区 | 欧美日韩久久久精品a片 | 少妇愉情理伦片bd | 老熟妇乱子伦牲交视频 | 久久熟妇人妻午夜寂寞影院 | 国产av剧情md精品麻豆 | 欧洲熟妇精品视频 | 国产口爆吞精在线视频 | 亚洲色www成人永久网址 | 国产区女主播在线观看 | 欧美老妇交乱视频在线观看 | 思思久久99热只有频精品66 | 东京热无码av男人的天堂 | 国产后入清纯学生妹 | 亚洲欧美中文字幕5发布 | 国产办公室秘书无码精品99 | 亚洲爆乳无码专区 | 免费人成网站视频在线观看 | 人妻有码中文字幕在线 | 真人与拘做受免费视频一 | 国产精品久久久久9999小说 | 一个人看的视频www在线 | 亚洲中文字幕va福利 | 亚洲精品久久久久avwww潮水 | 国产乱码精品一品二品 | 国产成人精品久久亚洲高清不卡 | 97精品国产97久久久久久免费 | 久久aⅴ免费观看 | 亚洲日韩一区二区 | 欧美性猛交xxxx富婆 | 久久国产精品萌白酱免费 | 亚洲欧洲日本综合aⅴ在线 | 日本精品高清一区二区 | 无码免费一区二区三区 | 中文字幕+乱码+中文字幕一区 | 欧美人与物videos另类 | 亚洲天堂2017无码中文 | 伊人久久大香线焦av综合影院 | 中文字幕无码乱人伦 | 亚洲狠狠色丁香婷婷综合 | 少妇性l交大片 | 女高中生第一次破苞av | 婷婷丁香六月激情综合啪 | 精品久久8x国产免费观看 | 少妇高潮喷潮久久久影院 | 国产人妖乱国产精品人妖 | 人人妻人人澡人人爽人人精品浪潮 | 午夜精品一区二区三区在线观看 | 一本久久a久久精品vr综合 | 欧美人与牲动交xxxx | 国产成人无码av一区二区 | 久久精品人人做人人综合试看 | 国产精品人人爽人人做我的可爱 | 俄罗斯老熟妇色xxxx | 日日鲁鲁鲁夜夜爽爽狠狠 | 亚洲精品鲁一鲁一区二区三区 | 好男人社区资源 | 99精品国产综合久久久久五月天 | 又大又硬又黄的免费视频 | 久久综合给久久狠狠97色 | 色情久久久av熟女人妻网站 | 在线观看免费人成视频 | 久久午夜无码鲁丝片 | 色五月丁香五月综合五月 | 成人无码视频在线观看网站 | 国产亚洲欧美日韩亚洲中文色 | 强伦人妻一区二区三区视频18 | 2019nv天堂香蕉在线观看 | 色综合视频一区二区三区 | 欧美性生交xxxxx久久久 | 久久综合香蕉国产蜜臀av | 久久久久免费精品国产 | 欧美人与物videos另类 | 无码av免费一区二区三区试看 | 亚洲欧美日韩国产精品一区二区 | 给我免费的视频在线观看 | 欧美熟妇另类久久久久久多毛 | 狠狠综合久久久久综合网 | 欧美高清在线精品一区 | 亚洲国产精品毛片av不卡在线 | 亚洲va中文字幕无码久久不卡 | 午夜肉伦伦影院 | 人人妻人人澡人人爽欧美一区 | 精品国产一区二区三区四区在线看 | 亚洲欧美国产精品专区久久 | 欧美乱妇无乱码大黄a片 | 免费乱码人妻系列无码专区 | 亚洲中文字幕av在天堂 | 国产精品人妻一区二区三区四 | 欧洲美熟女乱又伦 | 成人三级无码视频在线观看 | 荡女精品导航 |