Searched refs:ComputeRawVarint32Size (Results 1 – 6 of 6) sorted by relevance
93 return ComputeRawVarint32Size((uint) value); in ComputeInt32Size()173 return ComputeRawVarint32Size(value); in ComputeUInt32Size()211 return ComputeRawVarint32Size(EncodeZigZag32(value)); in ComputeSInt32Size()229 return ComputeRawVarint32Size((uint) length); in ComputeLengthSize()235 public static int ComputeRawVarint32Size(uint value) in ComputeRawVarint32Size() method in Google.Protobuf.CodedOutputStream305 return ComputeRawVarint32Size(WireFormat.MakeTag(fieldNumber, 0)); in ComputeTagSize()
735 tagSize = CodedOutputStream.ComputeRawVarint32Size(tag);737 tagSize += CodedOutputStream.ComputeRawVarint32Size(endTag);
143 return CodedOutputStream.ComputeRawVarint32Size(tag) + in CalculateSize()150 int size = count * CodedOutputStream.ComputeRawVarint32Size(tag); in CalculateSize()
469 size += CodedOutputStream.ComputeRawVarint32Size(codec.MapTag); in CalculateSize()
57 … Assert.AreEqual(data.Length, CodedOutputStream.ComputeRawVarint32Size((uint) value)); in AssertWriteVarint()