(dAtA []byte, offset int, v uint64)
| 734 | } |
| 735 | |
| 736 | func encodeVarintPartitionRingDesc(dAtA []byte, offset int, v uint64) int { |
| 737 | offset -= sovPartitionRingDesc(v) |
| 738 | base := offset |
| 739 | for v >= 1<<7 { |
| 740 | dAtA[offset] = uint8(v&0x7f | 0x80) |
| 741 | v >>= 7 |
| 742 | offset++ |
| 743 | } |
| 744 | dAtA[offset] = uint8(v) |
| 745 | return base |
| 746 | } |
| 747 | func (m *PartitionRingDesc) Size() (n int) { |
| 748 | if m == nil { |
| 749 | return 0 |
no test coverage detected