Searched refs:trailingByteValue (Results 1 – 2 of 2) sorted by relevance
119 resultArr[resultPos] = (char) (((byte1 & 0x1F) << 6) | trailingByteValue(byte2)); in handleTwoBytes()134 … (((byte1 & 0x0F) << 12) | (trailingByteValue(byte2) << 6) | trailingByteValue(byte3)); in handleThreeBytes()154 | (trailingByteValue(byte2) << 12) in handleFourBytes()155 | (trailingByteValue(byte3) << 6) in handleFourBytes()156 | trailingByteValue(byte4); in handleFourBytes()171 private static int trailingByteValue(byte b) { in trailingByteValue() method in Utf8.DecodeUtil
1911 resultArr[resultPos] = (char) (((byte1 & 0x1F) << 6) | trailingByteValue(byte2)); in handleTwoBytes()1927 (((byte1 & 0x0F) << 12) | (trailingByteValue(byte2) << 6) | trailingByteValue(byte3)); in handleThreeBytes()1948 | (trailingByteValue(byte2) << 12) in handleFourBytes()1949 | (trailingByteValue(byte3) << 6) in handleFourBytes()1950 | trailingByteValue(byte4); in handleFourBytes()1961 private static int trailingByteValue(byte b) { in trailingByteValue() method in Utf8.DecodeUtil