Lines Matching refs:currentLimit
110 private int currentLimit = int.MaxValue; field in Google.Protobuf.CodedInputStream
937 int oldLimit = currentLimit; in PushLimit()
942 currentLimit = byteLimit; in PushLimit()
953 if (bufferEnd > currentLimit) in RecomputeBufferSizeAfterLimit()
956 bufferSizeAfterLimit = bufferEnd - currentLimit; in RecomputeBufferSizeAfterLimit()
970 currentLimit = oldLimit; in PopLimit()
982 if (currentLimit == int.MaxValue)
987 return currentAbsolutePosition >= currentLimit;
1017 if (totalBytesRetired + bufferSize == currentLimit) in RefillBuffer()
1090 if (totalBytesRetired + bufferPos + size > currentLimit) in ReadRawBytes()
1093 SkipRawBytes(currentLimit - totalBytesRetired - bufferPos); in ReadRawBytes()
1208 if (totalBytesRetired + bufferPos + size > currentLimit) in SkipRawBytes()
1211 SkipRawBytes(currentLimit - totalBytesRetired - bufferPos); in SkipRawBytes()