Joe Onorato | 1754d74 | 2016-11-21 17:51:35 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "protobuf.h" |
| 18 | |
Yi Jin | 0ed9b68 | 2017-08-18 14:51:20 -0700 | [diff] [blame] | 19 | |
Yi Jin | 0a3406f | 2017-06-22 19:23:11 -0700 | [diff] [blame] | 20 | uint8_t* |
Joe Onorato | 1754d74 | 2016-11-21 17:51:35 -0800 | [diff] [blame] | 21 | write_raw_varint(uint8_t* buf, uint32_t val) |
| 22 | { |
| 23 | uint8_t* p = buf; |
| 24 | while (true) { |
| 25 | if ((val & ~0x7F) == 0) { |
| 26 | *p++ = (uint8_t)val; |
| 27 | return p; |
| 28 | } else { |
| 29 | *p++ = (uint8_t)((val & 0x7F) | 0x80); |
| 30 | val >>= 7; |
| 31 | } |
| 32 | } |
| 33 | } |
| 34 | |
Yi Jin | 0a3406f | 2017-06-22 19:23:11 -0700 | [diff] [blame] | 35 | uint8_t* |
Joe Onorato | 1754d74 | 2016-11-21 17:51:35 -0800 | [diff] [blame] | 36 | write_length_delimited_tag_header(uint8_t* buf, uint32_t fieldId, size_t size) |
| 37 | { |
| 38 | buf = write_raw_varint(buf, (fieldId << 3) | 2); |
| 39 | buf = write_raw_varint(buf, size); |
| 40 | return buf; |
| 41 | } |
| 42 | |