Home
last modified time | relevance | path

Searched refs:WriteRawVarint64 (Results 1 – 5 of 5) sorted by relevance

/third_party/protobuf/csharp/src/Google.Protobuf/
DWritingPrimitives.cs109 WriteRawVarint64(ref buffer, ref state, value); in WriteUInt64()
117 WriteRawVarint64(ref buffer, ref state, (ulong)value); in WriteInt64()
132 WriteRawVarint64(ref buffer, ref state, (ulong)value); in WriteInt32()
267 WriteRawVarint64(ref buffer, ref state, EncodeZigZag64(value)); in WriteSInt64()
322 …public static void WriteRawVarint64(ref Span<byte> buffer, ref WriterInternalState state, ulong va… in WriteRawVarint64() method in Google.Protobuf.WritingPrimitives
DCodedOutputStream.cs502 internal void WriteRawVarint64(ulong value) in WriteRawVarint64() method in Google.Protobuf.CodedOutputStream
505 WritingPrimitives.WriteRawVarint64(ref span, ref state, value); in WriteRawVarint64()
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
DCodedOutputStreamTest.cs63 output.WriteRawVarint64(value); in AssertWriteVarint()
88 output.WriteRawVarint64(value); in AssertWriteVarint()
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
DCodedOutputStreamTest.cs74 output.WriteRawVarint64(value); in AssertWriteVarint()
113 output.WriteRawVarint64(value); in AssertWriteVarint()
/third_party/protobuf/csharp/src/Google.Protobuf.Benchmarks/
DWriteRawPrimitivesBenchmark.cs170 cos.WriteRawVarint64(values[i]); in WriteRawVarint64_CodedOutputStream()