Home
last modified time | relevance | path

Searched refs:trailingByteValue (Results 1 – 2 of 2) sorted by relevance

/external/flatbuffers/java/com/google/flatbuffers/
DUtf8.java119 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
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DUtf8.java1911 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