Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/
DCodedInputStream.cs1145 int originalBufferPos = bufferPos; in ReadRawBytes()
1154 int sizeLeft = size - (originalBufferSize - originalBufferPos); in ReadRawBytes()
1179 int newPos = originalBufferSize - originalBufferPos; in ReadRawBytes()
1180 ByteArray.Copy(buffer, originalBufferPos, bytes, 0, newPos); in ReadRawBytes()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/
DCodedInputStream.java1181 final int originalBufferPos = bufferPos; in readRawBytesSlowPath() local
1198 System.arraycopy(buffer, originalBufferPos, bytes, 0, bufferedBytes); in readRawBytesSlowPath()
1243 System.arraycopy(buffer, originalBufferPos, bytes, 0, bufferedBytes); in readRawBytesSlowPath()