Searched refs:ComputeLengthSize (Results 1 – 4 of 4) sorted by relevance
132 return ComputeLengthSize(byteArraySize) + byteArraySize; in ComputeStringSize()151 return ComputeLengthSize(size) + size; in ComputeMessageSize()160 return ComputeLengthSize(value.Length) + value.Length; in ComputeBytesSize()223 public static int ComputeLengthSize(int length) in ComputeLengthSize() method in Google.Protobuf.CodedOutputStream
327 return CodedOutputStream.ComputeLengthSize(fieldLength) + fieldLength; in CalculateSize()
141 CodedOutputStream.ComputeLengthSize(dataSize) + in CalculateSize()
339 … Assert.AreEqual(1 + CodedOutputStream.ComputeLengthSize(length) + length, stream.Length); in WriteTo_PackedInt32()