Home
last modified time | relevance | path

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

/external/protobuf/java/core/src/test/java/com/google/protobuf/
DIsValidUtf8TestUtil.java257 long tmpByteChar = byteChar;
259 bytes[bytes.length - i - 1] = (byte) tmpByteChar;
260 tmpByteChar = tmpByteChar >> 8;
376 long tmpByteChar = byteChar;
378 bytes[bytes.length - i - 1] = (byte) tmpByteChar;
379 tmpByteChar = tmpByteChar >> 8;
/external/guava/guava-tests/test/com/google/common/base/
DUtf8Test.java305 long tmpByteChar = byteChar; in testBytes() local
307 bytes[bytes.length - i - 1] = (byte) tmpByteChar; in testBytes()
308 tmpByteChar = tmpByteChar >> 8; in testBytes()