Coverage Report

Created: 2026-01-10 07:01

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/qpdf/libqpdf/BitWriter.cc
Line
Count
Source
1
#include <qpdf/BitWriter.hh>
2
3
// See comments in bits_functions.hh
4
#define BITS_WRITE 1
5
#include <qpdf/bits_functions.hh>
6
7
BitWriter::BitWriter(Pipeline* pl) :
8
8.57k
    pl(pl)
9
8.57k
{
10
8.57k
}
11
12
void
13
BitWriter::writeBits(unsigned long long val, size_t bits)
14
597k
{
15
597k
    write_bits(this->ch, this->bit_offset, val, bits, this->pl);
16
597k
}
17
18
void
19
BitWriter::writeBitsSigned(long long val, size_t bits)
20
303k
{
21
303k
    unsigned long long uval = 0;
22
303k
    if (val < 0) {
23
737
        uval = (1ULL << bits) + static_cast<unsigned long long>(val);
24
303k
    } else {
25
303k
        uval = static_cast<unsigned long long>(val);
26
303k
    }
27
303k
    writeBits(uval, bits);
28
303k
}
29
30
void
31
BitWriter::writeBitsInt(int val, size_t bits)
32
100k
{
33
100k
    writeBits(static_cast<unsigned long long>(val), bits);
34
100k
}
35
36
void
37
BitWriter::flush()
38
61.3k
{
39
61.3k
    if (bit_offset < 7) {
40
11.0k
        size_t bits_to_write = bit_offset + 1;
41
11.0k
        write_bits(this->ch, this->bit_offset, 0, bits_to_write, this->pl);
42
11.0k
    }
43
61.3k
}