Home
last modified time | relevance | path

Searched refs:ComputeRawVarint64Size (Results 1 – 2 of 2) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/
DCodedOutputStream.ComputeSize.cs69 return ComputeRawVarint64Size(value); in ComputeUInt64Size()
78 return ComputeRawVarint64Size((ulong) value); in ComputeInt64Size()
216 return ComputeRawVarint64Size(EncodeZigZag64(value)); in ComputeSInt64Size()
255 public static int ComputeRawVarint64Size(ulong value) in ComputeRawVarint64Size() method in Google.Protobuf.CodedOutputStream
/external/protobuf/csharp/src/Google.Protobuf.Test/
DCodedOutputStreamTest.cs68 Assert.AreEqual(data.Length, CodedOutputStream.ComputeRawVarint64Size(value)); in AssertWriteVarint()