blob: c82eb986eadeff43bb565f2a94054530035689c6 [file] [log] [blame]
Alex Deymo4fd22ea2018-02-15 16:13:28 +01001// Copyright 2018 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Tianjie Xu65288122017-10-13 15:10:58 -07005#include "bsdiff/utils.h"
6
7namespace bsdiff {
8
Tianjie Xu65288122017-10-13 15:10:58 -07009int64_t ParseInt64(const uint8_t* buf) {
Kelvin Zhang9e1d2fe2021-04-19 19:47:48 -040010 // BSPatch uses a non-standard encoding of integers.
11 // Highest bit of that integer is used as a sign bit, 1 = negative
12 // and 0 = positive.
13 // Therefore, if the highest bit is set, flip it, then do 2's complement
14 // to get the integer in standard form
Tianjie Xu65288122017-10-13 15:10:58 -070015 int64_t result = buf[7] & 0x7F;
16 for (int i = 6; i >= 0; i--) {
17 result <<= 8;
18 result |= buf[i];
19 }
20
21 if (buf[7] & 0x80)
22 result = -result;
23 return result;
24}
25
Tianjie Xu1f1cdb22017-11-20 11:05:55 -080026} // namespace bsdiff