write uint64_t value as varint to buffer.
| 247 | |
| 248 | /// write uint64_t value as varint to buffer. |
| 249 | FORY_ALWAYS_INLINE void write_var_uint64(uint64_t value) { |
| 250 | buffer_.write_var_uint64(value); |
| 251 | } |
| 252 | |
| 253 | /// write int64_t value as zigzag varint to buffer. |
| 254 | FORY_ALWAYS_INLINE void write_var_int64(int64_t value) { |
no outgoing calls