Home
last modified time | relevance | path

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

/external/flatbuffers/java/com/google/flatbuffers/
DUtf8.java117 resultArr[resultPos] = (char) (((byte1 & 0x1F) << 6) | trailingByteValue(byte2)); in handleTwoBytes()
132 … (((byte1 & 0x0F) << 12) | (trailingByteValue(byte2) << 6) | trailingByteValue(byte3)); in handleThreeBytes()
152 | (trailingByteValue(byte2) << 12) in handleFourBytes()
153 | (trailingByteValue(byte3) << 6) in handleFourBytes()
154 | trailingByteValue(byte4); in handleFourBytes()
169 private static int trailingByteValue(byte b) { in trailingByteValue() method in Utf8.DecodeUtil