(dAtA []byte, offset int, v uint64)
| 705 | } |
| 706 | |
| 707 | func encodeVarintTypes(dAtA []byte, offset int, v uint64) int { |
| 708 | offset -= sovTypes(v) |
| 709 | base := offset |
| 710 | for v >= 1<<7 { |
| 711 | dAtA[offset] = uint8(v&0x7f | 0x80) |
| 712 | v >>= 7 |
| 713 | offset++ |
| 714 | } |
| 715 | dAtA[offset] = uint8(v) |
| 716 | return base |
| 717 | } |
| 718 | func (m *Message) Size() (n int) { |
| 719 | if m == nil { |
| 720 | return 0 |
no test coverage detected