HomeSort by relevance Sort by last modified time
    Searched defs:SizeLimit (Results 1 - 3 of 3) sorted by null

  /external/protobuf/csharp/src/Google.Protobuf.Test/
CodedInputStreamTest.cs 328 public void SizeLimit()
330 // Have to use a Stream rather than ByteString.CreateCodedInput as SizeLimit doesn't
  /external/protobuf/csharp/src/Google.Protobuf/
CodedInputStream.cs 115 private readonly int sizeLimit;
176 this.sizeLimit = DefaultSizeLimit;
188 internal CodedInputStream(Stream input, byte[] buffer, int bufferPos, int bufferSize, int sizeLimit, int recursionLimit)
191 if (sizeLimit <= 0)
193 throw new ArgumentOutOfRangeException("sizeLimit", "Size limit must be positive");
199 this.sizeLimit = sizeLimit;
214 /// <param name="sizeLimit">The total limit of data to read from the stream.</param>
218 public static CodedInputStream CreateWithLimits(Stream input, int sizeLimit, int recursionLimit)
220 return new CodedInputStream(input, new byte[BufferSize], 0, 0, sizeLimit, recursionLimit);
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 895 uint64_t SizeLimit = 32;
897 return GlobalSize > SizeLimit &&
    [all...]

Completed in 99 milliseconds