| 67 | WIRETYPE_LENGTH_DELIMITED = 2, |
| 68 | }; |
| 69 | static uint32 combine(uint32 tag, uint32 type) { return ((tag << 3) | type); } |
| 70 | inline void Encode32(uint32 v) { |
| 71 | if (v < 128) { |
| 72 | // Fast path for single-byte values. Many of the calls will use a |
no outgoing calls