| /* | |
| Licensed to the Apache Software Foundation (ASF) under one | |
| or more contributor license agreements. See the NOTICE file | |
| distributed with this work for additional information | |
| regarding copyright ownership. The ASF licenses this file | |
| to you under the Apache License, Version 2.0 (the | |
| "License"); you may not use this file except in compliance | |
| with the License. You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, | |
| software distributed under the License is distributed on an | |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | |
| KIND, either express or implied. See the License for the | |
| specific language governing permissions and limitations | |
| under the License. | |
| */ | |
| /* | |
| Decode an an array of zig-zag encoded integers from a buffer. | |
| The buffer is advanced to the end of the integers. | |
| `count` is the number of integers to decode. | |
| `result` is where the decoded integers are stored. | |
| The result is guaranteed to be 64 bits wide. | |
| */ | |
| static inline void decode_zigzag_ints(const unsigned char **buffer, const uint64_t count, uint64_t *result) { | |
| uint64_t current_index; | |
| const unsigned char *current_position = *buffer; | |
| uint64_t temp; | |
| // The largest shift will always be < 64 | |
| unsigned char shift; | |
| for (current_index = 0; current_index < count; current_index++) { | |
| shift = 7; | |
| temp = *current_position & 0x7F; | |
| while(*current_position & 0x80) { | |
| current_position += 1; | |
| temp |= (uint64_t)(*current_position & 0x7F) << shift; | |
| shift += 7; | |
| } | |
| result[current_index] = (temp >> 1) ^ (~(temp & 1) + 1); | |
| current_position += 1; | |
| } | |
| *buffer = current_position; | |
| } | |
| /* | |
| Skip a zig-zag encoded integer in a buffer. | |
| The buffer is advanced to the end of the integer. | |
| */ | |
| static inline void skip_zigzag_int(const unsigned char **buffer) { | |
| while(**buffer & 0x80) { | |
| *buffer += 1; | |
| } | |
| *buffer += 1; | |
| } | |