Lines Matching refs:currentLimit
110 private int currentLimit = int.MaxValue; field in Google.Protobuf.CodedInputStream
967 int oldLimit = currentLimit; in PushLimit()
972 currentLimit = byteLimit; in PushLimit()
983 if (bufferEnd > currentLimit) in RecomputeBufferSizeAfterLimit()
986 bufferSizeAfterLimit = bufferEnd - currentLimit; in RecomputeBufferSizeAfterLimit()
1000 currentLimit = oldLimit; in PopLimit()
1012 if (currentLimit == int.MaxValue)
1017 return currentAbsolutePosition >= currentLimit;
1047 if (totalBytesRetired + bufferSize == currentLimit) in RefillBuffer()
1120 if (totalBytesRetired + bufferPos + size > currentLimit) in ReadRawBytes()
1123 SkipRawBytes(currentLimit - totalBytesRetired - bufferPos); in ReadRawBytes()
1238 if (totalBytesRetired + bufferPos + size > currentLimit) in SkipRawBytes()
1241 SkipRawBytes(currentLimit - totalBytesRetired - bufferPos); in SkipRawBytes()