write uint32_t value as varint to buffer.
| 237 | |
| 238 | /// write uint32_t value as varint to buffer. |
| 239 | FORY_ALWAYS_INLINE void write_var_uint32(uint32_t value) { |
| 240 | buffer_.write_var_uint32(value); |
| 241 | } |
| 242 | |
| 243 | /// write int32_t value as zigzag varint to buffer. |
| 244 | FORY_ALWAYS_INLINE void write_var_int32(int32_t value) { |
no outgoing calls