Lines Matching refs:totalBytesRetired
105 private int totalBytesRetired = 0; field in Google.Protobuf.CodedInputStream
936 byteLimit += totalBytesRetired + bufferPos; in PushLimit()
952 int bufferEnd = totalBytesRetired + bufferSize; in RecomputeBufferSizeAfterLimit()
986 int currentAbsolutePosition = totalBytesRetired + bufferPos;
1017 if (totalBytesRetired + bufferSize == currentLimit) in RefillBuffer()
1030 totalBytesRetired += bufferSize; in RefillBuffer()
1053 totalBytesRetired + bufferSize + bufferSizeAfterLimit; in RefillBuffer()
1090 if (totalBytesRetired + bufferPos + size > currentLimit) in ReadRawBytes()
1093 SkipRawBytes(currentLimit - totalBytesRetired - bufferPos); in ReadRawBytes()
1151 totalBytesRetired += bufferSize; in ReadRawBytes()
1170 totalBytesRetired += n; in ReadRawBytes()
1208 if (totalBytesRetired + bufferPos + size > currentLimit) in SkipRawBytes()
1211 SkipRawBytes(currentLimit - totalBytesRetired - bufferPos); in SkipRawBytes()
1228 totalBytesRetired += bufferSize; in SkipRawBytes()
1241 totalBytesRetired += size - pos; in SkipRawBytes()