forked from zxing-cpp/zxing-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBitArray.cpp
More file actions
38 lines (31 loc) · 884 Bytes
/
Copy pathBitArray.cpp
File metadata and controls
38 lines (31 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* Copyright 2016 Nu-book Inc.
* Copyright 2016 ZXing authors
*/
// SPDX-License-Identifier: Apache-2.0
#include "BitArray.h"
#include "ByteArray.h"
#include <cstddef>
#include <stdexcept>
namespace ZXing {
void
BitArray::bitwiseXOR(const BitArray& other)
{
if (size() != other.size()) {
throw std::invalid_argument("BitArray::xor(): Sizes don't match");
}
for (size_t i = 0; i < _bits.size(); i++) {
// The last int could be incomplete (i.e. not have 32 bits in
// it) but there is no problem since 0 XOR 0 == 0.
_bits[i] ^= other._bits[i];
}
}
ByteArray BitArray::toBytes(int bitOffset, int numBytes) const
{
ByteArray res(numBytes == -1 ? (size() - bitOffset + 7) / 8 : numBytes);
for (int i = 0; i < Size(res); i++)
for (int j = 0; j < 8; j++)
AppendBit(res[i], (numBytes != -1 || bitOffset < size()) ? get(bitOffset++) : 0);
return res;
}
} // ZXing