久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問 生活随笔!

生活随笔

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

编程问答

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源码的全部內容,希望文章能夠幫你解決所遇到的問題。

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

久久精品无码一区二区三区 | 中国女人内谢69xxxxxa片 | 国产人妻大战黑人第1集 | 亚洲中文无码av永久不收费 | 大地资源网第二页免费观看 | 成人综合网亚洲伊人 | 成人无码影片精品久久久 | 久久综合激激的五月天 | 粉嫩少妇内射浓精videos | 少妇太爽了在线观看 | 狠狠色丁香久久婷婷综合五月 | 性做久久久久久久久 | 高清国产亚洲精品自在久久 | 人妻少妇精品无码专区二区 | 成在人线av无码免费 | 国产人妻精品午夜福利免费 | 亚洲色www成人永久网址 | 久久99精品国产麻豆 | 中文亚洲成a人片在线观看 | 国产亚洲精品精品国产亚洲综合 | 色一情一乱一伦一视频免费看 | aⅴ亚洲 日韩 色 图网站 播放 | 欧美激情内射喷水高潮 | 一区二区三区高清视频一 | 国产成人无码区免费内射一片色欲 | 亚洲成av人综合在线观看 | 色综合天天综合狠狠爱 | 国产精品久久久av久久久 | 国产特级毛片aaaaaaa高清 | 天干天干啦夜天干天2017 | 欧洲极品少妇 | 久久精品国产日本波多野结衣 | 亚洲а∨天堂久久精品2021 | 欧美人与动性行为视频 | 亚洲成av人综合在线观看 | 国产激情无码一区二区app | 亚洲最大成人网站 | 丰满人妻被黑人猛烈进入 | 色综合久久久久综合一本到桃花网 | 亚洲中文字幕无码中文字在线 | 午夜熟女插插xx免费视频 | 欧美精品在线观看 | 亚洲日韩中文字幕在线播放 | 少妇高潮一区二区三区99 | 老司机亚洲精品影院无码 | 精品久久8x国产免费观看 | 999久久久国产精品消防器材 | 精品国产乱码久久久久乱码 | 午夜福利电影 | 午夜精品一区二区三区在线观看 | 装睡被陌生人摸出水好爽 | 国产午夜手机精彩视频 | 国产热a欧美热a在线视频 | 亚洲成av人影院在线观看 | 人妻少妇精品无码专区二区 | 九九在线中文字幕无码 | 久久精品视频在线看15 | 免费看男女做好爽好硬视频 | 亚洲中文字幕无码中文字在线 | 国产9 9在线 | 中文 | 国产福利视频一区二区 | 一本久道高清无码视频 | 久久这里只有精品视频9 | 精品国产精品久久一区免费式 | 无遮挡啪啪摇乳动态图 | www国产亚洲精品久久久日本 | 亚洲成av人在线观看网址 | 波多野结衣av一区二区全免费观看 | 亚洲中文字幕在线无码一区二区 | 亚洲自偷自偷在线制服 | 国产97在线 | 亚洲 | 黑人巨大精品欧美黑寡妇 | 亚洲国产精品成人久久蜜臀 | 丰满人妻精品国产99aⅴ | 熟女少妇人妻中文字幕 | 亚洲综合另类小说色区 | 少女韩国电视剧在线观看完整 | 亚洲日韩精品欧美一区二区 | 国产成人无码区免费内射一片色欲 | 欧美精品一区二区精品久久 | 国内精品一区二区三区不卡 | 中文久久乱码一区二区 | 人妻尝试又大又粗久久 | 亚洲中文字幕乱码av波多ji | 成人无码视频在线观看网站 | 内射老妇bbwx0c0ck | 一本色道久久综合狠狠躁 | 国内综合精品午夜久久资源 | 精品国产国产综合精品 | 对白脏话肉麻粗话av | 天天拍夜夜添久久精品 | 熟妇激情内射com | 鲁鲁鲁爽爽爽在线视频观看 | 日韩少妇内射免费播放 | 亚洲综合另类小说色区 | 久久熟妇人妻午夜寂寞影院 | 中文字幕日韩精品一区二区三区 | av无码久久久久不卡免费网站 | 日本在线高清不卡免费播放 | 国产精华av午夜在线观看 | 亚洲自偷精品视频自拍 | 国产亚洲精品久久久久久国模美 | 丰满少妇熟乱xxxxx视频 | 欧美三级a做爰在线观看 | 无套内谢老熟女 | 国产办公室秘书无码精品99 | 樱花草在线社区www | 性欧美videos高清精品 | 午夜精品一区二区三区的区别 | 国产精品香蕉在线观看 | 一二三四在线观看免费视频 | 欧美亚洲日韩国产人成在线播放 | 欧洲熟妇精品视频 | 成在人线av无码免费 | 5858s亚洲色大成网站www | 亚洲精品无码人妻无码 | 中文字幕精品av一区二区五区 | 真人与拘做受免费视频 | 日韩人妻无码一区二区三区久久99 | 亚洲精品国偷拍自产在线观看蜜桃 | 国产精品对白交换视频 | 国产精品va在线播放 | 无码人妻精品一区二区三区下载 | 熟妇人妻无码xxx视频 | 亚洲一区二区观看播放 | 曰韩少妇内射免费播放 | 无套内谢的新婚少妇国语播放 | 国产两女互慰高潮视频在线观看 | 国产做国产爱免费视频 | 欧美性生交活xxxxxdddd | 久久国产精品偷任你爽任你 | 久久国产劲爆∧v内射 | 亚洲中文字幕无码中字 | 东京一本一道一二三区 | 精品乱码久久久久久久 | 精品偷自拍另类在线观看 | 激情内射亚州一区二区三区爱妻 | 中文字幕色婷婷在线视频 | 漂亮人妻洗澡被公强 日日躁 | 欧美日韩综合一区二区三区 | 亚洲人成网站在线播放942 | 亚洲色在线无码国产精品不卡 | 国产精品.xx视频.xxtv | 欧美一区二区三区视频在线观看 | 亚洲色欲色欲欲www在线 | 少妇人妻大乳在线视频 | 无码人妻精品一区二区三区不卡 | 少妇被粗大的猛进出69影院 | 国产疯狂伦交大片 | 国产色视频一区二区三区 | 久久亚洲中文字幕无码 | 成在人线av无码免观看麻豆 | 鲁鲁鲁爽爽爽在线视频观看 | 亚洲精品久久久久久一区二区 | 欧美 日韩 亚洲 在线 | 国产偷国产偷精品高清尤物 | 丰满妇女强制高潮18xxxx | 精品国产一区二区三区四区在线看 | 乱人伦人妻中文字幕无码久久网 | 激情亚洲一区国产精品 | 日本精品人妻无码免费大全 | 国精产品一区二区三区 | 亚洲欧洲中文日韩av乱码 | 国产av无码专区亚洲a∨毛片 | 秋霞成人午夜鲁丝一区二区三区 | 中文字幕+乱码+中文字幕一区 | 男女爱爱好爽视频免费看 | yw尤物av无码国产在线观看 | 亚洲区欧美区综合区自拍区 | 亚洲国产精品久久久天堂 | 少妇一晚三次一区二区三区 | 久久久久久av无码免费看大片 | 国产两女互慰高潮视频在线观看 | 少妇人妻大乳在线视频 | 欧美日本免费一区二区三区 | 两性色午夜视频免费播放 | 无码国模国产在线观看 | 中文毛片无遮挡高清免费 | 欧美人与物videos另类 | 97夜夜澡人人爽人人喊中国片 | 性生交片免费无码看人 | 中文无码成人免费视频在线观看 | 又湿又紧又大又爽a视频国产 | 99久久人妻精品免费二区 | 亚洲爆乳大丰满无码专区 | 中文字幕乱码中文乱码51精品 | 亚洲熟妇色xxxxx欧美老妇y | 人妻少妇精品视频专区 | 青草视频在线播放 | 自拍偷自拍亚洲精品10p | 一区二区三区高清视频一 | 性色欲情网站iwww九文堂 | 色欲av亚洲一区无码少妇 | 亚洲s色大片在线观看 | 日本饥渴人妻欲求不满 | 欧美一区二区三区视频在线观看 | 久久久久成人精品免费播放动漫 | 露脸叫床粗话东北少妇 | 久久亚洲a片com人成 | 日韩精品无码一区二区中文字幕 | 亚洲一区二区三区含羞草 | 亚洲成色在线综合网站 | 少妇愉情理伦片bd | 亚洲精品一区二区三区四区五区 | 麻花豆传媒剧国产免费mv在线 | 国产偷自视频区视频 | 久久精品中文字幕一区 | 欧美日本精品一区二区三区 | 国内揄拍国内精品少妇国语 | 日日摸天天摸爽爽狠狠97 | 秋霞成人午夜鲁丝一区二区三区 | 久久精品国产一区二区三区肥胖 | 国产肉丝袜在线观看 | 久久精品国产日本波多野结衣 | 亚洲乱码日产精品bd | 欧美国产亚洲日韩在线二区 | 国产成人综合在线女婷五月99播放 | 国产精品人妻一区二区三区四 | 麻花豆传媒剧国产免费mv在线 | 国产高潮视频在线观看 | 亚洲色偷偷男人的天堂 | 日韩av无码一区二区三区不卡 | 日本免费一区二区三区最新 | 色综合久久中文娱乐网 | 桃花色综合影院 | 亚洲一区二区三区含羞草 | 国产精品无码一区二区三区不卡 | 欧美日本免费一区二区三区 | 久久久久se色偷偷亚洲精品av | 欧美喷潮久久久xxxxx | 国产97人人超碰caoprom | 东京热无码av男人的天堂 | 人人澡人人透人人爽 | 国产精品久久久久7777 | 小鲜肉自慰网站xnxx | 性生交大片免费看l | 久久久久久久久888 | 双乳奶水饱满少妇呻吟 | 精品久久久久香蕉网 | 日日躁夜夜躁狠狠躁 | 纯爱无遮挡h肉动漫在线播放 | 内射巨臀欧美在线视频 | 特黄特色大片免费播放器图片 | 久久精品一区二区三区四区 | 亚洲gv猛男gv无码男同 | 一本精品99久久精品77 | 精品aⅴ一区二区三区 | 国内精品人妻无码久久久影院蜜桃 | 2020久久香蕉国产线看观看 | 亚洲爆乳大丰满无码专区 | 日本熟妇乱子伦xxxx | 国产av无码专区亚洲awww | 国产小呦泬泬99精品 | 激情五月综合色婷婷一区二区 | 娇妻被黑人粗大高潮白浆 | 东京热无码av男人的天堂 | 秋霞成人午夜鲁丝一区二区三区 | 久久综合狠狠综合久久综合88 | 中文字幕人成乱码熟女app | 人人妻在人人 | 精品乱子伦一区二区三区 | 久久综合色之久久综合 | 麻花豆传媒剧国产免费mv在线 | 久久久久久久人妻无码中文字幕爆 | 日韩亚洲欧美中文高清在线 | 久久 国产 尿 小便 嘘嘘 | 欧美激情综合亚洲一二区 | 精品人人妻人人澡人人爽人人 | 国内精品久久久久久中文字幕 | 少妇人妻偷人精品无码视频 | 亚洲精品一区二区三区大桥未久 | 国产色视频一区二区三区 | 人人妻人人澡人人爽精品欧美 | 久久久亚洲欧洲日产国码αv | 真人与拘做受免费视频 | 亚洲国产成人a精品不卡在线 | 帮老师解开蕾丝奶罩吸乳网站 | 欧美喷潮久久久xxxxx | 中文无码成人免费视频在线观看 | 成年女人永久免费看片 | 亚洲成av人影院在线观看 | 亚欧洲精品在线视频免费观看 | 高潮毛片无遮挡高清免费 | 天堂а√在线中文在线 | 东京热一精品无码av | 午夜福利试看120秒体验区 | 国产在线无码精品电影网 | 性史性农村dvd毛片 | 中国女人内谢69xxxxxa片 | 日韩视频 中文字幕 视频一区 | 四虎国产精品免费久久 | 成 人 网 站国产免费观看 | 水蜜桃亚洲一二三四在线 | 亚洲人成影院在线无码按摩店 | 四虎国产精品免费久久 | 欧美老人巨大xxxx做受 | 国产av一区二区精品久久凹凸 | 99er热精品视频 | 亚洲欧美日韩国产精品一区二区 | 正在播放老肥熟妇露脸 | 国产情侣作爱视频免费观看 | 帮老师解开蕾丝奶罩吸乳网站 | 久久99精品国产.久久久久 | 人人妻人人藻人人爽欧美一区 | 高潮喷水的毛片 | 狂野欧美性猛交免费视频 | 亚洲色大成网站www | 丝袜 中出 制服 人妻 美腿 | 国产免费久久精品国产传媒 | 亚洲色欲色欲天天天www | 国产69精品久久久久app下载 | 中文字幕无码热在线视频 | 亚洲日韩中文字幕在线播放 | 精品国精品国产自在久国产87 | 久久国产精品精品国产色婷婷 | 久久婷婷五月综合色国产香蕉 | 亚洲精品一区二区三区在线观看 | 国产成人无码av在线影院 | 亚洲欧洲中文日韩av乱码 | 国产精品怡红院永久免费 | 国产另类ts人妖一区二区 | 一个人免费观看的www视频 | 黑人粗大猛烈进出高潮视频 | 国产舌乚八伦偷品w中 | 小泽玛莉亚一区二区视频在线 | 国产午夜福利100集发布 | 国产精品久久精品三级 | 亚洲自偷精品视频自拍 | 欧美一区二区三区视频在线观看 | 97精品国产97久久久久久免费 | 午夜丰满少妇性开放视频 | 精品无人区无码乱码毛片国产 | 亲嘴扒胸摸屁股激烈网站 | 久久综合色之久久综合 | 中文精品无码中文字幕无码专区 | 骚片av蜜桃精品一区 | 国产97人人超碰caoprom | 欧美人与动性行为视频 | 婷婷五月综合激情中文字幕 | 欧洲熟妇精品视频 | 内射爽无广熟女亚洲 | 男人扒开女人内裤强吻桶进去 | 99久久婷婷国产综合精品青草免费 | 国产特级毛片aaaaaa高潮流水 | 欧美人与禽猛交狂配 | 国产激情精品一区二区三区 | 一本精品99久久精品77 | 免费看男女做好爽好硬视频 | 国产猛烈高潮尖叫视频免费 | 国产精品无码永久免费888 | 色情久久久av熟女人妻网站 | 黑人大群体交免费视频 | 亚无码乱人伦一区二区 | 久久www免费人成人片 | 中文亚洲成a人片在线观看 | 18黄暴禁片在线观看 | 国产极品美女高潮无套在线观看 | 精品人妻中文字幕有码在线 | 亚洲色偷偷偷综合网 | 中文字幕乱码亚洲无线三区 | 免费网站看v片在线18禁无码 | 中文无码精品a∨在线观看不卡 | 中文字幕无码视频专区 | 无码人妻精品一区二区三区不卡 | 亚洲精品国偷拍自产在线麻豆 | 精品国产一区二区三区四区在线看 | 人妻无码αv中文字幕久久琪琪布 | 天堂亚洲2017在线观看 | 亚洲gv猛男gv无码男同 | 国内少妇偷人精品视频 | 久久这里只有精品视频9 | 国产一区二区三区日韩精品 | 久久午夜夜伦鲁鲁片无码免费 | 四虎国产精品免费久久 | 亚洲 欧美 激情 小说 另类 | 99精品久久毛片a片 | 日本va欧美va欧美va精品 | yw尤物av无码国产在线观看 | 最近免费中文字幕中文高清百度 | 六月丁香婷婷色狠狠久久 | 老司机亚洲精品影院 | 正在播放东北夫妻内射 | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 亚洲а∨天堂久久精品2021 | 欧洲美熟女乱又伦 | 国色天香社区在线视频 | 宝宝好涨水快流出来免费视频 | 亚洲精品国产精品乱码视色 | 97夜夜澡人人双人人人喊 | 露脸叫床粗话东北少妇 | 亚洲国产高清在线观看视频 | 亚洲日本va中文字幕 | 好屌草这里只有精品 | 国产精品二区一区二区aⅴ污介绍 | 四虎影视成人永久免费观看视频 | 一区二区三区高清视频一 | 激情爆乳一区二区三区 | 亚洲综合无码一区二区三区 | 国产女主播喷水视频在线观看 | 成在人线av无码免费 | 97夜夜澡人人爽人人喊中国片 | 欧美日本精品一区二区三区 | 狠狠亚洲超碰狼人久久 | 亚洲日韩av一区二区三区中文 | 欧美第一黄网免费网站 | 永久免费观看国产裸体美女 | 国产内射老熟女aaaa | 国产精品高潮呻吟av久久 | 在线观看欧美一区二区三区 | 任你躁在线精品免费 | 青草视频在线播放 | 亚洲日韩av一区二区三区中文 | 装睡被陌生人摸出水好爽 | 久久天天躁狠狠躁夜夜免费观看 | 久久久久久av无码免费看大片 | 国产亚洲视频中文字幕97精品 | 国产亚洲精品久久久ai换 | 在线欧美精品一区二区三区 | 性欧美熟妇videofreesex | 又粗又大又硬又长又爽 | 人人妻在人人 | 亚洲成在人网站无码天堂 | 狂野欧美性猛交免费视频 | 国产一区二区三区影院 | 荫蒂被男人添的好舒服爽免费视频 | 亚洲欧洲日本无在线码 | 亚洲国产精华液网站w | 樱花草在线播放免费中文 | 四虎4hu永久免费 | 亚洲欧美国产精品专区久久 | 成人免费视频在线观看 | 国产精品-区区久久久狼 | 少妇邻居内射在线 | 亚洲大尺度无码无码专区 | 日韩视频 中文字幕 视频一区 | 乱码av麻豆丝袜熟女系列 | 人人妻人人藻人人爽欧美一区 | 精品乱子伦一区二区三区 | 亚洲欧美精品伊人久久 | 久久久久av无码免费网 | 久久精品国产一区二区三区肥胖 | 免费无码肉片在线观看 | 88国产精品欧美一区二区三区 | 亚洲日韩一区二区三区 | 亚洲性无码av中文字幕 | 撕开奶罩揉吮奶头视频 | 国产午夜亚洲精品不卡下载 | 性欧美牲交xxxxx视频 | 国产肉丝袜在线观看 | 西西人体www44rt大胆高清 | 中文久久乱码一区二区 | 亚洲国产成人a精品不卡在线 | 无码人妻丰满熟妇区毛片18 | 一个人免费观看的www视频 | 久久久久久亚洲精品a片成人 | 亚洲精品国产第一综合99久久 | 精品偷自拍另类在线观看 | 中文字幕日产无线码一区 | 宝宝好涨水快流出来免费视频 | 久久久久99精品国产片 | 精品一区二区三区波多野结衣 | 国内少妇偷人精品视频 | 1000部夫妻午夜免费 | 波多野结衣aⅴ在线 | 天天躁夜夜躁狠狠是什么心态 | 亚洲欧美精品aaaaaa片 | 中文字幕乱码人妻无码久久 | 丰满少妇弄高潮了www | 亚洲无人区午夜福利码高清完整版 | 伊在人天堂亚洲香蕉精品区 | 沈阳熟女露脸对白视频 | 国产激情无码一区二区app | 67194成是人免费无码 | 亚洲男人av天堂午夜在 | 对白脏话肉麻粗话av | 5858s亚洲色大成网站www | 人人妻在人人 | 国产精品高潮呻吟av久久4虎 | 人人妻人人澡人人爽欧美一区九九 | 无码人妻丰满熟妇区五十路百度 | 粉嫩少妇内射浓精videos | 精品久久久久香蕉网 | 在线天堂新版最新版在线8 | 国产一区二区三区四区五区加勒比 | 国产偷国产偷精品高清尤物 | 青青草原综合久久大伊人精品 | 亚洲熟悉妇女xxx妇女av | 亚洲精品一区二区三区在线 | 福利一区二区三区视频在线观看 | 亚洲高清偷拍一区二区三区 | 乌克兰少妇性做爰 | 国产精品内射视频免费 | 亚洲精品中文字幕乱码 | 99久久精品国产一区二区蜜芽 | av在线亚洲欧洲日产一区二区 | 永久免费观看美女裸体的网站 | 少妇一晚三次一区二区三区 | 一个人看的视频www在线 | 日韩精品一区二区av在线 | 精品乱码久久久久久久 | 国产精品鲁鲁鲁 | 亚洲国产欧美国产综合一区 | 亚洲va中文字幕无码久久不卡 | 精品欧美一区二区三区久久久 | 伊人久久大香线蕉午夜 | 一本久道久久综合婷婷五月 | 久久精品国产大片免费观看 | 初尝人妻少妇中文字幕 | 丰满人妻精品国产99aⅴ | 97精品国产97久久久久久免费 | 国产亚洲欧美在线专区 | 国产精品久久久久久亚洲毛片 | 亚洲va欧美va天堂v国产综合 | 久久国产36精品色熟妇 | 成人无码影片精品久久久 | 久久五月精品中文字幕 | 精品亚洲成av人在线观看 | 日本高清一区免费中文视频 | 成人精品视频一区二区 | 免费无码一区二区三区蜜桃大 | 漂亮人妻洗澡被公强 日日躁 | 在线天堂新版最新版在线8 | 国产人妖乱国产精品人妖 | 小泽玛莉亚一区二区视频在线 | 久久亚洲国产成人精品性色 | 久久zyz资源站无码中文动漫 | 国产精品内射视频免费 | 国产色在线 | 国产 | 自拍偷自拍亚洲精品被多人伦好爽 | 妺妺窝人体色www婷婷 | √8天堂资源地址中文在线 | 国产av一区二区三区最新精品 | 亚洲日韩av一区二区三区中文 | 欧美日韩精品 | 国产精品理论片在线观看 | 欧美丰满老熟妇xxxxx性 | 日本肉体xxxx裸交 | 国产av剧情md精品麻豆 | 日本肉体xxxx裸交 | 亚洲热妇无码av在线播放 | 久久天天躁夜夜躁狠狠 | 波多野结衣av一区二区全免费观看 | 亚洲gv猛男gv无码男同 | 日本一区二区三区免费高清 | 人妻人人添人妻人人爱 | 成人欧美一区二区三区黑人 | 中文字幕乱码人妻二区三区 | 久久久久国色av免费观看性色 | 久久99精品国产.久久久久 | 狠狠噜狠狠狠狠丁香五月 | 亚洲中文字幕无码一久久区 | 天干天干啦夜天干天2017 | 亚洲男女内射在线播放 | 粉嫩少妇内射浓精videos | 性啪啪chinese东北女人 | 精品久久久无码中文字幕 | 99久久久无码国产精品免费 | 亚洲欧美综合区丁香五月小说 | 精品人妻人人做人人爽夜夜爽 | 伊人久久大香线蕉av一区二区 | 丝袜人妻一区二区三区 | 草草网站影院白丝内射 | 啦啦啦www在线观看免费视频 | 国产亚洲精品久久久ai换 | 久在线观看福利视频 | 国产精品久久久一区二区三区 | 亚洲欧美日韩综合久久久 | 一本色道久久综合亚洲精品不卡 | 一本久道高清无码视频 | 国产在线精品一区二区高清不卡 | 欧洲美熟女乱又伦 | 沈阳熟女露脸对白视频 | 国产亚洲精品精品国产亚洲综合 | yw尤物av无码国产在线观看 | 精品国产福利一区二区 | 水蜜桃亚洲一二三四在线 | 性色欲情网站iwww九文堂 | 国产av一区二区三区最新精品 | 最近免费中文字幕中文高清百度 | 国产色xx群视频射精 | 精品国产乱码久久久久乱码 | 在线观看免费人成视频 | 国产成人av免费观看 | 国产亚洲精品久久久久久大师 | 一本久久a久久精品vr综合 | 亚洲精品一区二区三区婷婷月 | 天下第一社区视频www日本 | 亚洲国产高清在线观看视频 | 国产精品人人妻人人爽 | 中文字幕av无码一区二区三区电影 | 少妇性俱乐部纵欲狂欢电影 | 中文字幕人妻无码一区二区三区 | 水蜜桃色314在线观看 | 给我免费的视频在线观看 | 国产精品美女久久久网av | 亚洲а∨天堂久久精品2021 | 国产xxx69麻豆国语对白 | 扒开双腿吃奶呻吟做受视频 | 免费乱码人妻系列无码专区 | 无码一区二区三区在线观看 | 亚洲色www成人永久网址 | 女人和拘做爰正片视频 | 国产莉萝无码av在线播放 | 欧美野外疯狂做受xxxx高潮 | 日韩欧美群交p片內射中文 | 精品久久久无码人妻字幂 | 国产免费久久久久久无码 | 一二三四在线观看免费视频 | 免费看少妇作爱视频 | 狠狠综合久久久久综合网 | 免费无码一区二区三区蜜桃大 | 欧美熟妇另类久久久久久不卡 | 成人免费视频一区二区 | 在线欧美精品一区二区三区 | 午夜福利试看120秒体验区 | 婷婷综合久久中文字幕蜜桃三电影 | 亚洲精品一区二区三区在线 | 国产做国产爱免费视频 | 给我免费的视频在线观看 | 爽爽影院免费观看 | 两性色午夜免费视频 | 青青青爽视频在线观看 | 久久午夜夜伦鲁鲁片无码免费 | 亚洲熟悉妇女xxx妇女av | 免费视频欧美无人区码 | 99久久久无码国产精品免费 | 精品国偷自产在线 | 日本精品少妇一区二区三区 | 无遮挡啪啪摇乳动态图 | 97夜夜澡人人双人人人喊 | 在线成人www免费观看视频 | 国产一精品一av一免费 | 国产女主播喷水视频在线观看 | 鲁鲁鲁爽爽爽在线视频观看 | 好爽又高潮了毛片免费下载 | 波多野结衣一区二区三区av免费 | 乱人伦中文视频在线观看 | 精品厕所偷拍各类美女tp嘘嘘 | 熟妇女人妻丰满少妇中文字幕 | 四十如虎的丰满熟妇啪啪 | 爽爽影院免费观看 | 午夜无码人妻av大片色欲 | 日本xxxx色视频在线观看免费 | 成人免费视频视频在线观看 免费 | 国产午夜无码视频在线观看 | 亚洲狠狠婷婷综合久久 | 强伦人妻一区二区三区视频18 | 亚洲精品成a人在线观看 | 无遮挡啪啪摇乳动态图 | 中文精品无码中文字幕无码专区 | 女人高潮内射99精品 | 久久精品国产一区二区三区肥胖 | 天堂а√在线地址中文在线 | 熟妇激情内射com | 又色又爽又黄的美女裸体网站 | 精品无码成人片一区二区98 | 宝宝好涨水快流出来免费视频 | 天天躁夜夜躁狠狠是什么心态 | 欧美肥老太牲交大战 | 久久午夜无码鲁丝片秋霞 | 国产女主播喷水视频在线观看 | 成人免费无码大片a毛片 | 中文亚洲成a人片在线观看 | 国产精品美女久久久久av爽李琼 | 麻豆av传媒蜜桃天美传媒 | 国产精品亚洲专区无码不卡 | 99久久人妻精品免费一区 | 玩弄人妻少妇500系列视频 | 久久精品国产日本波多野结衣 | 成人aaa片一区国产精品 | 人妻插b视频一区二区三区 | 久久国产精品精品国产色婷婷 | 人人妻人人澡人人爽欧美精品 | 丰满妇女强制高潮18xxxx | 天下第一社区视频www日本 | 欧美人与动性行为视频 | 国产亚洲精品久久久久久久 | 亚洲精品鲁一鲁一区二区三区 | 久久亚洲日韩精品一区二区三区 | 亚洲日本va中文字幕 | 日韩成人一区二区三区在线观看 | 亚洲啪av永久无码精品放毛片 | 一个人看的视频www在线 | 亚洲伊人久久精品影院 | 欧美丰满熟妇xxxx | 国产成人无码a区在线观看视频app | 日韩亚洲欧美精品综合 | 无码av免费一区二区三区试看 | 国产成人一区二区三区在线观看 | 亚洲の无码国产の无码影院 | 亚洲国产精品无码久久久久高潮 | 日本www一道久久久免费榴莲 | 亚洲а∨天堂久久精品2021 | 精品无码国产一区二区三区av | 国产无遮挡又黄又爽免费视频 | 日本大乳高潮视频在线观看 | 国产精品爱久久久久久久 | 亚洲一区二区三区含羞草 | 在线播放免费人成毛片乱码 | 欧美放荡的少妇 | 亚洲区欧美区综合区自拍区 | 欧美日本免费一区二区三区 | 鲁大师影院在线观看 | 精品无码国产自产拍在线观看蜜 | 久久久中文久久久无码 | 亚洲小说春色综合另类 | 国产午夜视频在线观看 | 天天拍夜夜添久久精品 | a片在线免费观看 | 国产精品久久久久无码av色戒 | 国产麻豆精品一区二区三区v视界 | 牛和人交xxxx欧美 | 捆绑白丝粉色jk震动捧喷白浆 | 秋霞成人午夜鲁丝一区二区三区 | 六十路熟妇乱子伦 | 久久久久久久女国产乱让韩 | 国产精品丝袜黑色高跟鞋 | 男女下面进入的视频免费午夜 | 四十如虎的丰满熟妇啪啪 | 国产人妻精品午夜福利免费 | 日韩精品a片一区二区三区妖精 | 又大又硬又黄的免费视频 | 欧美日本日韩 | 人人爽人人澡人人高潮 | 久久精品99久久香蕉国产色戒 | 国产特级毛片aaaaaaa高清 | 性色欲网站人妻丰满中文久久不卡 | 国产午夜福利亚洲第一 | 精品国产精品久久一区免费式 | 亚洲啪av永久无码精品放毛片 | 无码任你躁久久久久久久 | 宝宝好涨水快流出来免费视频 | 日本肉体xxxx裸交 | 双乳奶水饱满少妇呻吟 | 一个人看的视频www在线 | 亚洲一区二区三区国产精华液 | av小次郎收藏 | 亚洲性无码av中文字幕 | 亚洲第一无码av无码专区 | 日韩av无码中文无码电影 | 国产av一区二区精品久久凹凸 | 久久成人a毛片免费观看网站 | 国产无遮挡吃胸膜奶免费看 | 国产亚洲视频中文字幕97精品 | 国内丰满熟女出轨videos | 天天综合网天天综合色 | 成熟女人特级毛片www免费 | 人人澡人人透人人爽 | 88国产精品欧美一区二区三区 | 日韩av无码一区二区三区 | 在线观看免费人成视频 | 熟女俱乐部五十路六十路av | a在线亚洲男人的天堂 | 国产九九九九九九九a片 | 少妇邻居内射在线 | 天堂久久天堂av色综合 | 日日噜噜噜噜夜夜爽亚洲精品 | 国产真人无遮挡作爱免费视频 | 国产人妻精品午夜福利免费 | 人人澡人摸人人添 | 日韩欧美群交p片內射中文 | 麻豆国产97在线 | 欧洲 | 国产人妖乱国产精品人妖 | 亚洲精品国产品国语在线观看 | 国产 精品 自在自线 | 国产香蕉尹人视频在线 | 国产va免费精品观看 | 亚洲第一网站男人都懂 | 日本一区二区更新不卡 | 亚洲人亚洲人成电影网站色 | 亚洲精品一区二区三区在线 | 最新版天堂资源中文官网 | 国产在线精品一区二区高清不卡 | 欧美zoozzooz性欧美 | 波多野结衣av一区二区全免费观看 | 亚洲中文字幕在线观看 | 狠狠色色综合网站 | 亚洲精品国产第一综合99久久 | 88国产精品欧美一区二区三区 | 日本一卡2卡3卡四卡精品网站 | 中文字幕人成乱码熟女app | 青春草在线视频免费观看 | 国产sm调教视频在线观看 | 狠狠色噜噜狠狠狠狠7777米奇 | 131美女爱做视频 | 国产午夜亚洲精品不卡 | av人摸人人人澡人人超碰下载 | 欧美乱妇无乱码大黄a片 | 好屌草这里只有精品 | 俺去俺来也在线www色官网 | 牲欲强的熟妇农村老妇女视频 | 久久久精品成人免费观看 | 日日夜夜撸啊撸 | 国产 浪潮av性色四虎 | 精品久久8x国产免费观看 | 成人性做爰aaa片免费看不忠 | 中文字幕中文有码在线 | 亚洲一区av无码专区在线观看 | 中文字幕色婷婷在线视频 | 国产成人久久精品流白浆 | 国产艳妇av在线观看果冻传媒 | 人妻无码久久精品人妻 | 久久成人a毛片免费观看网站 | 久久久久成人片免费观看蜜芽 | 日本在线高清不卡免费播放 | 国产成人综合在线女婷五月99播放 | 午夜不卡av免费 一本久久a久久精品vr综合 | 精品人妻av区 | 人人妻人人澡人人爽人人精品 | 国产免费无码一区二区视频 | 中文字幕 亚洲精品 第1页 | 一二三四社区在线中文视频 | 亚洲最大成人网站 | 国产精品人人妻人人爽 | 樱花草在线社区www | 国产欧美熟妇另类久久久 | 特黄特色大片免费播放器图片 | 亚洲色欲色欲天天天www | 人人妻人人藻人人爽欧美一区 | 亚洲精品欧美二区三区中文字幕 | 免费观看黄网站 | 水蜜桃色314在线观看 | 少妇性俱乐部纵欲狂欢电影 | 啦啦啦www在线观看免费视频 | 成年女人永久免费看片 | 国产亚洲视频中文字幕97精品 | 国产香蕉97碰碰久久人人 | 午夜福利试看120秒体验区 | 久久aⅴ免费观看 | 亚洲人成网站免费播放 | 无码纯肉视频在线观看 | 国产人妻精品一区二区三区 | 秋霞特色aa大片 | 亚洲成色在线综合网站 | 99re在线播放 | 荫蒂添的好舒服视频囗交 | 无套内谢老熟女 | 国产一精品一av一免费 | 日本在线高清不卡免费播放 | 精品国偷自产在线视频 | 欧美大屁股xxxxhd黑色 | 精品无码成人片一区二区98 | 99er热精品视频 | a片免费视频在线观看 | 免费视频欧美无人区码 | 亚洲欧美日韩国产精品一区二区 | 久久久av男人的天堂 | 精品无人国产偷自产在线 | 九九热爱视频精品 | 日本熟妇人妻xxxxx人hd | 亚洲aⅴ无码成人网站国产app | 日本精品少妇一区二区三区 | 妺妺窝人体色www在线小说 | 蜜臀aⅴ国产精品久久久国产老师 | 日本免费一区二区三区最新 | 51国偷自产一区二区三区 | 少妇无码av无码专区在线观看 | 亚洲精品中文字幕乱码 | 99久久精品无码一区二区毛片 | 任你躁在线精品免费 | 欧美性生交xxxxx久久久 | 亚洲娇小与黑人巨大交 | 国产精品美女久久久久av爽李琼 | 熟妇人妻中文av无码 | 日韩无码专区 | 51国偷自产一区二区三区 | 国产精品久久久久影院嫩草 | 激情综合激情五月俺也去 | 久久精品人妻少妇一区二区三区 | 精品亚洲韩国一区二区三区 | 精品国产一区二区三区av 性色 | 亚洲区欧美区综合区自拍区 | 日韩精品久久久肉伦网站 | 国内精品一区二区三区不卡 | 久久久久成人片免费观看蜜芽 | www一区二区www免费 | 中文字幕乱妇无码av在线 | 久久亚洲日韩精品一区二区三区 | 国产97在线 | 亚洲 | 色一情一乱一伦 | 欧美三级a做爰在线观看 | 亚洲区小说区激情区图片区 | 国产精品va在线观看无码 | 欧美乱妇无乱码大黄a片 | 亚洲の无码国产の无码步美 | 欧美大屁股xxxxhd黑色 | 国产精品第一国产精品 | 国产成人精品一区二区在线小狼 | 国产精品久久久久久久9999 | 中国女人内谢69xxxx | 清纯唯美经典一区二区 | 亚洲欧美综合区丁香五月小说 | 国产人妖乱国产精品人妖 | 国产成人精品三级麻豆 | 亚洲大尺度无码无码专区 | 日本精品少妇一区二区三区 | 未满小14洗澡无码视频网站 | 东京无码熟妇人妻av在线网址 | 老熟妇仑乱视频一区二区 | 中文字幕av无码一区二区三区电影 | 无码av岛国片在线播放 | 扒开双腿吃奶呻吟做受视频 | 麻豆国产人妻欲求不满谁演的 | 东京一本一道一二三区 | 午夜精品久久久久久久久 | 扒开双腿疯狂进出爽爽爽视频 | 俺去俺来也在线www色官网 | 国产成人av免费观看 | 西西人体www44rt大胆高清 | 丰满岳乱妇在线观看中字无码 | 国精品人妻无码一区二区三区蜜柚 | 中文字幕无码人妻少妇免费 | 久青草影院在线观看国产 | 国产精品无码一区二区桃花视频 | 中文亚洲成a人片在线观看 | 久久天天躁夜夜躁狠狠 | 国产精品亚洲一区二区三区喷水 | 色综合久久中文娱乐网 | 熟女俱乐部五十路六十路av | 中文字幕无码乱人伦 | 精品一区二区三区无码免费视频 | 久久婷婷五月综合色国产香蕉 | 国产内射爽爽大片视频社区在线 | 丰满少妇高潮惨叫视频 | 亚洲国产精品成人久久蜜臀 | 青青久在线视频免费观看 | 无码av免费一区二区三区试看 | 性生交大片免费看l | 亚洲日韩av片在线观看 | 人人妻人人澡人人爽人人精品 | 沈阳熟女露脸对白视频 | 精品国偷自产在线视频 | 搡女人真爽免费视频大全 | 中文字幕无线码 | 国产亚洲精品久久久久久久 | 少女韩国电视剧在线观看完整 | 蜜桃av抽搐高潮一区二区 | 亚洲熟妇色xxxxx欧美老妇 | 国产电影无码午夜在线播放 | 最近中文2019字幕第二页 | 久久久久久a亚洲欧洲av冫 | 中文字幕亚洲情99在线 | 永久免费观看国产裸体美女 | 久久精品国产一区二区三区肥胖 | 夜夜夜高潮夜夜爽夜夜爰爰 | 真人与拘做受免费视频一 | 国产 精品 自在自线 | 少妇一晚三次一区二区三区 | 国产办公室秘书无码精品99 | 动漫av一区二区在线观看 | 亚洲精品久久久久久一区二区 | 免费人成在线视频无码 | 色婷婷综合中文久久一本 | 亲嘴扒胸摸屁股激烈网站 | 国产熟妇另类久久久久 | 粗大的内捧猛烈进出视频 | 蜜桃视频插满18在线观看 | 亚洲成a人一区二区三区 | 日韩无套无码精品 | 无码纯肉视频在线观看 | 少妇人妻大乳在线视频 | 欧美三级不卡在线观看 | 国产莉萝无码av在线播放 | 国产高清av在线播放 | 亚洲色欲色欲欲www在线 | 在线观看免费人成视频 | 性生交大片免费看l | 日本欧美一区二区三区乱码 | 亚洲一区av无码专区在线观看 | 国产精品亚洲专区无码不卡 | 天天燥日日燥 | 夜精品a片一区二区三区无码白浆 | 久久精品女人天堂av免费观看 | 亚洲欧洲日本综合aⅴ在线 | 玩弄中年熟妇正在播放 | 久久久国产精品无码免费专区 | 亚洲精品综合一区二区三区在线 | 亚洲色无码一区二区三区 | 亚洲国产精品久久久天堂 | 99精品久久毛片a片 | 成人无码视频免费播放 | 日本护士xxxxhd少妇 | 国产人成高清在线视频99最全资源 | 精品久久久无码人妻字幂 | 日韩无套无码精品 | 风流少妇按摩来高潮 | 大乳丰满人妻中文字幕日本 | 影音先锋中文字幕无码 | 在线播放免费人成毛片乱码 | 欧美变态另类xxxx | 欧美熟妇另类久久久久久多毛 | 国产口爆吞精在线视频 | 99riav国产精品视频 | 国内揄拍国内精品少妇国语 | 亚洲精品中文字幕 | 超碰97人人做人人爱少妇 | 精品国产一区二区三区四区 | 中文精品无码中文字幕无码专区 | 55夜色66夜色国产精品视频 | 嫩b人妻精品一区二区三区 | 强奷人妻日本中文字幕 | 国产精品香蕉在线观看 | 午夜嘿嘿嘿影院 | 丰满少妇女裸体bbw | aⅴ在线视频男人的天堂 | 嫩b人妻精品一区二区三区 | 免费无码一区二区三区蜜桃大 | 无码午夜成人1000部免费视频 | 国产成人午夜福利在线播放 | 色综合久久久无码中文字幕 | 女高中生第一次破苞av | 久久综合香蕉国产蜜臀av | 无码福利日韩神码福利片 | 中文字幕乱码亚洲无线三区 | 国产一区二区三区四区五区加勒比 | 成在人线av无码免观看麻豆 | 亚洲色欲久久久综合网东京热 | 丰满少妇人妻久久久久久 | 国产麻豆精品精东影业av网站 | 日本精品少妇一区二区三区 | 午夜理论片yy44880影院 | 2020久久超碰国产精品最新 | 欧美国产日韩亚洲中文 | 最新国产乱人伦偷精品免费网站 | 国产亚洲美女精品久久久2020 | 国内精品久久久久久中文字幕 | 丰满少妇高潮惨叫视频 | 亚洲精品国产第一综合99久久 | 国产精品久久国产三级国 | 久久久久人妻一区精品色欧美 | 夜夜夜高潮夜夜爽夜夜爰爰 | 久久精品国产日本波多野结衣 | 国产亲子乱弄免费视频 | 久久久久久国产精品无码下载 | 少妇被黑人到高潮喷出白浆 | 老熟妇仑乱视频一区二区 | 中文字幕 人妻熟女 | 99国产精品白浆在线观看免费 | 亚洲国产欧美日韩精品一区二区三区 | 欧美日韩亚洲国产精品 | 国产精品久久久久7777 | 女高中生第一次破苞av | 久久午夜无码鲁丝片午夜精品 | 亚洲精品国产品国语在线观看 | 久久综合色之久久综合 | 好爽又高潮了毛片免费下载 | 精品乱子伦一区二区三区 | 日日噜噜噜噜夜夜爽亚洲精品 | 99久久久无码国产精品免费 | 蜜臀av无码人妻精品 | 欧美熟妇另类久久久久久多毛 | 亚洲国产精品久久久久久 | 中文字幕人妻无码一区二区三区 | 国产sm调教视频在线观看 | 亚洲欧洲日本无在线码 | 中文字幕日产无线码一区 | 精品国产福利一区二区 | 国产亚洲精品久久久久久久 | 国产精品视频免费播放 | 亚洲热妇无码av在线播放 | 久久久久国色av免费观看性色 | 俄罗斯老熟妇色xxxx | 天天躁日日躁狠狠躁免费麻豆 | 好屌草这里只有精品 | 99久久99久久免费精品蜜桃 | 熟女俱乐部五十路六十路av | av无码电影一区二区三区 | 玩弄中年熟妇正在播放 | 天天躁日日躁狠狠躁免费麻豆 | 天堂一区人妻无码 | 国产绳艺sm调教室论坛 | www国产亚洲精品久久久日本 | 亚洲经典千人经典日产 | 国产综合在线观看 | 女人被爽到呻吟gif动态图视看 | 国产av一区二区精品久久凹凸 | 国产黄在线观看免费观看不卡 | 日日天干夜夜狠狠爱 | 亚洲一区二区三区偷拍女厕 | 欧美 日韩 人妻 高清 中文 | 我要看www免费看插插视频 | 自拍偷自拍亚洲精品10p | 欧美日韩一区二区综合 | 欧美国产日韩亚洲中文 | 国产人妻久久精品二区三区老狼 | 天天躁日日躁狠狠躁免费麻豆 | 性欧美牲交在线视频 | 色婷婷av一区二区三区之红樱桃 | 丰满少妇女裸体bbw | 亚洲小说图区综合在线 | 欧美猛少妇色xxxxx | 女人色极品影院 | 人妻人人添人妻人人爱 | 久久 国产 尿 小便 嘘嘘 | 特黄特色大片免费播放器图片 | 欧美黑人乱大交 | 黑人大群体交免费视频 | 熟妇人妻无乱码中文字幕 | 国产热a欧美热a在线视频 | 精品久久久久久人妻无码中文字幕 | 99久久精品国产一区二区蜜芽 | 日本精品久久久久中文字幕 | 天天躁夜夜躁狠狠是什么心态 | 大乳丰满人妻中文字幕日本 | 18精品久久久无码午夜福利 | 国产精品对白交换视频 | 日本饥渴人妻欲求不满 | 骚片av蜜桃精品一区 | 小泽玛莉亚一区二区视频在线 | 色婷婷久久一区二区三区麻豆 | 亚洲狠狠婷婷综合久久 | 天下第一社区视频www日本 | 俄罗斯老熟妇色xxxx | 国产高清不卡无码视频 | 国产亚洲欧美日韩亚洲中文色 | 水蜜桃色314在线观看 | 精品国产麻豆免费人成网站 | 国产凸凹视频一区二区 | 熟女少妇人妻中文字幕 | 狂野欧美性猛交免费视频 | 黑森林福利视频导航 | 99视频精品全部免费免费观看 | 精品国产一区二区三区av 性色 | 理论片87福利理论电影 | 久久精品人妻少妇一区二区三区 | 欧美人与物videos另类 | 国产精品-区区久久久狼 | 波多野结衣一区二区三区av免费 | 波多野结衣高清一区二区三区 | 中文字幕人妻无码一夲道 | 无码av免费一区二区三区试看 | 中文字幕乱码人妻无码久久 | 帮老师解开蕾丝奶罩吸乳网站 | 色 综合 欧美 亚洲 国产 | 欧美阿v高清资源不卡在线播放 | 欧美国产日产一区二区 | 国产精品久久精品三级 | 精品国产一区二区三区四区 | 欧美肥老太牲交大战 | 东京热男人av天堂 | 亚洲色大成网站www | 亚洲爆乳精品无码一区二区三区 | 日韩精品久久久肉伦网站 | 精品国产福利一区二区 | 欧美一区二区三区视频在线观看 | 鲁一鲁av2019在线 | 人妻少妇精品无码专区二区 | 清纯唯美经典一区二区 | 亚洲区小说区激情区图片区 | 久久国产精品精品国产色婷婷 | 亚洲国产精华液网站w | 麻豆av传媒蜜桃天美传媒 | 国产精品-区区久久久狼 | 玩弄中年熟妇正在播放 | 久久久婷婷五月亚洲97号色 | 日韩人妻少妇一区二区三区 | 国产情侣作爱视频免费观看 | 免费男性肉肉影院 | 牲欲强的熟妇农村老妇女视频 | 欧美 日韩 人妻 高清 中文 | 亚洲欧洲无卡二区视頻 | 欧美怡红院免费全部视频 | 天天综合网天天综合色 | 男女爱爱好爽视频免费看 | 亚洲人成人无码网www国产 | а√资源新版在线天堂 | 东京热无码av男人的天堂 | 日韩无套无码精品 | 无遮挡啪啪摇乳动态图 | 久久99精品国产.久久久久 | √天堂中文官网8在线 | 免费无码av一区二区 | 亚洲日韩乱码中文无码蜜桃臀网站 | а√天堂www在线天堂小说 | 又黄又爽又色的视频 | 亚洲精品午夜无码电影网 | 无码人妻出轨黑人中文字幕 | 99久久久无码国产精品免费 | 国产精品久久福利网站 | 性欧美videos高清精品 | 狠狠cao日日穞夜夜穞av | 亚洲 另类 在线 欧美 制服 | 狠狠cao日日穞夜夜穞av | 国产热a欧美热a在线视频 | 亚洲精品午夜国产va久久成人 | 一区二区三区乱码在线 | 欧洲 | 中文字幕无码免费久久9一区9 | 精品亚洲成av人在线观看 | 日日麻批免费40分钟无码 | 成人免费视频视频在线观看 免费 | 欧美丰满少妇xxxx性 | 特黄特色大片免费播放器图片 | a在线亚洲男人的天堂 | 正在播放老肥熟妇露脸 | 亚洲爆乳大丰满无码专区 | 67194成是人免费无码 | 国产一区二区三区影院 | 人妻少妇被猛烈进入中文字幕 | 日本一区二区三区免费播放 | 亚洲精品综合一区二区三区在线 | av在线亚洲欧洲日产一区二区 | 亚洲人交乣女bbw | 人人妻人人澡人人爽精品欧美 | 亚洲精品成人av在线 | 日韩精品无码一本二本三本色 | 人妻体内射精一区二区三四 | 亚洲色欲色欲天天天www | 亚洲日韩精品欧美一区二区 | 久久99久久99精品中文字幕 | 日韩人妻无码中文字幕视频 | 久久精品女人天堂av免费观看 | 成人亚洲精品久久久久 | 狂野欧美激情性xxxx | 四虎国产精品一区二区 | 亚洲爆乳大丰满无码专区 | 性生交大片免费看l | 精品国偷自产在线 | 久久综合九色综合欧美狠狠 | 国产综合色产在线精品 | 一本无码人妻在中文字幕免费 | 成年女人永久免费看片 | 久久精品国产精品国产精品污 | 中文字幕av无码一区二区三区电影 | 99久久久无码国产aaa精品 | 免费视频欧美无人区码 | 免费看男女做好爽好硬视频 | 国产精品久久久久久亚洲毛片 | 国产激情综合五月久久 | 亚洲第一无码av无码专区 | 国产成人综合色在线观看网站 | 激情内射亚州一区二区三区爱妻 | 在线观看国产一区二区三区 | 日韩亚洲欧美精品综合 | 内射后入在线观看一区 | 久久久久成人精品免费播放动漫 | 亚洲欧美综合区丁香五月小说 | 丰满人妻被黑人猛烈进入 | 国产精品久久久久久亚洲影视内衣 | 中文字幕久久久久人妻 | 亚洲欧洲中文日韩av乱码 | 亚洲一区二区三区偷拍女厕 | 欧美 亚洲 国产 另类 | 日韩精品a片一区二区三区妖精 | 亚洲国产av精品一区二区蜜芽 | 久久久中文久久久无码 | 国产亚洲精品精品国产亚洲综合 | 国产亚洲精品久久久久久久 | 国产在线精品一区二区高清不卡 | 无码免费一区二区三区 | 久久午夜无码鲁丝片午夜精品 | 国产肉丝袜在线观看 | 人人澡人人妻人人爽人人蜜桃 | 人妻天天爽夜夜爽一区二区 | 国产成人无码午夜视频在线观看 | 欧美日韩一区二区综合 | 欧美国产日韩久久mv | 兔费看少妇性l交大片免费 | 小泽玛莉亚一区二区视频在线 | 东京热无码av男人的天堂 | 欧洲vodafone精品性 | 亚洲精品国产品国语在线观看 | 人人澡人人透人人爽 | 波多野结衣av一区二区全免费观看 | 久久视频在线观看精品 | 国产手机在线αⅴ片无码观看 | 日日噜噜噜噜夜夜爽亚洲精品 | 国产成人综合在线女婷五月99播放 | 激情综合激情五月俺也去 | √天堂中文官网8在线 | 波多野42部无码喷潮在线 | 日韩欧美群交p片內射中文 | 国产欧美精品一区二区三区 | 亚洲大尺度无码无码专区 | 99精品国产综合久久久久五月天 | 国产超级va在线观看视频 | 久久99精品国产.久久久久 | 亚洲色欲色欲天天天www | 亚洲日本在线电影 | 亚洲欧美色中文字幕在线 | 人人爽人人爽人人片av亚洲 | 人妻中文无码久热丝袜 | 久久99精品国产麻豆蜜芽 | 狠狠色噜噜狠狠狠7777奇米 | 无码播放一区二区三区 | 亚洲日韩一区二区三区 | 国产无av码在线观看 | 久久久国产精品无码免费专区 | 久久精品无码一区二区三区 | 最新版天堂资源中文官网 | 成年女人永久免费看片 | 18禁黄网站男男禁片免费观看 | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 精品aⅴ一区二区三区 | 国产精品.xx视频.xxtv | 青草视频在线播放 | 无码吃奶揉捏奶头高潮视频 | 欧美日本精品一区二区三区 | 亚无码乱人伦一区二区 | 欧美人与善在线com | 又黄又爽又色的视频 | а√天堂www在线天堂小说 | 欧美日本免费一区二区三区 | 色欲人妻aaaaaaa无码 | 国产9 9在线 | 中文 | 国产乱人无码伦av在线a | 青青草原综合久久大伊人精品 | 国产乱人伦av在线无码 | 中文字幕乱妇无码av在线 | 国产后入清纯学生妹 | 欧美大屁股xxxxhd黑色 | 正在播放老肥熟妇露脸 | 亚洲欧美国产精品专区久久 | 欧美猛少妇色xxxxx | 国产精品igao视频网 | 国产乱人伦av在线无码 | 色欲av亚洲一区无码少妇 | 免费观看激色视频网站 | 性色欲情网站iwww九文堂 | 国产真实伦对白全集 | 99久久久无码国产aaa精品 | 久久天天躁狠狠躁夜夜免费观看 | 欧美一区二区三区视频在线观看 | 97人妻精品一区二区三区 | 精品少妇爆乳无码av无码专区 | 天天躁夜夜躁狠狠是什么心态 | 亚洲娇小与黑人巨大交 | 国产亚洲精品久久久久久国模美 | 国产内射爽爽大片视频社区在线 | 在线观看欧美一区二区三区 | 中文字幕乱码中文乱码51精品 | 在线精品亚洲一区二区 | 欧美丰满老熟妇xxxxx性 | 国产人妖乱国产精品人妖 | 大肉大捧一进一出视频出来呀 | 亚洲精品久久久久avwww潮水 | 午夜成人1000部免费视频 | 久久国产精品二国产精品 | 国产av无码专区亚洲awww | 色五月五月丁香亚洲综合网 | 免费国产成人高清在线观看网站 | 中文字幕av伊人av无码av | 一区二区传媒有限公司 | 久久99国产综合精品 | 永久黄网站色视频免费直播 | 国产婷婷色一区二区三区在线 | 欧美性猛交xxxx富婆 | 久久伊人色av天堂九九小黄鸭 | 国产成人精品必看 | 久久成人a毛片免费观看网站 | 性欧美videos高清精品 | 小sao货水好多真紧h无码视频 | 久久久国产一区二区三区 | 色情久久久av熟女人妻网站 | 88国产精品欧美一区二区三区 | 国产sm调教视频在线观看 | 国产精品永久免费视频 | 成年美女黄网站色大免费全看 | 婷婷综合久久中文字幕蜜桃三电影 | 日本一区二区三区免费高清 | 99久久婷婷国产综合精品青草免费 | 亚洲 a v无 码免 费 成 人 a v | 中文字幕无码免费久久9一区9 | 精品成人av一区二区三区 | 无码一区二区三区在线 | 天堂久久天堂av色综合 | 国产精品办公室沙发 | 国产熟妇高潮叫床视频播放 | 婷婷五月综合缴情在线视频 | 精品无码一区二区三区爱欲 | 人人妻人人澡人人爽欧美精品 | 99久久久无码国产aaa精品 | 久久99精品久久久久久 | 无码人妻丰满熟妇区毛片18 | 国产成人无码av片在线观看不卡 | 国产精品久久精品三级 | 伊人久久大香线蕉av一区二区 | 久久无码专区国产精品s | 露脸叫床粗话东北少妇 | 中文字幕av伊人av无码av | 欧美丰满少妇xxxx性 | 中文字幕无码日韩欧毛 | 国产xxx69麻豆国语对白 | 亚洲精品久久久久avwww潮水 | 亚洲毛片av日韩av无码 | 亚洲一区二区观看播放 | 日本在线高清不卡免费播放 | 美女张开腿让人桶 | 色婷婷欧美在线播放内射 | 在线精品亚洲一区二区 | 欧美日本免费一区二区三区 | 久精品国产欧美亚洲色aⅴ大片 | 精品偷拍一区二区三区在线看 | 红桃av一区二区三区在线无码av | www国产亚洲精品久久久日本 | 亚洲精品久久久久久久久久久 | 国产成人综合色在线观看网站 | 亚洲a无码综合a国产av中文 | 日韩成人一区二区三区在线观看 | 无码人妻黑人中文字幕 | 欧美成人高清在线播放 | 日日橹狠狠爱欧美视频 | 特级做a爰片毛片免费69 | 97精品国产97久久久久久免费 | 玩弄少妇高潮ⅹxxxyw | 国产香蕉尹人综合在线观看 | 久久精品女人天堂av免费观看 | 国产精品自产拍在线观看 | 中文无码伦av中文字幕 | 精品久久综合1区2区3区激情 | 久久国产精品二国产精品 | 妺妺窝人体色www在线小说 | 欧美精品无码一区二区三区 | 中文字幕乱码人妻无码久久 | 中文字幕人妻无码一区二区三区 | 东京无码熟妇人妻av在线网址 | 欧美熟妇另类久久久久久多毛 | 国产av久久久久精东av | 日韩人妻少妇一区二区三区 | 极品尤物被啪到呻吟喷水 | 欧美丰满熟妇xxxx | 高中生自慰www网站 | 欧美丰满老熟妇xxxxx性 | 欧美自拍另类欧美综合图片区 | 亚洲gv猛男gv无码男同 | 亚洲成av人片在线观看无码不卡 | 4hu四虎永久在线观看 | 男女下面进入的视频免费午夜 | 精品国产aⅴ无码一区二区 | 亚洲第一无码av无码专区 | 午夜福利试看120秒体验区 | 小泽玛莉亚一区二区视频在线 | 在线 国产 欧美 亚洲 天堂 | 99久久婷婷国产综合精品青草免费 | 久久精品国产大片免费观看 | 日韩精品无码一区二区中文字幕 | 领导边摸边吃奶边做爽在线观看 | 亚洲精品一区二区三区婷婷月 | 亚洲va中文字幕无码久久不卡 | 999久久久国产精品消防器材 | 亚洲日本va午夜在线电影 | 日韩精品一区二区av在线 | 毛片内射-百度 | 亚洲中文字幕va福利 | 国产农村乱对白刺激视频 | 亚洲精品国产第一综合99久久 | 中文字幕人妻无码一夲道 | 国产精品高潮呻吟av久久 | 亚洲欧美日韩成人高清在线一区 | 俺去俺来也www色官网 | 久久久久亚洲精品男人的天堂 | 99国产精品白浆在线观看免费 | 老司机亚洲精品影院无码 | 亚洲国产精品成人久久蜜臀 | 无码一区二区三区在线观看 | 99精品国产综合久久久久五月天 | 亚洲 a v无 码免 费 成 人 a v | 精品人妻av区 | 日本在线高清不卡免费播放 | 国产凸凹视频一区二区 | 欧美人与禽猛交狂配 | 丁香花在线影院观看在线播放 | 久9re热视频这里只有精品 | 国产精品国产自线拍免费软件 | 久久午夜无码鲁丝片秋霞 | 色情久久久av熟女人妻网站 | 欧美 日韩 亚洲 在线 | 人妻少妇被猛烈进入中文字幕 | 精品成在人线av无码免费看 | 超碰97人人做人人爱少妇 | 99精品视频在线观看免费 | 妺妺窝人体色www在线小说 | 狠狠亚洲超碰狼人久久 | 国产精品香蕉在线观看 | 我要看www免费看插插视频 | 大地资源中文第3页 | 东京无码熟妇人妻av在线网址 | 久在线观看福利视频 | 荫蒂被男人添的好舒服爽免费视频 | 大肉大捧一进一出好爽视频 | 狠狠色丁香久久婷婷综合五月 | 亚洲日韩av一区二区三区四区 | 欧美放荡的少妇 | 中文字幕乱码人妻二区三区 | 精品水蜜桃久久久久久久 | 欧美成人家庭影院 | 亚洲色偷偷男人的天堂 | 亚洲成a人片在线观看无码3d | 国色天香社区在线视频 | 少妇久久久久久人妻无码 | 欧美精品免费观看二区 | 国产一区二区三区精品视频 | 久久午夜无码鲁丝片 | 日本精品少妇一区二区三区 | 中文字幕日产无线码一区 | 少妇无码一区二区二三区 | 日本精品人妻无码77777 天堂一区人妻无码 | 永久免费观看美女裸体的网站 | 成在人线av无码免费 | 久久99久久99精品中文字幕 | 国产口爆吞精在线视频 | 成人性做爰aaa片免费看不忠 | 人妻有码中文字幕在线 | 最近免费中文字幕中文高清百度 | 成人亚洲精品久久久久软件 | 精品国精品国产自在久国产87 | 日韩av无码中文无码电影 | 蜜桃臀无码内射一区二区三区 | 精品熟女少妇av免费观看 | 亚洲精品国偷拍自产在线麻豆 | 嫩b人妻精品一区二区三区 | 四虎永久在线精品免费网址 | 午夜福利试看120秒体验区 | 中文字幕无码日韩欧毛 | 性色av无码免费一区二区三区 | 性史性农村dvd毛片 | 欧洲美熟女乱又伦 | 老子影院午夜伦不卡 | 色五月五月丁香亚洲综合网 | 老司机亚洲精品影院 | 日韩亚洲欧美中文高清在线 | 国产精品资源一区二区 | 日本熟妇人妻xxxxx人hd | 国产农村妇女高潮大叫 | 亚洲热妇无码av在线播放 | 午夜理论片yy44880影院 | 国产精品丝袜黑色高跟鞋 | 亚洲精品一区三区三区在线观看 | 精品国产一区二区三区四区在线看 | 动漫av一区二区在线观看 | 在线亚洲高清揄拍自拍一品区 | 国产精品a成v人在线播放 | 人人妻在人人 | 人妻与老人中文字幕 | 国产精品资源一区二区 | 成人免费视频在线观看 | 日韩在线不卡免费视频一区 | 色窝窝无码一区二区三区色欲 | 老司机亚洲精品影院 | 成熟妇人a片免费看网站 | 中文字幕中文有码在线 | 亚洲一区二区三区四区 | 国产亚洲精品久久久久久国模美 | 在线观看国产午夜福利片 | 亚洲精品国产a久久久久久 | 男女作爱免费网站 | 国产偷国产偷精品高清尤物 | 亚洲精品中文字幕久久久久 | 人妻有码中文字幕在线 | 高潮毛片无遮挡高清免费视频 | 午夜福利一区二区三区在线观看 | 99riav国产精品视频 | 波多野结衣一区二区三区av免费 | 亚洲人成影院在线无码按摩店 | 女人被男人躁得好爽免费视频 | aⅴ亚洲 日韩 色 图网站 播放 | 娇妻被黑人粗大高潮白浆 | 又大又黄又粗又爽的免费视频 | 国产成人无码区免费内射一片色欲 | 国产口爆吞精在线视频 | 67194成是人免费无码 | 欧美精品国产综合久久 | 午夜肉伦伦影院 | 中文字幕无码视频专区 | av人摸人人人澡人人超碰下载 | 亚洲午夜久久久影院 | 日日摸夜夜摸狠狠摸婷婷 | 精品国精品国产自在久国产87 | 无码精品国产va在线观看dvd | 欧美第一黄网免费网站 | 国产国语老龄妇女a片 | 久久无码专区国产精品s | 久青草影院在线观看国产 | 成年女人永久免费看片 | 日本熟妇乱子伦xxxx | 精品久久久无码中文字幕 | 少妇激情av一区二区 | 国产精品鲁鲁鲁 | 俄罗斯老熟妇色xxxx | 四虎国产精品一区二区 | 亚洲色成人中文字幕网站 | 999久久久国产精品消防器材 | 色窝窝无码一区二区三区色欲 | 国产精品久久久久7777 | 性做久久久久久久久 | 中文字幕乱码亚洲无线三区 | 国产97人人超碰caoprom | 亚洲精品一区国产 | 大乳丰满人妻中文字幕日本 | 婷婷六月久久综合丁香 | 色婷婷综合中文久久一本 | 人人澡人人妻人人爽人人蜜桃 | 高潮毛片无遮挡高清免费视频 | 性色欲情网站iwww九文堂 | 性欧美熟妇videofreesex | 亚洲色大成网站www | 狠狠噜狠狠狠狠丁香五月 | 国产精品久久福利网站 | 乱码av麻豆丝袜熟女系列 | 无码人妻丰满熟妇区毛片18 | 蜜臀av无码人妻精品 | 精品久久久无码中文字幕 | 黑人玩弄人妻中文在线 | 双乳奶水饱满少妇呻吟 | 无码人妻少妇伦在线电影 | 国产精品国产三级国产专播 | 狠狠噜狠狠狠狠丁香五月 | 国产精品久久久久无码av色戒 | 久久久中文久久久无码 | 久久久久久久人妻无码中文字幕爆 | 国产亚洲精品精品国产亚洲综合 | 中文毛片无遮挡高清免费 | 在线观看国产午夜福利片 | аⅴ资源天堂资源库在线 | 精品国产福利一区二区 | 亚洲区欧美区综合区自拍区 | 日日橹狠狠爱欧美视频 | 免费人成网站视频在线观看 | 亚洲 另类 在线 欧美 制服 | 中文久久乱码一区二区 | 精品无人区无码乱码毛片国产 | 国产凸凹视频一区二区 | 日本精品人妻无码77777 天堂一区人妻无码 | 人人妻人人澡人人爽精品欧美 | 国精产品一区二区三区 | 日韩人妻少妇一区二区三区 | 亚洲精品成人av在线 | 久久99久久99精品中文字幕 | 天堂亚洲2017在线观看 | 免费观看又污又黄的网站 | 色狠狠av一区二区三区 | 久久精品国产一区二区三区 | 丰满少妇熟乱xxxxx视频 | 精品午夜福利在线观看 | 国产一区二区不卡老阿姨 | 奇米影视7777久久精品人人爽 | 久久久精品欧美一区二区免费 | 国产sm调教视频在线观看 | √8天堂资源地址中文在线 | 日韩欧美中文字幕在线三区 | 亚洲成a人片在线观看日本 | 国产激情精品一区二区三区 | 欧美性猛交内射兽交老熟妇 | 国产莉萝无码av在线播放 | 永久免费观看国产裸体美女 | www国产亚洲精品久久网站 | 亚洲а∨天堂久久精品2021 | 国产精品久久国产精品99 | 婷婷丁香六月激情综合啪 | 国产成人无码a区在线观看视频app | 亚洲中文字幕久久无码 | 国产麻豆精品精东影业av网站 | 少妇性荡欲午夜性开放视频剧场 | 国产卡一卡二卡三 | 欧美黑人巨大xxxxx | 色综合久久88色综合天天 | 日韩精品无码免费一区二区三区 | 国产精品人人爽人人做我的可爱 | 国产精品成人av在线观看 | 久久精品国产精品国产精品污 | 午夜无码人妻av大片色欲 | www国产亚洲精品久久网站 | 51国偷自产一区二区三区 | 亚洲一区二区三区偷拍女厕 | 精品久久久中文字幕人妻 | 激情爆乳一区二区三区 | 中文字幕 人妻熟女 | 青草视频在线播放 | 国产av人人夜夜澡人人爽麻豆 | 水蜜桃av无码 | 亚洲精品国偷拍自产在线麻豆 | 在线播放免费人成毛片乱码 | 性色欲网站人妻丰满中文久久不卡 | 国产超碰人人爽人人做人人添 | 国产精品无码一区二区三区不卡 | 一本久久伊人热热精品中文字幕 | 久久亚洲日韩精品一区二区三区 |