| 68 | } |
| 69 | |
| 70 | void PutFixed64(string* dst, uint64 value) { |
| 71 | char buf[sizeof(value)]; |
| 72 | EncodeFixed64(buf, value); |
| 73 | dst->append(buf, sizeof(buf)); |
| 74 | } |
| 75 | |
| 76 | char* EncodeVarint32(char* dst, uint32 v) { |
| 77 | // Operate on characters as unsigneds |
nothing calls this directly
no test coverage detected