write int32_t value as zigzag varint to buffer.
| 242 | |
| 243 | /// write int32_t value as zigzag varint to buffer. |
| 244 | FORY_ALWAYS_INLINE void write_var_int32(int32_t value) { |
| 245 | buffer_.write_var_int32(value); |
| 246 | } |
| 247 | |
| 248 | /// write uint64_t value as varint to buffer. |
| 249 | FORY_ALWAYS_INLINE void write_var_uint64(uint64_t value) { |
no outgoing calls