| 100 | |
| 101 | template<typename Stream> |
| 102 | inline void writeUnsigned64(unsigned long long value, Stream& out) { |
| 103 | while ((value & 0xFFFFFFFFFFFFFF80LL) != 0LL) { |
| 104 | writeByte((value & 0x7F) | 0x80, out); |
| 105 | value >>= 7; |
| 106 | } |
| 107 | writeByte(value & 0x7F, out); |
| 108 | } |
| 109 | |
| 110 | template<typename Stream> |
| 111 | inline void writeSigned32(int value, Stream& out) { |
no test coverage detected