Home
last modified time | relevance | path

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

/external/protobuf/java/src/test/java/com/google/protobuf/
DIsValidUtf8TestUtil.java216 long tmpByteChar = byteChar;
218 bytes[bytes.length - i - 1] = (byte) tmpByteChar;
219 tmpByteChar = tmpByteChar >> 8;
346 long tmpByteChar = byteChar;
348 bytes[bytes.length - i - 1] = (byte) tmpByteChar;
349 tmpByteChar = tmpByteChar >> 8;
/external/guava/guava-tests/test/com/google/common/base/
DUtf8Test.java306 long tmpByteChar = byteChar; in testBytes() local
308 bytes[bytes.length - i - 1] = (byte) tmpByteChar; in testBytes()
309 tmpByteChar = tmpByteChar >> 8; in testBytes()