fuzz coverage

Coverage Report

Created: 2025-08-28 15:26

/Users/eugenesiegel/btc/bitcoin/src/serialize.h
Line
Count
Source (jump to first uncovered line)
1
// Copyright (c) 2009-2010 Satoshi Nakamoto
2
// Copyright (c) 2009-present The Bitcoin Core developers
3
// Distributed under the MIT software license, see the accompanying
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6
#ifndef BITCOIN_SERIALIZE_H
7
#define BITCOIN_SERIALIZE_H
8
9
#include <attributes.h>
10
#include <compat/assumptions.h> // IWYU pragma: keep
11
#include <compat/endian.h>
12
#include <prevector.h>
13
#include <span.h>
14
15
#include <algorithm>
16
#include <concepts>
17
#include <cstdint>
18
#include <cstring>
19
#include <ios>
20
#include <limits>
21
#include <map>
22
#include <memory>
23
#include <set>
24
#include <string>
25
#include <utility>
26
#include <vector>
27
28
/**
29
 * The maximum size of a serialized object in bytes or number of elements
30
 * (for eg vectors) when the size is encoded as CompactSize.
31
 */
32
static constexpr uint64_t MAX_SIZE = 0x02000000;
33
34
/** Maximum amount of memory (in bytes) to allocate at once when deserializing vectors. */
35
static const unsigned int MAX_VECTOR_ALLOCATE = 5000000;
36
37
/**
38
 * Dummy data type to identify deserializing constructors.
39
 *
40
 * By convention, a constructor of a type T with signature
41
 *
42
 *   template <typename Stream> T::T(deserialize_type, Stream& s)
43
 *
44
 * is a deserializing constructor, which builds the type by
45
 * deserializing it from s. If T contains const fields, this
46
 * is likely the only way to do so.
47
 */
48
struct deserialize_type {};
49
constexpr deserialize_type deserialize {};
50
51
/*
52
 * Lowest-level serialization and conversion.
53
 */
54
template<typename Stream> inline void ser_writedata8(Stream &s, uint8_t obj)
55
15.5M
{
56
15.5M
    s.write(std::as_bytes(std::span{&obj, 1}));
57
15.5M
}
_Z14ser_writedata8I12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_h
Line
Count
Source
55
973k
{
56
973k
    s.write(std::as_bytes(std::span{&obj, 1}));
57
973k
}
Unexecuted instantiation: _Z14ser_writedata8I8AutoFileEvRT_h
_Z14ser_writedata8I12VectorWriterEvRT_h
Line
Count
Source
55
613k
{
56
613k
    s.write(std::as_bytes(std::span{&obj, 1}));
57
613k
}
_Z14ser_writedata8I12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_h
Line
Count
Source
55
8.05M
{
56
8.05M
    s.write(std::as_bytes(std::span{&obj, 1}));
57
8.05M
}
_Z14ser_writedata8I10DataStreamEvRT_h
Line
Count
Source
55
533k
{
56
533k
    s.write(std::as_bytes(std::span{&obj, 1}));
57
533k
}
Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_h
_Z14ser_writedata8I12SizeComputerEvRT_h
Line
Count
Source
55
3.87k
{
56
3.87k
    s.write(std::as_bytes(std::span{&obj, 1}));
57
3.87k
}
Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_h
Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_h
Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_h
Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_h
_Z14ser_writedata8I10HashWriterEvRT_h
Line
Count
Source
55
24.1k
{
56
24.1k
    s.write(std::as_bytes(std::span{&obj, 1}));
57
24.1k
}
Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEvRT_h
Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_h
Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_h
Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEvRT_h
Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_h
_Z14ser_writedata8I14BufferedWriterI8AutoFileEEvRT_h
Line
Count
Source
55
5.40k
{
56
5.40k
    s.write(std::as_bytes(std::span{&obj, 1}));
57
5.40k
}
_Z14ser_writedata8I12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_h
Line
Count
Source
55
21.9k
{
56
21.9k
    s.write(std::as_bytes(std::span{&obj, 1}));
57
21.9k
}
Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_h
_Z14ser_writedata8I12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_h
Line
Count
Source
55
5.36M
{
56
5.36M
    s.write(std::as_bytes(std::span{&obj, 1}));
57
5.36M
}
58
template<typename Stream> inline void ser_writedata16(Stream &s, uint16_t obj)
59
0
{
60
0
    obj = htole16_internal(obj);
61
0
    s.write(std::as_bytes(std::span{&obj, 1}));
62
0
}
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I8AutoFileEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12VectorWriterEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I10DataStreamEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12SizeComputerEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I10HashWriterEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I14BufferedWriterI8AutoFileEEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_t
Unexecuted instantiation: _Z15ser_writedata16I12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_t
63
template<typename Stream> inline void ser_writedata16be(Stream &s, uint16_t obj)
64
0
{
65
0
    obj = htobe16_internal(obj);
66
0
    s.write(std::as_bytes(std::span{&obj, 1}));
67
0
}
68
template<typename Stream> inline void ser_writedata32(Stream &s, uint32_t obj)
69
20.9M
{
70
20.9M
    obj = htole32_internal(obj);
71
20.9M
    s.write(std::as_bytes(std::span{&obj, 1}));
72
20.9M
}
_Z15ser_writedata32I12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_j
Line
Count
Source
69
902k
{
70
902k
    obj = htole32_internal(obj);
71
902k
    s.write(std::as_bytes(std::span{&obj, 1}));
72
902k
}
Unexecuted instantiation: _Z15ser_writedata32I8AutoFileEvRT_j
_Z15ser_writedata32I12VectorWriterEvRT_j
Line
Count
Source
69
1.74M
{
70
1.74M
    obj = htole32_internal(obj);
71
1.74M
    s.write(std::as_bytes(std::span{&obj, 1}));
72
1.74M
}
_Z15ser_writedata32I12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_j
Line
Count
Source
69
4.44M
{
70
4.44M
    obj = htole32_internal(obj);
71
4.44M
    s.write(std::as_bytes(std::span{&obj, 1}));
72
4.44M
}
_Z15ser_writedata32I10DataStreamEvRT_j
Line
Count
Source
69
800k
{
70
800k
    obj = htole32_internal(obj);
71
800k
    s.write(std::as_bytes(std::span{&obj, 1}));
72
800k
}
Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_j
Unexecuted instantiation: _Z15ser_writedata32I12SizeComputerEvRT_j
Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_j
Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_j
Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_j
Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_j
_Z15ser_writedata32I10HashWriterEvRT_j
Line
Count
Source
69
9.53M
{
70
9.53M
    obj = htole32_internal(obj);
71
9.53M
    s.write(std::as_bytes(std::span{&obj, 1}));
72
9.53M
}
Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEvRT_j
Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_j
Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_j
Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEvRT_j
Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_j
_Z15ser_writedata32I14BufferedWriterI8AutoFileEEvRT_j
Line
Count
Source
69
1.89k
{
70
1.89k
    obj = htole32_internal(obj);
71
1.89k
    s.write(std::as_bytes(std::span{&obj, 1}));
72
1.89k
}
_Z15ser_writedata32I12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_j
Line
Count
Source
69
14.2k
{
70
14.2k
    obj = htole32_internal(obj);
71
14.2k
    s.write(std::as_bytes(std::span{&obj, 1}));
72
14.2k
}
Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_j
_Z15ser_writedata32I12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_j
Line
Count
Source
69
3.51M
{
70
3.51M
    obj = htole32_internal(obj);
71
3.51M
    s.write(std::as_bytes(std::span{&obj, 1}));
72
3.51M
}
73
template<typename Stream> inline void ser_writedata32be(Stream &s, uint32_t obj)
74
0
{
75
0
    obj = htobe32_internal(obj);
76
0
    s.write(std::as_bytes(std::span{&obj, 1}));
77
0
}
78
template<typename Stream> inline void ser_writedata64(Stream &s, uint64_t obj)
79
3.38M
{
80
3.38M
    obj = htole64_internal(obj);
81
3.38M
    s.write(std::as_bytes(std::span{&obj, 1}));
82
3.38M
}
_Z15ser_writedata64I12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_y
Line
Count
Source
79
270k
{
80
270k
    obj = htole64_internal(obj);
81
270k
    s.write(std::as_bytes(std::span{&obj, 1}));
82
270k
}
Unexecuted instantiation: _Z15ser_writedata64I8AutoFileEvRT_y
_Z15ser_writedata64I12VectorWriterEvRT_y
Line
Count
Source
79
449k
{
80
449k
    obj = htole64_internal(obj);
81
449k
    s.write(std::as_bytes(std::span{&obj, 1}));
82
449k
}
_Z15ser_writedata64I12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_y
Line
Count
Source
79
1.24M
{
80
1.24M
    obj = htole64_internal(obj);
81
1.24M
    s.write(std::as_bytes(std::span{&obj, 1}));
82
1.24M
}
_Z15ser_writedata64I10DataStreamEvRT_y
Line
Count
Source
79
196k
{
80
196k
    obj = htole64_internal(obj);
81
196k
    s.write(std::as_bytes(std::span{&obj, 1}));
82
196k
}
Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_y
_Z15ser_writedata64I12SizeComputerEvRT_y
Line
Count
Source
79
35.4k
{
80
35.4k
    obj = htole64_internal(obj);
81
35.4k
    s.write(std::as_bytes(std::span{&obj, 1}));
82
35.4k
}
Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_y
Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_y
Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_y
Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_y
_Z15ser_writedata64I10HashWriterEvRT_y
Line
Count
Source
79
11.4k
{
80
11.4k
    obj = htole64_internal(obj);
81
11.4k
    s.write(std::as_bytes(std::span{&obj, 1}));
82
11.4k
}
Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEvRT_y
Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_y
Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_y
Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEvRT_y
Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_y
Unexecuted instantiation: _Z15ser_writedata64I14BufferedWriterI8AutoFileEEvRT_y
_Z15ser_writedata64I12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_y
Line
Count
Source
79
3.57k
{
80
3.57k
    obj = htole64_internal(obj);
81
3.57k
    s.write(std::as_bytes(std::span{&obj, 1}));
82
3.57k
}
Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_y
_Z15ser_writedata64I12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_y
Line
Count
Source
79
1.17M
{
80
1.17M
    obj = htole64_internal(obj);
81
1.17M
    s.write(std::as_bytes(std::span{&obj, 1}));
82
1.17M
}
83
template<typename Stream> inline uint8_t ser_readdata8(Stream &s)
84
23.5M
{
85
23.5M
    uint8_t obj;
86
23.5M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
87
23.5M
    return obj;
88
23.5M
}
Unexecuted instantiation: _Z13ser_readdata8I8AutoFileEhRT_
_Z13ser_readdata8I12ParamsStreamIR10DataStream20TransactionSerParamsEEhRT_
Line
Count
Source
84
1.09M
{
85
1.09M
    uint8_t obj;
86
1.09M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
87
1.09M
    return obj;
88
1.09M
}
_Z13ser_readdata8I10DataStreamEhRT_
Line
Count
Source
84
21.8M
{
85
21.8M
    uint8_t obj;
86
21.8M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
87
21.8M
    return obj;
88
21.8M
}
Unexecuted instantiation: _Z13ser_readdata8I12BufferedFileEhRT_
Unexecuted instantiation: _Z13ser_readdata8I10SpanReaderEhRT_
_Z13ser_readdata8I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEhRT_
Line
Count
Source
84
76.2k
{
85
76.2k
    uint8_t obj;
86
76.2k
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
87
76.2k
    return obj;
88
76.2k
}
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEhRT_
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEhRT_
_Z13ser_readdata8I12ParamsStreamIR10SpanReader20TransactionSerParamsEEhRT_
Line
Count
Source
84
437k
{
85
437k
    uint8_t obj;
86
437k
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
87
437k
    return obj;
88
437k
}
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEhRT_
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEhRT_
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEhRT_
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEhRT_
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEhRT_
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEhRT_
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR8AutoFile20TransactionSerParamsEEhRT_
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamI10DataStreamN8CAddress9SerParamsEEEhRT_
_Z13ser_readdata8I12HashVerifierI14BufferedReaderI8AutoFileEEEhRT_
Line
Count
Source
84
87.4k
{
85
87.4k
    uint8_t obj;
86
87.4k
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
87
87.4k
    return obj;
88
87.4k
}
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR12BufferedFile20TransactionSerParamsEEhRT_
89
template<typename Stream> inline uint16_t ser_readdata16(Stream &s)
90
0
{
91
0
    uint16_t obj;
92
0
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
93
0
    return le16toh_internal(obj);
94
0
}
Unexecuted instantiation: _Z14ser_readdata16I8AutoFileEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR10DataStream20TransactionSerParamsEEtRT_
Unexecuted instantiation: _Z14ser_readdata16I10DataStreamEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12BufferedFileEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEtRT_
Unexecuted instantiation: _Z14ser_readdata16I10SpanReaderEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR10SpanReader20TransactionSerParamsEEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR8AutoFile20TransactionSerParamsEEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamI10DataStreamN8CAddress9SerParamsEEEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12HashVerifierI14BufferedReaderI8AutoFileEEEtRT_
Unexecuted instantiation: _Z14ser_readdata16I12ParamsStreamIR12BufferedFile20TransactionSerParamsEEtRT_
95
template<typename Stream> inline uint16_t ser_readdata16be(Stream &s)
96
0
{
97
0
    uint16_t obj;
98
0
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
99
0
    return be16toh_internal(obj);
100
0
}
101
template<typename Stream> inline uint32_t ser_readdata32(Stream &s)
102
8.49M
{
103
8.49M
    uint32_t obj;
104
8.49M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
105
8.49M
    return le32toh_internal(obj);
106
8.49M
}
_Z14ser_readdata32I8AutoFileEjRT_
Line
Count
Source
102
43.7k
{
103
43.7k
    uint32_t obj;
104
43.7k
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
105
43.7k
    return le32toh_internal(obj);
106
43.7k
}
_Z14ser_readdata32I12ParamsStreamIR10DataStream20TransactionSerParamsEEjRT_
Line
Count
Source
102
458k
{
103
458k
    uint32_t obj;
104
458k
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
105
458k
    return le32toh_internal(obj);
106
458k
}
_Z14ser_readdata32I10DataStreamEjRT_
Line
Count
Source
102
7.64M
{
103
7.64M
    uint32_t obj;
104
7.64M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
105
7.64M
    return le32toh_internal(obj);
106
7.64M
}
Unexecuted instantiation: _Z14ser_readdata32I12BufferedFileEjRT_
Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEjRT_
Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEjRT_
Unexecuted instantiation: _Z14ser_readdata32I10SpanReaderEjRT_
Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEjRT_
_Z14ser_readdata32I12ParamsStreamIR10SpanReader20TransactionSerParamsEEjRT_
Line
Count
Source
102
349k
{
103
349k
    uint32_t obj;
104
349k
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
105
349k
    return le32toh_internal(obj);
106
349k
}
Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEjRT_
Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEjRT_
Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEjRT_
Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEjRT_
Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEjRT_
Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEjRT_
Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR8AutoFile20TransactionSerParamsEEjRT_
Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamI10DataStreamN8CAddress9SerParamsEEEjRT_
Unexecuted instantiation: _Z14ser_readdata32I12HashVerifierI14BufferedReaderI8AutoFileEEEjRT_
Unexecuted instantiation: _Z14ser_readdata32I12ParamsStreamIR12BufferedFile20TransactionSerParamsEEjRT_
107
template<typename Stream> inline uint32_t ser_readdata32be(Stream &s)
108
0
{
109
0
    uint32_t obj;
110
0
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
111
0
    return be32toh_internal(obj);
112
0
}
113
template<typename Stream> inline uint64_t ser_readdata64(Stream &s)
114
394k
{
115
394k
    uint64_t obj;
116
394k
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
117
394k
    return le64toh_internal(obj);
118
394k
}
Unexecuted instantiation: _Z14ser_readdata64I8AutoFileEyRT_
_Z14ser_readdata64I12ParamsStreamIR10DataStream20TransactionSerParamsEEyRT_
Line
Count
Source
114
175k
{
115
175k
    uint64_t obj;
116
175k
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
117
175k
    return le64toh_internal(obj);
118
175k
}
_Z14ser_readdata64I10DataStreamEyRT_
Line
Count
Source
114
131k
{
115
131k
    uint64_t obj;
116
131k
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
117
131k
    return le64toh_internal(obj);
118
131k
}
Unexecuted instantiation: _Z14ser_readdata64I12BufferedFileEyRT_
Unexecuted instantiation: _Z14ser_readdata64I10SpanReaderEyRT_
Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEyRT_
Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEyRT_
Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEyRT_
_Z14ser_readdata64I12ParamsStreamIR10SpanReader20TransactionSerParamsEEyRT_
Line
Count
Source
114
87.4k
{
115
87.4k
    uint64_t obj;
116
87.4k
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
117
87.4k
    return le64toh_internal(obj);
118
87.4k
}
Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEyRT_
Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEyRT_
Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEyRT_
Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEyRT_
Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEyRT_
Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEyRT_
Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR8AutoFile20TransactionSerParamsEEyRT_
Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamI10DataStreamN8CAddress9SerParamsEEEyRT_
Unexecuted instantiation: _Z14ser_readdata64I12HashVerifierI14BufferedReaderI8AutoFileEEEyRT_
Unexecuted instantiation: _Z14ser_readdata64I12ParamsStreamIR12BufferedFile20TransactionSerParamsEEyRT_
119
120
121
class SizeComputer;
122
123
/**
124
 * Convert any argument to a reference to X, maintaining constness.
125
 *
126
 * This can be used in serialization code to invoke a base class's
127
 * serialization routines.
128
 *
129
 * Example use:
130
 *   class Base { ... };
131
 *   class Child : public Base {
132
 *     int m_data;
133
 *   public:
134
 *     SERIALIZE_METHODS(Child, obj) {
135
 *       READWRITE(AsBase<Base>(obj), obj.m_data);
136
 *     }
137
 *   };
138
 *
139
 * static_cast cannot easily be used here, as the type of Obj will be const Child&
140
 * during serialization and Child& during deserialization. AsBase will convert to
141
 * const Base& and Base& appropriately.
142
 */
143
template <class Out, class In>
144
Out& AsBase(In& x)
145
486k
{
146
486k
    static_assert(std::is_base_of_v<Out, In>);
147
486k
    return x;
148
486k
}
_Z6AsBaseI9prevectorILj28EhjiE7CScriptERT_RT0_
Line
Count
Source
145
421k
{
146
421k
    static_assert(std::is_base_of_v<Out, In>);
147
421k
    return x;
148
421k
}
_Z6AsBaseI12CBlockHeader6CBlockERT_RT0_
Line
Count
Source
145
43.7k
{
146
43.7k
    static_assert(std::is_base_of_v<Out, In>);
147
43.7k
    return x;
148
43.7k
}
_Z6AsBaseI8CNetAddr8CServiceERT_RT0_
Line
Count
Source
145
20.9k
{
146
20.9k
    static_assert(std::is_base_of_v<Out, In>);
147
20.9k
    return x;
148
20.9k
}
Unexecuted instantiation: _Z6AsBaseI8CService8CAddressERT_RT0_
Unexecuted instantiation: _Z6AsBaseI8CAddress8AddrInfoERT_RT0_
Unexecuted instantiation: _Z6AsBaseI11FlatFilePos10CDiskTxPosERT_RT0_
149
template <class Out, class In>
150
const Out& AsBase(const In& x)
151
5.04M
{
152
5.04M
    static_assert(std::is_base_of_v<Out, In>);
153
5.04M
    return x;
154
5.04M
}
_Z6AsBaseI9prevectorILj28EhjiE7CScriptERKT_RKT0_
Line
Count
Source
151
4.65M
{
152
4.65M
    static_assert(std::is_base_of_v<Out, In>);
153
4.65M
    return x;
154
4.65M
}
_Z6AsBaseI12CBlockHeader6CBlockERKT_RKT0_
Line
Count
Source
151
307k
{
152
307k
    static_assert(std::is_base_of_v<Out, In>);
153
307k
    return x;
154
307k
}
_Z6AsBaseI8CNetAddr8CServiceERKT_RKT0_
Line
Count
Source
151
87.2k
{
152
87.2k
    static_assert(std::is_base_of_v<Out, In>);
153
87.2k
    return x;
154
87.2k
}
Unexecuted instantiation: _Z6AsBaseI8CService8CAddressERKT_RKT0_
Unexecuted instantiation: _Z6AsBaseI8CAddress8AddrInfoERKT_RKT0_
Unexecuted instantiation: _Z6AsBaseI11FlatFilePos10CDiskTxPosERKT_RKT0_
155
156
38.4M
#define READWRITE(...) (ser_action.SerReadWriteMany(s, __VA_ARGS__))
157
0
#define SER_READ(obj, code) ser_action.SerRead(s, obj, [&](Stream& s, std::remove_const_t<Type>& obj) { code; })
Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR10DataStreamNS_9SerParamsEES_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS5_RS_E_clESC_SD_
Unexecuted instantiation: _ZZN18CPartialMerkleTree16SerializationOpsI10DataStreamS_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS1_RS_E_clES8_S9_
Unexecuted instantiation: _ZZN18CPartialMerkleTree16SerializationOpsI10DataStreamS_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS1_RS_E0_clES8_S9_
Unexecuted instantiation: _ZZN6wallet16WalletDescriptor16SerializationOpsI10DataStreamS0_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS2_RS0_E_clES9_SA_
Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR12HashVerifierI8AutoFileENS_9SerParamsEES_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS7_RS_E_clESE_SF_
Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR8AutoFileNS_9SerParamsEES_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS5_RS_E_clESC_SD_
Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR12HashVerifierI10DataStreamENS_9SerParamsEES_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS7_RS_E_clESE_SF_
158
0
#define SER_WRITE(obj, code) ser_action.SerWrite(s, obj, [&](Stream& s, const Type& obj) { code; })
Unexecuted instantiation: _ZZN18CPartialMerkleTree16SerializationOpsI10DataStreamKS_15ActionSerializeEEvRT0_RT_T1_ENKUlRS1_RS2_E_clES9_SA_
Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR10DataStreamNS_9SerParamsEEKS_15ActionSerializeEEvRT0_RT_T1_ENKUlRS5_RS6_E_clESD_SE_
Unexecuted instantiation: _ZZN6wallet16WalletDescriptor16SerializationOpsI10DataStreamKS0_15ActionSerializeEEvRT0_RT_T1_ENKUlRS2_RS3_E_clESA_SB_
Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR18HashedSourceWriterI8AutoFileENS_9SerParamsEEKS_15ActionSerializeEEvRT0_RT_T1_ENKUlRS7_RS8_E_clESF_SG_
Unexecuted instantiation: _ZZN18CPartialMerkleTree16SerializationOpsI12VectorWriterKS_15ActionSerializeEEvRT0_RT_T1_ENKUlRS1_RS2_E_clES9_SA_
Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR12VectorWriterNS_9SerParamsEEKS_15ActionSerializeEEvRT0_RT_T1_ENKUlRS5_RS6_E_clESD_SE_
159
160
/**
161
 * Implement the Ser and Unser methods needed for implementing a formatter (see Using below).
162
 *
163
 * Both Ser and Unser are delegated to a single static method SerializationOps, which is polymorphic
164
 * in the serialized/deserialized type (allowing it to be const when serializing, and non-const when
165
 * deserializing).
166
 *
167
 * Example use:
168
 *   struct FooFormatter {
169
 *     FORMATTER_METHODS(Class, obj) { READWRITE(obj.val1, VARINT(obj.val2)); }
170
 *   }
171
 *   would define a class FooFormatter that defines a serialization of Class objects consisting
172
 *   of serializing its val1 member using the default serialization, and its val2 member using
173
 *   VARINT serialization. That FooFormatter can then be used in statements like
174
 *   READWRITE(Using<FooFormatter>(obj.bla)).
175
 */
176
#define FORMATTER_METHODS(cls, obj) \
177
    template<typename Stream> \
178
16.5M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN5CTxIn3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
177k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CScript3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
447k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN9COutPoint3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
177k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CTxOut3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
270k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CBlock3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
48.1k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN12CBlockHeader3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
48.1k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN25CBlockHeaderAndShortTxIDs3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
178
134k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN12CBlockHeader3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
178
134k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN20PrefilledTransaction3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
178
137k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN5CTxIn3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
852k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN9COutPoint3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
852k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CScript3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
2.09M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CTxOut3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
1.24M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN17BlockTransactions3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
178
320k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CBlock3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
258k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN12CBlockHeader3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
258k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN14CBlockFileInfo3SerI10DataStreamEEvRT_RKS_
Line
Count
Source
178
36
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
Unexecuted instantiation: _ZN25CBlockHeaderAndShortTxIDs3SerI10DataStreamEEvRT_RKS_
_ZN12CBlockHeader3SerI10DataStreamEEvRT_RKS_
Line
Count
Source
178
196k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
Unexecuted instantiation: _ZN20PrefilledTransaction3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN5CTxIn3SerI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RKS_
Unexecuted instantiation: _ZN9COutPoint3SerI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RKS_
Unexecuted instantiation: _ZN7CScript3SerI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RKS_
Unexecuted instantiation: _ZN6CTxOut3SerI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RKS_
Unexecuted instantiation: _ZN8CFeeRate3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN12CMerkleBlock3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN18CPartialMerkleTree3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN9COutPoint3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN7CScript3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN5CTxIn3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN11FlatFilePos3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN13KeyOriginInfo3SerI10DataStreamEEvRT_RKS_
_ZN6CTxOut3SerI12SizeComputerEEvRT_RKS_
Line
Count
Source
178
35.4k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CScript3SerI12SizeComputerEEvRT_RKS_
Line
Count
Source
178
35.4k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
Unexecuted instantiation: _ZN6CTxOut3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN11XOnlyPubKey3SerI12SizeComputerEEvRT_RKS_
Unexecuted instantiation: _ZN11XOnlyPubKey3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN6CBlock3SerI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RKS_
Unexecuted instantiation: _ZN12CBlockHeader3SerI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RKS_
Unexecuted instantiation: _ZN13CBlockLocator3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN7CTxUndo3SerI10DataStreamEEvRT_RKS_
_ZN16TxOutCompression3SerI10DataStreamEEvRT_RK6CTxOut
Line
Count
Source
178
30
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
Unexecuted instantiation: _ZN10CBlockUndo3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN8CService3SerI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_RKS_
Unexecuted instantiation: _ZN14CMessageHeader3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN8CAddress3SerI12ParamsStreamIR10DataStreamNS_9SerParamsEEEEvRT_RKS_
Unexecuted instantiation: _ZN8CService3SerI12ParamsStreamIRS1_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RKS_
Unexecuted instantiation: _ZN4CInv3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN12CBloomFilter3SerI10DataStreamEEvRT_RKS_
_ZN15CDiskBlockIndex3SerI10DataStreamEEvRT_RKS_
Line
Count
Source
178
186
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
Unexecuted instantiation: _ZN17BlockTransactions3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN24BlockTransactionsRequest3SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN25CBlockHeaderAndShortTxIDs3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_
Unexecuted instantiation: _ZN20PrefilledTransaction3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_
Unexecuted instantiation: _ZN5CTxIn3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_RKS_
Unexecuted instantiation: _ZN9COutPoint3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_RKS_
Unexecuted instantiation: _ZN7CScript3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_RKS_
Unexecuted instantiation: _ZN6CTxOut3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_RKS_
Unexecuted instantiation: _ZN16TxOutCompression3SerI8AutoFileEEvRT_RK6CTxOut
Unexecuted instantiation: _ZN6wallet12CKeyMetadata3SerI10DataStreamEEvRT_RKS0_
Unexecuted instantiation: _ZN6wallet10CMasterKey3SerI10DataStreamEEvRT_RKS0_
Unexecuted instantiation: _ZN6wallet16WalletDescriptor3SerI10DataStreamEEvRT_RKS0_
Unexecuted instantiation: _ZN6wallet8CHDChain3SerI10DataStreamEEvRT_RKS0_
_ZN8CService3SerI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEEvRT_RKS_
Line
Count
Source
178
87.2k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
Unexecuted instantiation: _ZN8CAddress3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileENS_9SerParamsEEEEvRT_RKS_
Unexecuted instantiation: _ZN8CService3SerI12ParamsStreamIRS1_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RKS_
Unexecuted instantiation: _ZN8AddrInfo3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_RKS_
Unexecuted instantiation: _ZN8AddrInfo3SerI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_RKS_
Unexecuted instantiation: _ZN25CBlockHeaderAndShortTxIDs3SerI12SizeComputerEEvRT_RKS_
Unexecuted instantiation: _ZN12CBlockHeader3SerI12SizeComputerEEvRT_RKS_
Unexecuted instantiation: _ZN20PrefilledTransaction3SerI12SizeComputerEEvRT_RKS_
Unexecuted instantiation: blockfilterindex.cpp:_ZN12_GLOBAL__N_19DBHashKey3SerI10DataStreamEEvRT_RKS0_
Unexecuted instantiation: blockfilterindex.cpp:_ZN12_GLOBAL__N_15DBVal3SerI10DataStreamEEvRT_RKS0_
Unexecuted instantiation: coinstatsindex.cpp:_ZN12_GLOBAL__N_19DBHashKey3SerI10DataStreamEEvRT_RKS0_
Unexecuted instantiation: coinstatsindex.cpp:_ZN12_GLOBAL__N_15DBVal3SerI10DataStreamEEvRT_RKS0_
Unexecuted instantiation: _ZN10MuHash30723SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN7Num30723SerI10DataStreamEEvRT_RKS_
Unexecuted instantiation: _ZN10CDiskTxPos3SerI10DataStreamEEvRT_RKS_
_ZN9COutPoint3SerI10HashWriterEEvRT_RKS_
Line
Count
Source
178
11.4k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CTxOut3SerI10HashWriterEEvRT_RKS_
Line
Count
Source
178
11.4k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CScript3SerI10HashWriterEEvRT_RKS_
Line
Count
Source
178
11.4k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN14CMessageHeader3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
178
1.11M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN4CInv3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
178
5.66k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN13CBlockLocator3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
178
5.42k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
Unexecuted instantiation: _ZN12CMerkleBlock3SerI12VectorWriterEEvRT_RKS_
Unexecuted instantiation: _ZN18CPartialMerkleTree3SerI12VectorWriterEEvRT_RKS_
_ZN24BlockTransactionsRequest3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
178
2.53k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
Unexecuted instantiation: _ZN8CAddress3SerI12ParamsStreamIR12VectorWriterNS_9SerParamsEEEEvRT_RKS_
Unexecuted instantiation: _ZN8CService3SerI12ParamsStreamIRS1_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RKS_
_ZN10CBlockUndo3SerI12SizeComputerEEvRT_RKS_
Line
Count
Source
178
782
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CTxUndo3SerI12SizeComputerEEvRT_RKS_
Line
Count
Source
178
749
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN16TxOutCompression3SerI12SizeComputerEEvRT_RK6CTxOut
Line
Count
Source
178
749
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN10CBlockUndo3SerI10HashWriterEEvRT_RKS_
Line
Count
Source
178
782
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CTxUndo3SerI10HashWriterEEvRT_RKS_
Line
Count
Source
178
749
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN16TxOutCompression3SerI10HashWriterEEvRT_RK6CTxOut
Line
Count
Source
178
749
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN10CBlockUndo3SerI14BufferedWriterI8AutoFileEEEvRT_RKS_
Line
Count
Source
178
782
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CTxUndo3SerI14BufferedWriterI8AutoFileEEEvRT_RKS_
Line
Count
Source
178
749
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN16TxOutCompression3SerI14BufferedWriterI8AutoFileEEEvRT_RK6CTxOut
Line
Count
Source
178
749
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CBlock3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
1.11k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN12CBlockHeader3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
1.11k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN5CTxIn3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
2.46k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN9COutPoint3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
2.46k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CScript3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
6.03k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CTxOut3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
3.57k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
Unexecuted instantiation: _ZN5CTxIn3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RKS_
Unexecuted instantiation: _ZN9COutPoint3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RKS_
Unexecuted instantiation: _ZN7CScript3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RKS_
Unexecuted instantiation: _ZN6CTxOut3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RKS_
Unexecuted instantiation: _ZN5CCoin3SerI10DataStreamEEvRT_RKS_
txdb.cpp:_ZN12_GLOBAL__N_19CoinEntry3SerI10DataStreamEEvRT_RKS0_
Line
Count
Source
178
177k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN12CBlockHeader3SerI10HashWriterEEvRT_RKS_
Line
Count
Source
178
2.37M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN5CTxIn3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
878k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN9COutPoint3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
878k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CScript3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
2.05M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CTxOut3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
178
1.17M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
179
    template<typename Stream> \
180
4.27M
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN6CBlock5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_
Unexecuted instantiation: _ZN12CBlockHeader5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_
_ZN5CTxIn5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
180
114k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN9COutPoint5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
180
114k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN7CScript5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
180
290k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN6CTxOut5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
180
175k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN12CBlockHeader5UnserI10DataStreamEEvRT_RS_
Line
Count
Source
180
181k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN13CBlockLocator5UnserI10DataStreamEEvRT_RS_
_ZN14CBlockFileInfo5UnserI10DataStreamEEvRT_RS_
Line
Count
Source
180
7.28k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN9COutPoint5UnserI10DataStreamEEvRT_RS_
_ZN15CDiskBlockIndex5UnserI10DataStreamEEvRT_RS_
Line
Count
Source
180
1.46M
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN16TxOutCompression5UnserI10DataStreamEEvRT_R6CTxOut
Line
Count
Source
180
173k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN8AddrInfo5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_RS_
Unexecuted instantiation: _ZN8CAddress5UnserI12ParamsStreamIR10DataStreamNS_9SerParamsEEEEvRT_RS_
Unexecuted instantiation: _ZN8CService5UnserI12ParamsStreamIRS1_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RS_
_ZN25CBlockHeaderAndShortTxIDs5UnserI10DataStreamEEvRT_RS_
Line
Count
Source
180
61.0k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN20PrefilledTransaction5UnserI10DataStreamEEvRT_RS_
Line
Count
Source
180
62.2k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN8CFeeRate5UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN12CMerkleBlock5UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN18CPartialMerkleTree5UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN7CScript5UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN5CTxIn5UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN11FlatFilePos5UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN13KeyOriginInfo5UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN6CTxOut5UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN11XOnlyPubKey5UnserI10SpanReaderEEvRT_RS_
Unexecuted instantiation: _ZN11XOnlyPubKey5UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN7CTxUndo5UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN10CBlockUndo5UnserI10DataStreamEEvRT_RS_
_ZN8CService5UnserI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_RS_
Line
Count
Source
180
20.9k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN14CMessageHeader5UnserI10DataStreamEEvRT_RS_
Line
Count
Source
180
1.01M
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN4CInv5UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN12CBloomFilter5UnserI10DataStreamEEvRT_RS_
_ZN17BlockTransactions5UnserI10DataStreamEEvRT_RS_
Line
Count
Source
180
111k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN24BlockTransactionsRequest5UnserI10DataStreamEEvRT_RS_
_ZN5CTxIn5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
180
43.7k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN9COutPoint5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
180
43.7k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN7CScript5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
180
131k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN6CTxOut5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
180
87.4k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN6CTxOut5UnserI10SpanReaderEEvRT_RS_
Unexecuted instantiation: _ZN7CScript5UnserI10SpanReaderEEvRT_RS_
Unexecuted instantiation: _ZN6wallet12CKeyMetadata5UnserI10DataStreamEEvRT_RS0_
Unexecuted instantiation: _ZN6wallet16WalletDescriptor5UnserI10DataStreamEEvRT_RS0_
Unexecuted instantiation: _ZN6wallet10CMasterKey5UnserI10DataStreamEEvRT_RS0_
Unexecuted instantiation: _ZN6wallet8CHDChain5UnserI10DataStreamEEvRT_RS0_
Unexecuted instantiation: _ZN8CAddress5UnserI12ParamsStreamIR12HashVerifierI8AutoFileENS_9SerParamsEEEEvRT_RS_
Unexecuted instantiation: _ZN8CService5UnserI12ParamsStreamIRS1_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RS_
Unexecuted instantiation: _ZN8AddrInfo5UnserI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_RS_
Unexecuted instantiation: _ZN8CAddress5UnserI12ParamsStreamIR8AutoFileNS_9SerParamsEEEEvRT_RS_
Unexecuted instantiation: _ZN8CService5UnserI12ParamsStreamIRS1_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RS_
Unexecuted instantiation: _ZN8AddrInfo5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_RS_
Unexecuted instantiation: _ZN8AddrInfo5UnserI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_RS_
Unexecuted instantiation: _ZN8CAddress5UnserI12ParamsStreamIR12HashVerifierI10DataStreamENS_9SerParamsEEEEvRT_RS_
Unexecuted instantiation: _ZN8CService5UnserI12ParamsStreamIRS1_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_RS_
Unexecuted instantiation: blockfilterindex.cpp:_ZN12_GLOBAL__N_15DBVal5UnserI10DataStreamEEvRT_RS0_
Unexecuted instantiation: coinstatsindex.cpp:_ZN12_GLOBAL__N_15DBVal5UnserI10DataStreamEEvRT_RS0_
Unexecuted instantiation: _ZN10MuHash30725UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN7Num30725UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN10CDiskTxPos5UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN12CBlockHeader5UnserI8AutoFileEEvRT_RS_
Unexecuted instantiation: _ZN5CTxIn5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RS_
Unexecuted instantiation: _ZN9COutPoint5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RS_
Unexecuted instantiation: _ZN7CScript5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RS_
Unexecuted instantiation: _ZN6CTxOut5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_RS_
Unexecuted instantiation: _ZN8CService5UnserI12ParamsStreamI10DataStreamN8CAddress9SerParamsEEEEvRT_RS_
_ZN10CBlockUndo5UnserI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_RS_
Line
Count
Source
180
87.4k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN7CTxUndo5UnserI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_RS_
Unexecuted instantiation: _ZN16TxOutCompression5UnserI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_R6CTxOut
_ZN6CBlock5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
180
43.7k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN12CBlockHeader5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
180
43.7k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: txdb.cpp:_ZN12_GLOBAL__N_19CoinEntry5UnserI10DataStreamEEvRT_RS0_
Unexecuted instantiation: _ZN12CBlockHeader5UnserI12BufferedFileEEvRT_RS_
Unexecuted instantiation: _ZN6CBlock5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_RS_
Unexecuted instantiation: _ZN12CBlockHeader5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_RS_
Unexecuted instantiation: _ZN5CTxIn5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_RS_
Unexecuted instantiation: _ZN9COutPoint5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_RS_
Unexecuted instantiation: _ZN7CScript5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_RS_
Unexecuted instantiation: _ZN6CTxOut5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_RS_
Unexecuted instantiation: _ZN16TxOutCompression5UnserI8AutoFileEEvRT_R6CTxOut
181
    template<typename Stream, typename Type, typename Operation> \
182
    static void SerializationOps(Type& obj, Stream& s, Operation ser_action)
183
184
/**
185
 * Formatter methods can retrieve parameters attached to a stream using the
186
 * SER_PARAMS(type) macro as long as the stream is created directly or
187
 * indirectly with a parameter of that type. This permits making serialization
188
 * depend on run-time context in a type-safe way.
189
 *
190
 * Example use:
191
 *   struct BarParameter { bool fancy; ... };
192
 *   struct Bar { ... };
193
 *   struct FooFormatter {
194
 *     FORMATTER_METHODS(Bar, obj) {
195
 *       auto& param = SER_PARAMS(BarParameter);
196
 *       if (param.fancy) {
197
 *         READWRITE(VARINT(obj.value));
198
 *       } else {
199
 *         READWRITE(obj.value);
200
 *       }
201
 *     }
202
 *   };
203
 * which would then be invoked as
204
 *   READWRITE(BarParameter{...}(Using<FooFormatter>(obj.foo)))
205
 *
206
 * parameter(obj) can be invoked anywhere in the call stack; it is
207
 * passed down recursively into all serialization code, until another
208
 * serialization parameter overrides it.
209
 *
210
 * Parameters will be implicitly converted where appropriate. This means that
211
 * "parent" serialization code can use a parameter that derives from, or is
212
 * convertible to, a "child" formatter's parameter type.
213
 *
214
 * Compilation will fail in any context where serialization is invoked but
215
 * no parameter of a type convertible to BarParameter is provided.
216
 */
217
0
#define SER_PARAMS(type) (s.template GetParams<type>())
218
219
#define BASE_SERIALIZE_METHODS(cls)                                                                 \
220
    template <typename Stream>                                                                      \
221
    void Serialize(Stream& s) const                                                                 \
222
16.5M
    {                                                                                               \
223
16.5M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
16.5M
        Ser(s, *this);                                                                              \
225
16.5M
    }                                                                                               \
_ZNK5CTxIn9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
222
177k
    {                                                                                               \
223
177k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
177k
        Ser(s, *this);                                                                              \
225
177k
    }                                                                                               \
_ZNK7CScript9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
222
447k
    {                                                                                               \
223
447k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
447k
        Ser(s, *this);                                                                              \
225
447k
    }                                                                                               \
_ZNK9COutPoint9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
222
177k
    {                                                                                               \
223
177k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
177k
        Ser(s, *this);                                                                              \
225
177k
    }                                                                                               \
_ZNK6CTxOut9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
222
270k
    {                                                                                               \
223
270k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
270k
        Ser(s, *this);                                                                              \
225
270k
    }                                                                                               \
_ZNK6CBlock9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
222
48.1k
    {                                                                                               \
223
48.1k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
48.1k
        Ser(s, *this);                                                                              \
225
48.1k
    }                                                                                               \
_ZNK12CBlockHeader9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
222
48.1k
    {                                                                                               \
223
48.1k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
48.1k
        Ser(s, *this);                                                                              \
225
48.1k
    }                                                                                               \
_ZNK25CBlockHeaderAndShortTxIDs9SerializeI12VectorWriterEEvRT_
Line
Count
Source
222
134k
    {                                                                                               \
223
134k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
134k
        Ser(s, *this);                                                                              \
225
134k
    }                                                                                               \
_ZNK12CBlockHeader9SerializeI12VectorWriterEEvRT_
Line
Count
Source
222
134k
    {                                                                                               \
223
134k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
134k
        Ser(s, *this);                                                                              \
225
134k
    }                                                                                               \
_ZNK20PrefilledTransaction9SerializeI12VectorWriterEEvRT_
Line
Count
Source
222
137k
    {                                                                                               \
223
137k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
137k
        Ser(s, *this);                                                                              \
225
137k
    }                                                                                               \
_ZNK5CTxIn9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
222
852k
    {                                                                                               \
223
852k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
852k
        Ser(s, *this);                                                                              \
225
852k
    }                                                                                               \
_ZNK9COutPoint9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
222
852k
    {                                                                                               \
223
852k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
852k
        Ser(s, *this);                                                                              \
225
852k
    }                                                                                               \
_ZNK7CScript9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
222
2.09M
    {                                                                                               \
223
2.09M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
2.09M
        Ser(s, *this);                                                                              \
225
2.09M
    }                                                                                               \
_ZNK6CTxOut9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
222
1.24M
    {                                                                                               \
223
1.24M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
1.24M
        Ser(s, *this);                                                                              \
225
1.24M
    }                                                                                               \
_ZNK17BlockTransactions9SerializeI12VectorWriterEEvRT_
Line
Count
Source
222
320k
    {                                                                                               \
223
320k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
320k
        Ser(s, *this);                                                                              \
225
320k
    }                                                                                               \
_ZNK6CBlock9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
222
258k
    {                                                                                               \
223
258k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
258k
        Ser(s, *this);                                                                              \
225
258k
    }                                                                                               \
_ZNK12CBlockHeader9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
222
258k
    {                                                                                               \
223
258k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
258k
        Ser(s, *this);                                                                              \
225
258k
    }                                                                                               \
_ZNK14CBlockFileInfo9SerializeI10DataStreamEEvRT_
Line
Count
Source
222
36
    {                                                                                               \
223
36
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
36
        Ser(s, *this);                                                                              \
225
36
    }                                                                                               \
Unexecuted instantiation: _ZNK25CBlockHeaderAndShortTxIDs9SerializeI10DataStreamEEvRT_
_ZNK12CBlockHeader9SerializeI10DataStreamEEvRT_
Line
Count
Source
222
196k
    {                                                                                               \
223
196k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
196k
        Ser(s, *this);                                                                              \
225
196k
    }                                                                                               \
Unexecuted instantiation: _ZNK20PrefilledTransaction9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK5CTxIn9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK9COutPoint9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK7CScript9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK6CTxOut9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK8CFeeRate9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK12CMerkleBlock9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK18CPartialMerkleTree9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK9COutPoint9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK7CScript9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK5CTxIn9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK11FlatFilePos9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK13KeyOriginInfo9SerializeI10DataStreamEEvRT_
_ZNK6CTxOut9SerializeI12SizeComputerEEvRT_
Line
Count
Source
222
35.4k
    {                                                                                               \
223
35.4k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
35.4k
        Ser(s, *this);                                                                              \
225
35.4k
    }                                                                                               \
_ZNK7CScript9SerializeI12SizeComputerEEvRT_
Line
Count
Source
222
35.4k
    {                                                                                               \
223
35.4k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
35.4k
        Ser(s, *this);                                                                              \
225
35.4k
    }                                                                                               \
Unexecuted instantiation: _ZNK6CTxOut9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK11XOnlyPubKey9SerializeI12SizeComputerEEvRT_
Unexecuted instantiation: _ZNK11XOnlyPubKey9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK6CBlock9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK12CBlockHeader9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK13CBlockLocator9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK7CTxUndo9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK10CBlockUndo9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK8CService9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK14CMessageHeader9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK8CAddress9SerializeI12ParamsStreamIR10DataStreamNS_9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK8CService9SerializeI12ParamsStreamIRS1_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK4CInv9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK12CBloomFilter9SerializeI10DataStreamEEvRT_
_ZNK15CDiskBlockIndex9SerializeI10DataStreamEEvRT_
Line
Count
Source
222
186
    {                                                                                               \
223
186
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
186
        Ser(s, *this);                                                                              \
225
186
    }                                                                                               \
Unexecuted instantiation: _ZNK17BlockTransactions9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK24BlockTransactionsRequest9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK25CBlockHeaderAndShortTxIDs9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK20PrefilledTransaction9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK5CTxIn9SerializeI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_
Unexecuted instantiation: _ZNK9COutPoint9SerializeI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_
Unexecuted instantiation: _ZNK7CScript9SerializeI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_
Unexecuted instantiation: _ZNK6CTxOut9SerializeI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EEEvRT_
Unexecuted instantiation: _ZNK6wallet12CKeyMetadata9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK6wallet10CMasterKey9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK6wallet16WalletDescriptor9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK6wallet8CHDChain9SerializeI10DataStreamEEvRT_
_ZNK8CService9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEEvRT_
Line
Count
Source
222
87.2k
    {                                                                                               \
223
87.2k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
87.2k
        Ser(s, *this);                                                                              \
225
87.2k
    }                                                                                               \
Unexecuted instantiation: _ZNK8CAddress9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileENS_9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK8CService9SerializeI12ParamsStreamIRS1_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK8AddrInfo9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK8AddrInfo9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK25CBlockHeaderAndShortTxIDs9SerializeI12SizeComputerEEvRT_
Unexecuted instantiation: _ZNK12CBlockHeader9SerializeI12SizeComputerEEvRT_
Unexecuted instantiation: _ZNK20PrefilledTransaction9SerializeI12SizeComputerEEvRT_
Unexecuted instantiation: blockfilterindex.cpp:_ZNK12_GLOBAL__N_19DBHashKey9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: blockfilterindex.cpp:_ZNK12_GLOBAL__N_15DBVal9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: coinstatsindex.cpp:_ZNK12_GLOBAL__N_19DBHashKey9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: coinstatsindex.cpp:_ZNK12_GLOBAL__N_15DBVal9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK10MuHash30729SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK7Num30729SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK10CDiskTxPos9SerializeI10DataStreamEEvRT_
_ZNK9COutPoint9SerializeI10HashWriterEEvRT_
Line
Count
Source
222
11.4k
    {                                                                                               \
223
11.4k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
11.4k
        Ser(s, *this);                                                                              \
225
11.4k
    }                                                                                               \
_ZNK6CTxOut9SerializeI10HashWriterEEvRT_
Line
Count
Source
222
11.4k
    {                                                                                               \
223
11.4k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
11.4k
        Ser(s, *this);                                                                              \
225
11.4k
    }                                                                                               \
_ZNK7CScript9SerializeI10HashWriterEEvRT_
Line
Count
Source
222
11.4k
    {                                                                                               \
223
11.4k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
11.4k
        Ser(s, *this);                                                                              \
225
11.4k
    }                                                                                               \
_ZNK14CMessageHeader9SerializeI12VectorWriterEEvRT_
Line
Count
Source
222
1.11M
    {                                                                                               \
223
1.11M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
1.11M
        Ser(s, *this);                                                                              \
225
1.11M
    }                                                                                               \
_ZNK4CInv9SerializeI12VectorWriterEEvRT_
Line
Count
Source
222
5.66k
    {                                                                                               \
223
5.66k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
5.66k
        Ser(s, *this);                                                                              \
225
5.66k
    }                                                                                               \
_ZNK13CBlockLocator9SerializeI12VectorWriterEEvRT_
Line
Count
Source
222
5.42k
    {                                                                                               \
223
5.42k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
5.42k
        Ser(s, *this);                                                                              \
225
5.42k
    }                                                                                               \
Unexecuted instantiation: _ZNK12CMerkleBlock9SerializeI12VectorWriterEEvRT_
Unexecuted instantiation: _ZNK18CPartialMerkleTree9SerializeI12VectorWriterEEvRT_
_ZNK24BlockTransactionsRequest9SerializeI12VectorWriterEEvRT_
Line
Count
Source
222
2.53k
    {                                                                                               \
223
2.53k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
2.53k
        Ser(s, *this);                                                                              \
225
2.53k
    }                                                                                               \
Unexecuted instantiation: _ZNK8CAddress9SerializeI12ParamsStreamIR12VectorWriterNS_9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK8CService9SerializeI12ParamsStreamIRS1_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
_ZNK10CBlockUndo9SerializeI12SizeComputerEEvRT_
Line
Count
Source
222
782
    {                                                                                               \
223
782
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
782
        Ser(s, *this);                                                                              \
225
782
    }                                                                                               \
_ZNK7CTxUndo9SerializeI12SizeComputerEEvRT_
Line
Count
Source
222
749
    {                                                                                               \
223
749
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
749
        Ser(s, *this);                                                                              \
225
749
    }                                                                                               \
_ZNK10CBlockUndo9SerializeI10HashWriterEEvRT_
Line
Count
Source
222
782
    {                                                                                               \
223
782
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
782
        Ser(s, *this);                                                                              \
225
782
    }                                                                                               \
_ZNK7CTxUndo9SerializeI10HashWriterEEvRT_
Line
Count
Source
222
749
    {                                                                                               \
223
749
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
749
        Ser(s, *this);                                                                              \
225
749
    }                                                                                               \
_ZNK10CBlockUndo9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
222
782
    {                                                                                               \
223
782
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
782
        Ser(s, *this);                                                                              \
225
782
    }                                                                                               \
_ZNK7CTxUndo9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
222
749
    {                                                                                               \
223
749
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
749
        Ser(s, *this);                                                                              \
225
749
    }                                                                                               \
_ZNK6CBlock9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
222
1.11k
    {                                                                                               \
223
1.11k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
1.11k
        Ser(s, *this);                                                                              \
225
1.11k
    }                                                                                               \
_ZNK12CBlockHeader9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
222
1.11k
    {                                                                                               \
223
1.11k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
1.11k
        Ser(s, *this);                                                                              \
225
1.11k
    }                                                                                               \
_ZNK5CTxIn9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
222
2.46k
    {                                                                                               \
223
2.46k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
2.46k
        Ser(s, *this);                                                                              \
225
2.46k
    }                                                                                               \
_ZNK9COutPoint9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
222
2.46k
    {                                                                                               \
223
2.46k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
2.46k
        Ser(s, *this);                                                                              \
225
2.46k
    }                                                                                               \
_ZNK7CScript9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
222
6.03k
    {                                                                                               \
223
6.03k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
6.03k
        Ser(s, *this);                                                                              \
225
6.03k
    }                                                                                               \
_ZNK6CTxOut9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
222
3.57k
    {                                                                                               \
223
3.57k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
3.57k
        Ser(s, *this);                                                                              \
225
3.57k
    }                                                                                               \
Unexecuted instantiation: _ZNK5CTxIn9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK9COutPoint9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK7CScript9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK6CTxOut9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK5CCoin9SerializeI10DataStreamEEvRT_
txdb.cpp:_ZNK12_GLOBAL__N_19CoinEntry9SerializeI10DataStreamEEvRT_
Line
Count
Source
222
177k
    {                                                                                               \
223
177k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
177k
        Ser(s, *this);                                                                              \
225
177k
    }                                                                                               \
_ZNK12CBlockHeader9SerializeI10HashWriterEEvRT_
Line
Count
Source
222
2.37M
    {                                                                                               \
223
2.37M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
2.37M
        Ser(s, *this);                                                                              \
225
2.37M
    }                                                                                               \
_ZNK5CTxIn9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
222
878k
    {                                                                                               \
223
878k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
878k
        Ser(s, *this);                                                                              \
225
878k
    }                                                                                               \
_ZNK9COutPoint9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
222
878k
    {                                                                                               \
223
878k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
878k
        Ser(s, *this);                                                                              \
225
878k
    }                                                                                               \
_ZNK7CScript9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
222
2.05M
    {                                                                                               \
223
2.05M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
2.05M
        Ser(s, *this);                                                                              \
225
2.05M
    }                                                                                               \
_ZNK6CTxOut9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
222
1.17M
    {                                                                                               \
223
1.17M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
224
1.17M
        Ser(s, *this);                                                                              \
225
1.17M
    }                                                                                               \
226
    template <typename Stream>                                                                      \
227
    void Unserialize(Stream& s)                                                                     \
228
4.10M
    {                                                                                               \
229
4.10M
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
4.10M
        Unser(s, *this);                                                                            \
231
4.10M
    }
Unexecuted instantiation: _ZN6CBlock11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN12CBlockHeader11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
_ZN5CTxIn11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
228
114k
    {                                                                                               \
229
114k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
114k
        Unser(s, *this);                                                                            \
231
114k
    }
_ZN9COutPoint11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
228
114k
    {                                                                                               \
229
114k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
114k
        Unser(s, *this);                                                                            \
231
114k
    }
_ZN7CScript11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
228
290k
    {                                                                                               \
229
290k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
290k
        Unser(s, *this);                                                                            \
231
290k
    }
_ZN6CTxOut11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
228
175k
    {                                                                                               \
229
175k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
175k
        Unser(s, *this);                                                                            \
231
175k
    }
_ZN12CBlockHeader11UnserializeI10DataStreamEEvRT_
Line
Count
Source
228
181k
    {                                                                                               \
229
181k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
181k
        Unser(s, *this);                                                                            \
231
181k
    }
Unexecuted instantiation: _ZN13CBlockLocator11UnserializeI10DataStreamEEvRT_
_ZN14CBlockFileInfo11UnserializeI10DataStreamEEvRT_
Line
Count
Source
228
7.28k
    {                                                                                               \
229
7.28k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
7.28k
        Unser(s, *this);                                                                            \
231
7.28k
    }
Unexecuted instantiation: _ZN9COutPoint11UnserializeI10DataStreamEEvRT_
_ZN15CDiskBlockIndex11UnserializeI10DataStreamEEvRT_
Line
Count
Source
228
1.46M
    {                                                                                               \
229
1.46M
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
1.46M
        Unser(s, *this);                                                                            \
231
1.46M
    }
Unexecuted instantiation: _ZN8AddrInfo11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN8CAddress11UnserializeI12ParamsStreamIR10DataStreamNS_9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN8CService11UnserializeI12ParamsStreamIRS1_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
_ZN25CBlockHeaderAndShortTxIDs11UnserializeI10DataStreamEEvRT_
Line
Count
Source
228
61.0k
    {                                                                                               \
229
61.0k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
61.0k
        Unser(s, *this);                                                                            \
231
61.0k
    }
_ZN20PrefilledTransaction11UnserializeI10DataStreamEEvRT_
Line
Count
Source
228
62.2k
    {                                                                                               \
229
62.2k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
62.2k
        Unser(s, *this);                                                                            \
231
62.2k
    }
Unexecuted instantiation: _ZN8CFeeRate11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN12CMerkleBlock11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN18CPartialMerkleTree11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7CScript11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN5CTxIn11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN11FlatFilePos11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN13KeyOriginInfo11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN6CTxOut11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN11XOnlyPubKey11UnserializeI10SpanReaderEEvRT_
Unexecuted instantiation: _ZN11XOnlyPubKey11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7CTxUndo11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN10CBlockUndo11UnserializeI10DataStreamEEvRT_
_ZN8CService11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_
Line
Count
Source
228
20.9k
    {                                                                                               \
229
20.9k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
20.9k
        Unser(s, *this);                                                                            \
231
20.9k
    }
_ZN14CMessageHeader11UnserializeI10DataStreamEEvRT_
Line
Count
Source
228
1.01M
    {                                                                                               \
229
1.01M
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
1.01M
        Unser(s, *this);                                                                            \
231
1.01M
    }
Unexecuted instantiation: _ZN4CInv11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN12CBloomFilter11UnserializeI10DataStreamEEvRT_
_ZN17BlockTransactions11UnserializeI10DataStreamEEvRT_
Line
Count
Source
228
111k
    {                                                                                               \
229
111k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
111k
        Unser(s, *this);                                                                            \
231
111k
    }
Unexecuted instantiation: _ZN24BlockTransactionsRequest11UnserializeI10DataStreamEEvRT_
_ZN5CTxIn11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
228
43.7k
    {                                                                                               \
229
43.7k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
43.7k
        Unser(s, *this);                                                                            \
231
43.7k
    }
_ZN9COutPoint11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
228
43.7k
    {                                                                                               \
229
43.7k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
43.7k
        Unser(s, *this);                                                                            \
231
43.7k
    }
_ZN7CScript11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
228
131k
    {                                                                                               \
229
131k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
131k
        Unser(s, *this);                                                                            \
231
131k
    }
_ZN6CTxOut11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
228
87.4k
    {                                                                                               \
229
87.4k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
87.4k
        Unser(s, *this);                                                                            \
231
87.4k
    }
Unexecuted instantiation: _ZN6CTxOut11UnserializeI10SpanReaderEEvRT_
Unexecuted instantiation: _ZN7CScript11UnserializeI10SpanReaderEEvRT_
Unexecuted instantiation: _ZN6wallet12CKeyMetadata11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN6wallet16WalletDescriptor11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN6wallet10CMasterKey11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN6wallet8CHDChain11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN8CAddress11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileENS_9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN8CService11UnserializeI12ParamsStreamIRS1_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN8AddrInfo11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN8CAddress11UnserializeI12ParamsStreamIR8AutoFileNS_9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN8CService11UnserializeI12ParamsStreamIRS1_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN8AddrInfo11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN8AddrInfo11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN8CAddress11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamENS_9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN8CService11UnserializeI12ParamsStreamIRS1_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: blockfilterindex.cpp:_ZN12_GLOBAL__N_15DBVal11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: coinstatsindex.cpp:_ZN12_GLOBAL__N_15DBVal11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN10MuHash307211UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7Num307211UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN10CDiskTxPos11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN12CBlockHeader11UnserializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZN5CTxIn11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN9COutPoint11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN7CScript11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN6CTxOut11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN8CService11UnserializeI12ParamsStreamI10DataStreamN8CAddress9SerParamsEEEEvRT_
_ZN10CBlockUndo11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_
Line
Count
Source
228
87.4k
    {                                                                                               \
229
87.4k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
87.4k
        Unser(s, *this);                                                                            \
231
87.4k
    }
Unexecuted instantiation: _ZN7CTxUndo11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_
_ZN6CBlock11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
228
43.7k
    {                                                                                               \
229
43.7k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
43.7k
        Unser(s, *this);                                                                            \
231
43.7k
    }
_ZN12CBlockHeader11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
228
43.7k
    {                                                                                               \
229
43.7k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
230
43.7k
        Unser(s, *this);                                                                            \
231
43.7k
    }
Unexecuted instantiation: txdb.cpp:_ZN12_GLOBAL__N_19CoinEntry11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN12CBlockHeader11UnserializeI12BufferedFileEEvRT_
Unexecuted instantiation: _ZN6CBlock11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN12CBlockHeader11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN5CTxIn11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN9COutPoint11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN7CScript11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN6CTxOut11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_
232
233
/**
234
 * Implement the Serialize and Unserialize methods by delegating to a single templated
235
 * static method that takes the to-be-(de)serialized object as a parameter. This approach
236
 * has the advantage that the constness of the object becomes a template parameter, and
237
 * thus allows a single implementation that sees the object as const for serializing
238
 * and non-const for deserializing, without casts.
239
 */
240
#define SERIALIZE_METHODS(cls, obj) \
241
    BASE_SERIALIZE_METHODS(cls)     \
242
    FORMATTER_METHODS(cls, obj)
243
244
// Templates for serializing to anything that looks like a stream,
245
// i.e. anything that supports .read(std::span<std::byte>) and .write(std::span<const std::byte>)
246
//
247
// clang-format off
248
249
// Typically int8_t and char are distinct types, but some systems may define int8_t
250
// in terms of char. Forbid serialization of char in the typical case, but allow it if
251
// it's the only way to describe an int8_t.
252
template<class T>
253
concept CharNotInt8 = std::same_as<T, char> && !std::same_as<T, int8_t>;
254
255
template <typename Stream, CharNotInt8 V> void Serialize(Stream&, V) = delete; // char serialization forbidden. Use uint8_t or int8_t
256
template <typename Stream> void Serialize(Stream& s, std::byte a) { ser_writedata8(s, uint8_t(a)); }
257
0
template<typename Stream> inline void Serialize(Stream& s, int8_t a  ) { ser_writedata8(s, a); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_a
Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_a
258
1.56M
template<typename Stream> inline void Serialize(Stream& s, uint8_t a ) { ser_writedata8(s, a); }
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_h
Line
Count
Source
258
30.5k
template<typename Stream> inline void Serialize(Stream& s, uint8_t a ) { ser_writedata8(s, a); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_h
Unexecuted instantiation: _Z9SerializeI12VectorWriterEvRT_h
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_h
Line
Count
Source
258
852k
template<typename Stream> inline void Serialize(Stream& s, uint8_t a ) { ser_writedata8(s, a); }
_Z9SerializeI10DataStreamEvRT_h
Line
Count
Source
258
292k
template<typename Stream> inline void Serialize(Stream& s, uint8_t a ) { ser_writedata8(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_h
_Z9SerializeI12SizeComputerEvRT_h
Line
Count
Source
258
749
template<typename Stream> inline void Serialize(Stream& s, uint8_t a ) { ser_writedata8(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_h
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_h
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_h
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEvRT_h
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_h
_Z9SerializeI10HashWriterEvRT_h
Line
Count
Source
258
749
template<typename Stream> inline void Serialize(Stream& s, uint8_t a ) { ser_writedata8(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_h
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_h
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_h
_Z9SerializeI14BufferedWriterI8AutoFileEEvRT_h
Line
Count
Source
258
749
template<typename Stream> inline void Serialize(Stream& s, uint8_t a ) { ser_writedata8(s, a); }
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_h
Line
Count
Source
258
2.46k
template<typename Stream> inline void Serialize(Stream& s, uint8_t a ) { ser_writedata8(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_h
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_h
Line
Count
Source
258
387k
template<typename Stream> inline void Serialize(Stream& s, uint8_t a ) { ser_writedata8(s, a); }
259
0
template<typename Stream> inline void Serialize(Stream& s, int16_t a ) { ser_writedata16(s, a); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_s
Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_s
260
0
template<typename Stream> inline void Serialize(Stream& s, uint16_t a) { ser_writedata16(s, a); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_t
Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_t
261
3.12M
template<typename Stream> inline void Serialize(Stream& s, int32_t a ) { ser_writedata32(s, a); }
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_i
Line
Count
Source
261
48.1k
template<typename Stream> inline void Serialize(Stream& s, int32_t a ) { ser_writedata32(s, a); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_i
_Z9SerializeI12VectorWriterEvRT_i
Line
Count
Source
261
226k
template<typename Stream> inline void Serialize(Stream& s, int32_t a ) { ser_writedata32(s, a); }
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_i
Line
Count
Source
261
258k
template<typename Stream> inline void Serialize(Stream& s, int32_t a ) { ser_writedata32(s, a); }
_Z9SerializeI10DataStreamEvRT_i
Line
Count
Source
261
211k
template<typename Stream> inline void Serialize(Stream& s, int32_t a ) { ser_writedata32(s, a); }
Unexecuted instantiation: _Z9SerializeI12SizeComputerEvRT_i
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_i
_Z9SerializeI10HashWriterEvRT_i
Line
Count
Source
261
2.37M
template<typename Stream> inline void Serialize(Stream& s, int32_t a ) { ser_writedata32(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_i
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_i
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_i
Line
Count
Source
261
1.11k
template<typename Stream> inline void Serialize(Stream& s, int32_t a ) { ser_writedata32(s, a); }
262
17.8M
template<typename Stream> inline void Serialize(Stream& s, uint32_t a) { ser_writedata32(s, a); }
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_j
Line
Count
Source
262
854k
template<typename Stream> inline void Serialize(Stream& s, uint32_t a) { ser_writedata32(s, a); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_j
_Z9SerializeI12VectorWriterEvRT_j
Line
Count
Source
262
1.52M
template<typename Stream> inline void Serialize(Stream& s, uint32_t a) { ser_writedata32(s, a); }
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_j
Line
Count
Source
262
4.18M
template<typename Stream> inline void Serialize(Stream& s, uint32_t a) { ser_writedata32(s, a); }
_Z9SerializeI10DataStreamEvRT_j
Line
Count
Source
262
588k
template<typename Stream> inline void Serialize(Stream& s, uint32_t a) { ser_writedata32(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_j
Unexecuted instantiation: _Z9SerializeI12SizeComputerEvRT_j
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_j
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_j
_Z9SerializeI10HashWriterEvRT_j
Line
Count
Source
262
7.16M
template<typename Stream> inline void Serialize(Stream& s, uint32_t a) { ser_writedata32(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_j
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEvRT_j
_Z9SerializeI14BufferedWriterI8AutoFileEEvRT_j
Line
Count
Source
262
1.89k
template<typename Stream> inline void Serialize(Stream& s, uint32_t a) { ser_writedata32(s, a); }
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_j
Line
Count
Source
262
13.1k
template<typename Stream> inline void Serialize(Stream& s, uint32_t a) { ser_writedata32(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_j
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_j
Line
Count
Source
262
3.51M
template<typename Stream> inline void Serialize(Stream& s, uint32_t a) { ser_writedata32(s, a); }
263
2.83M
template<typename Stream> inline void Serialize(Stream& s, int64_t a ) { ser_writedata64(s, a); }
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_x
Line
Count
Source
263
270k
template<typename Stream> inline void Serialize(Stream& s, int64_t a ) { ser_writedata64(s, a); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_x
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_x
Line
Count
Source
263
1.24M
template<typename Stream> inline void Serialize(Stream& s, int64_t a ) { ser_writedata64(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_x
Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_x
_Z9SerializeI12SizeComputerEvRT_x
Line
Count
Source
263
35.4k
template<typename Stream> inline void Serialize(Stream& s, int64_t a ) { ser_writedata64(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_x
_Z9SerializeI12VectorWriterEvRT_x
Line
Count
Source
263
92.8k
template<typename Stream> inline void Serialize(Stream& s, int64_t a ) { ser_writedata64(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_x
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_x
_Z9SerializeI10HashWriterEvRT_x
Line
Count
Source
263
11.4k
template<typename Stream> inline void Serialize(Stream& s, int64_t a ) { ser_writedata64(s, a); }
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_x
Line
Count
Source
263
3.57k
template<typename Stream> inline void Serialize(Stream& s, int64_t a ) { ser_writedata64(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_x
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_x
Line
Count
Source
263
1.17M
template<typename Stream> inline void Serialize(Stream& s, int64_t a ) { ser_writedata64(s, a); }
264
552k
template<typename Stream> inline void Serialize(Stream& s, uint64_t a) { ser_writedata64(s, a); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_y
_Z9SerializeI12VectorWriterEvRT_y
Line
Count
Source
264
356k
template<typename Stream> inline void Serialize(Stream& s, uint64_t a) { ser_writedata64(s, a); }
_Z9SerializeI10DataStreamEvRT_y
Line
Count
Source
264
196k
template<typename Stream> inline void Serialize(Stream& s, uint64_t a) { ser_writedata64(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_y
Unexecuted instantiation: _Z9SerializeI10HashWriterEvRT_y
Unexecuted instantiation: _Z9SerializeI12SizeComputerEvRT_y
265
2.31M
template <typename Stream, BasicByte B, int N> void Serialize(Stream& s, const B (&a)[N]) { s.write(MakeByteSpan(a)); }
Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehLi4EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehLi5EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI12SizeComputerTk9BasicBytehLi78EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehLi78EEvRT_RAT1__KT0_
_Z9SerializeI12VectorWriterTk9BasicBytehLi4EEvRT_RAT1__KT0_
Line
Count
Source
265
1.11M
template <typename Stream, BasicByte B, int N> void Serialize(Stream& s, const B (&a)[N]) { s.write(MakeByteSpan(a)); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytecLi12EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__KT0_
_Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__KT0_
Line
Count
Source
265
87.2k
template <typename Stream, BasicByte B, int N> void Serialize(Stream& s, const B (&a)[N]) { s.write(MakeByteSpan(a)); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__KT0_
_Z9SerializeI12VectorWriterTk9BasicBytecLi12EEvRT_RAT1__KT0_
Line
Count
Source
265
1.11M
template <typename Stream, BasicByte B, int N> void Serialize(Stream& s, const B (&a)[N]) { s.write(MakeByteSpan(a)); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI10HashWriterTk9BasicBytehLi384EEvRT_RAT1__KT0_
266
1.11M
template <typename Stream, BasicByte B, std::size_t N> void Serialize(Stream& s, const std::array<B, N>& a) { s.write(MakeByteSpan(a)); }
Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehLm4EEvRT_RKNSt3__15arrayIT0_XT1_EEE
Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehLm5EEvRT_RKNSt3__15arrayIT0_XT1_EEE
Unexecuted instantiation: _Z9SerializeI8AutoFileTk9BasicBytehLm5EEvRT_RKNSt3__15arrayIT0_XT1_EEE
Unexecuted instantiation: _Z9SerializeI8AutoFileTk9BasicBytehLm4EEvRT_RKNSt3__15arrayIT0_XT1_EEE
Unexecuted instantiation: _Z9SerializeI18HashedSourceWriterI8AutoFileETk9BasicBytehLm4EEvRT_RKNSt3__15arrayIT0_XT1_EEE
_Z9SerializeI12VectorWriterTk9BasicBytehLm4EEvRT_RKNSt3__15arrayIT0_XT1_EEE
Line
Count
Source
266
1.11M
template <typename Stream, BasicByte B, std::size_t N> void Serialize(Stream& s, const std::array<B, N>& a) { s.write(MakeByteSpan(a)); }
_Z9SerializeI12VectorWriterTk9BasicByteSt4byteLm168EEvRT_RKNSt3__15arrayIT0_XT1_EEE
Line
Count
Source
266
2.21k
template <typename Stream, BasicByte B, std::size_t N> void Serialize(Stream& s, const std::array<B, N>& a) { s.write(MakeByteSpan(a)); }
Unexecuted instantiation: _Z9SerializeI8AutoFileTk9BasicByteSt4byteLm8EEvRT_RKNSt3__15arrayIT0_XT1_EEE
_Z9SerializeI14BufferedWriterI8AutoFileETk9BasicBytehLm4EEvRT_RKNSt3__15arrayIT0_XT1_EEE
Line
Count
Source
266
1.89k
template <typename Stream, BasicByte B, std::size_t N> void Serialize(Stream& s, const std::array<B, N>& a) { s.write(MakeByteSpan(a)); }
267
8.67M
template <typename Stream, BasicByte B, std::size_t N> void Serialize(Stream& s, std::span<B, N> span) { s.write(std::as_bytes(span)); }
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsETk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
Line
Count
Source
267
273k
template <typename Stream, BasicByte B, std::size_t N> void Serialize(Stream& s, std::span<B, N> span) { s.write(std::as_bytes(span)); }
_Z9SerializeI12VectorWriterTk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
Line
Count
Source
267
705k
template <typename Stream, BasicByte B, std::size_t N> void Serialize(Stream& s, std::span<B, N> span) { s.write(std::as_bytes(span)); }
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsETk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
Line
Count
Source
267
1.36M
template <typename Stream, BasicByte B, std::size_t N> void Serialize(Stream& s, std::span<B, N> span) { s.write(std::as_bytes(span)); }
_Z9SerializeI10DataStreamTk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
Line
Count
Source
267
587k
template <typename Stream, BasicByte B, std::size_t N> void Serialize(Stream& s, std::span<B, N> span) { s.write(std::as_bytes(span)); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsETk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
Unexecuted instantiation: _Z9SerializeI12SizeComputerTk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicByteKhLm20EEvRT_NSt3__14spanIT0_XT1_EEE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_ETk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
Unexecuted instantiation: _Z9SerializeI8AutoFileTk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
_Z9SerializeI10HashWriterTk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
Line
Count
Source
267
4.85M
template <typename Stream, BasicByte B, std::size_t N> void Serialize(Stream& s, std::span<B, N> span) { s.write(std::as_bytes(span)); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEETk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEETk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
_Z9SerializeI14BufferedWriterI8AutoFileETk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
Line
Count
Source
267
782
template <typename Stream, BasicByte B, std::size_t N> void Serialize(Stream& s, std::span<B, N> span) { s.write(std::as_bytes(span)); }
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsETk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
Line
Count
Source
267
4.68k
template <typename Stream, BasicByte B, std::size_t N> void Serialize(Stream& s, std::span<B, N> span) { s.write(std::as_bytes(span)); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsETk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsETk9BasicByteKhLm32EEvRT_NSt3__14spanIT0_XT1_EEE
Line
Count
Source
267
878k
template <typename Stream, BasicByte B, std::size_t N> void Serialize(Stream& s, std::span<B, N> span) { s.write(std::as_bytes(span)); }
268
2.27k
template <typename Stream, BasicByte B> void Serialize(Stream& s, std::span<B> span) { s.write(std::as_bytes(span)); }
_Z9SerializeI10DataStreamTk9BasicByteKhEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Line
Count
Source
268
30
template <typename Stream, BasicByte B> void Serialize(Stream& s, std::span<B> span) { s.write(std::as_bytes(span)); }
_Z9SerializeI12SizeComputerTk9BasicByteKhEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Line
Count
Source
268
749
template <typename Stream, BasicByte B> void Serialize(Stream& s, std::span<B> span) { s.write(std::as_bytes(span)); }
Unexecuted instantiation: _Z9SerializeI12VectorWriterTk9BasicByteKhEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z9SerializeI12VectorWriterTk9BasicByteSt4byteEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z9SerializeI8AutoFileTk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z9SerializeI8AutoFileTk9BasicByteKhEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z9SerializeI10HashWriterTk9BasicBytecEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicByteKSt4byteEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z9SerializeI8AutoFileTk9BasicByteKcEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z9SerializeI12VectorWriterTk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z9SerializeI12SizeComputerTk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z9SerializeI10HashWriterTk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
_Z9SerializeI10HashWriterTk9BasicByteKhEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Line
Count
Source
268
749
template <typename Stream, BasicByte B> void Serialize(Stream& s, std::span<B> span) { s.write(std::as_bytes(span)); }
Unexecuted instantiation: _Z9SerializeI14BufferedWriterI8AutoFileETk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
_Z9SerializeI14BufferedWriterI8AutoFileETk9BasicByteKhEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Line
Count
Source
268
749
template <typename Stream, BasicByte B> void Serialize(Stream& s, std::span<B> span) { s.write(std::as_bytes(span)); }
269
270
template <typename Stream, CharNotInt8 V> void Unserialize(Stream&, V) = delete; // char serialization forbidden. Use uint8_t or int8_t
271
0
template <typename Stream> void Unserialize(Stream& s, std::byte& a) { a = std::byte{ser_readdata8(s)}; }
272
0
template<typename Stream> inline void Unserialize(Stream& s, int8_t& a  ) { a = ser_readdata8(s); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Ra
Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Ra
Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Ra
273
1.66M
template<typename Stream> inline void Unserialize(Stream& s, uint8_t& a ) { a = ser_readdata8(s); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rh
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_Rh
Line
Count
Source
273
114k
template<typename Stream> inline void Unserialize(Stream& s, uint8_t& a ) { a = ser_readdata8(s); }
_Z11UnserializeI10DataStreamEvRT_Rh
Line
Count
Source
273
1.47M
template<typename Stream> inline void Unserialize(Stream& s, uint8_t& a ) { a = ser_readdata8(s); }
Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rh
Unexecuted instantiation: _Z11UnserializeI10SpanReaderEvRT_Rh
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_Rh
_Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_Rh
Line
Count
Source
273
38.1k
template<typename Stream> inline void Unserialize(Stream& s, uint8_t& a ) { a = ser_readdata8(s); }
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_Rh
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEvRT_Rh
Line
Count
Source
273
43.7k
template<typename Stream> inline void Unserialize(Stream& s, uint8_t& a ) { a = ser_readdata8(s); }
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_Rh
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEvRT_Rh
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_Rh
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEvRT_Rh
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEvRT_Rh
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_Rh
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_Rh
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10DataStreamN8CAddress9SerParamsEEEvRT_Rh
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEvRT_Rh
274
0
template<typename Stream> inline void Unserialize(Stream& s, int16_t& a ) { a = ser_readdata16(s); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rs
Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rs
Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Rs
275
0
template<typename Stream> inline void Unserialize(Stream& s, uint16_t& a) { a = ser_readdata16(s); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rt
Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rt
Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Rt
276
1.73M
template<typename Stream> inline void Unserialize(Stream& s, int32_t& a ) { a = ser_readdata32(s); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Ri
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_Ri
_Z11UnserializeI10DataStreamEvRT_Ri
Line
Count
Source
276
1.68M
template<typename Stream> inline void Unserialize(Stream& s, int32_t& a ) { a = ser_readdata32(s); }
Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Ri
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_Ri
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEvRT_Ri
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEvRT_Ri
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEvRT_Ri
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEvRT_Ri
Line
Count
Source
276
43.7k
template<typename Stream> inline void Unserialize(Stream& s, int32_t& a ) { a = ser_readdata32(s); }
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEvRT_Ri
277
6.76M
template<typename Stream> inline void Unserialize(Stream& s, uint32_t& a) { a = ser_readdata32(s); }
_Z11UnserializeI8AutoFileEvRT_Rj
Line
Count
Source
277
43.7k
template<typename Stream> inline void Unserialize(Stream& s, uint32_t& a) { a = ser_readdata32(s); }
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_Rj
Line
Count
Source
277
458k
template<typename Stream> inline void Unserialize(Stream& s, uint32_t& a) { a = ser_readdata32(s); }
_Z11UnserializeI10DataStreamEvRT_Rj
Line
Count
Source
277
5.95M
template<typename Stream> inline void Unserialize(Stream& s, uint32_t& a) { a = ser_readdata32(s); }
Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rj
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_Rj
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEvRT_Rj
Line
Count
Source
277
306k
template<typename Stream> inline void Unserialize(Stream& s, uint32_t& a) { a = ser_readdata32(s); }
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEvRT_Rj
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEvRT_Rj
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEvRT_Rj
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_Rj
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEvRT_Rj
278
284k
template<typename Stream> inline void Unserialize(Stream& s, int64_t& a ) { a = ser_readdata64(s); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rx
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_Rx
Line
Count
Source
278
175k
template<typename Stream> inline void Unserialize(Stream& s, int64_t& a ) { a = ser_readdata64(s); }
Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rx
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_Rx
_Z11UnserializeI10DataStreamEvRT_Rx
Line
Count
Source
278
20.9k
template<typename Stream> inline void Unserialize(Stream& s, int64_t& a ) { a = ser_readdata64(s); }
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEvRT_Rx
Line
Count
Source
278
87.4k
template<typename Stream> inline void Unserialize(Stream& s, int64_t& a ) { a = ser_readdata64(s); }
Unexecuted instantiation: _Z11UnserializeI10SpanReaderEvRT_Rx
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEvRT_Rx
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEvRT_Rx
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEvRT_Rx
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_Rx
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEvRT_Rx
279
110k
template<typename Stream> inline void Unserialize(Stream& s, uint64_t& a) { a = ser_readdata64(s); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Ry
Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Ry
Unexecuted instantiation: _Z11UnserializeI10SpanReaderEvRT_Ry
_Z11UnserializeI10DataStreamEvRT_Ry
Line
Count
Source
279
110k
template<typename Stream> inline void Unserialize(Stream& s, uint64_t& a) { a = ser_readdata64(s); }
280
2.04M
template <typename Stream, BasicByte B, int N> void Unserialize(Stream& s, B (&a)[N]) { s.read(MakeWritableByteSpan(a)); }
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__T0_
_Z11UnserializeI10DataStreamTk9BasicBytehLi4EEvRT_RAT1__T0_
Line
Count
Source
280
1.01M
template <typename Stream, BasicByte B, int N> void Unserialize(Stream& s, B (&a)[N]) { s.read(MakeWritableByteSpan(a)); }
Unexecuted instantiation: _Z11UnserializeI10DataStreamTk9BasicBytehLi5EEvRT_RAT1__T0_
_Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__T0_
Line
Count
Source
280
20.9k
template <typename Stream, BasicByte B, int N> void Unserialize(Stream& s, B (&a)[N]) { s.read(MakeWritableByteSpan(a)); }
_Z11UnserializeI10DataStreamTk9BasicBytecLi12EEvRT_RAT1__T0_
Line
Count
Source
280
1.01M
template <typename Stream, BasicByte B, int N> void Unserialize(Stream& s, B (&a)[N]) { s.read(MakeWritableByteSpan(a)); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytecLi368EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytecLi12EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytehLi20EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytehLi16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10DataStreamN8CAddress9SerParamsEETk9BasicBytehLi16EEvRT_RAT1__T0_
281
1.06M
template <typename Stream, BasicByte B, std::size_t N> void Unserialize(Stream& s, std::array<B, N>& a) { s.read(MakeWritableByteSpan(a)); }
_Z11UnserializeI10DataStreamTk9BasicBytehLm4EEvRT_RNSt3__15arrayIT0_XT1_EEE
Line
Count
Source
281
1.01M
template <typename Stream, BasicByte B, std::size_t N> void Unserialize(Stream& s, std::array<B, N>& a) { s.read(MakeWritableByteSpan(a)); }
Unexecuted instantiation: _Z11UnserializeI10DataStreamTk9BasicBytehLm5EEvRT_RNSt3__15arrayIT0_XT1_EEE
Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytehLm5EEvRT_RNSt3__15arrayIT0_XT1_EEE
_Z11UnserializeI8AutoFileTk9BasicBytehLm4EEvRT_RNSt3__15arrayIT0_XT1_EEE
Line
Count
Source
281
43.7k
template <typename Stream, BasicByte B, std::size_t N> void Unserialize(Stream& s, std::array<B, N>& a) { s.read(MakeWritableByteSpan(a)); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicByteSt4byteLm20EEvRT_RNSt3__15arrayIT0_XT1_EEE
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI10DataStreamETk9BasicBytehLm4EEvRT_RNSt3__15arrayIT0_XT1_EEE
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI8AutoFileETk9BasicBytehLm4EEvRT_RNSt3__15arrayIT0_XT1_EEE
_Z11UnserializeI8AutoFileTk9BasicByteSt4byteLm8EEvRT_RNSt3__15arrayIT0_XT1_EEE
Line
Count
Source
281
7.28k
template <typename Stream, BasicByte B, std::size_t N> void Unserialize(Stream& s, std::array<B, N>& a) { s.read(MakeWritableByteSpan(a)); }
Unexecuted instantiation: _Z11UnserializeI12BufferedFileTk9BasicBytehLm4EEvRT_RNSt3__15arrayIT0_XT1_EEE
282
0
template <typename Stream, BasicByte B, std::size_t N> void Unserialize(Stream& s, std::span<B, N> span) { s.read(std::as_writable_bytes(span)); }
283
212k
template <typename Stream, BasicByte B> void Unserialize(Stream& s, std::span<B> span) { s.read(std::as_writable_bytes(span)); }
_Z11UnserializeI10DataStreamTk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Line
Count
Source
283
173k
template <typename Stream, BasicByte B> void Unserialize(Stream& s, std::span<B> span) { s.read(std::as_writable_bytes(span)); }
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
_Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEETk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Line
Count
Source
283
38.1k
template <typename Stream, BasicByte B> void Unserialize(Stream& s, std::span<B> span) { s.read(std::as_writable_bytes(span)); }
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEETk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEETk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEETk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEETk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10DataStreamN8CAddress9SerParamsEETk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEETk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
284
285
149k
template <typename Stream> inline void Serialize(Stream& s, bool a) { uint8_t f = a; ser_writedata8(s, f); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_b
_Z9SerializeI12VectorWriterEvRT_b
Line
Count
Source
285
149k
template <typename Stream> inline void Serialize(Stream& s, bool a) { uint8_t f = a; ser_writedata8(s, f); }
Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_b
Unexecuted instantiation: _Z9SerializeI10HashWriterEvRT_b
286
49.6k
template <typename Stream> inline void Unserialize(Stream& s, bool& a) { uint8_t f = ser_readdata8(s); a = f; }
Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rb
Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rb
_Z11UnserializeI10DataStreamEvRT_Rb
Line
Count
Source
286
49.6k
template <typename Stream> inline void Unserialize(Stream& s, bool& a) { uint8_t f = ser_readdata8(s); a = f; }
287
// clang-format on
288
289
290
/**
291
 * Compact Size
292
 * size <  253        -- 1 byte
293
 * size <= USHRT_MAX  -- 3 bytes  (253 + 2 bytes)
294
 * size <= UINT_MAX   -- 5 bytes  (254 + 4 bytes)
295
 * size >  UINT_MAX   -- 9 bytes  (255 + 8 bytes)
296
 */
297
constexpr inline unsigned int GetSizeOfCompactSize(uint64_t nSize)
298
37.0k
{
299
37.0k
    if (nSize < 253)             return sizeof(unsigned char);
300
0
    else if (nSize <= std::numeric_limits<uint16_t>::max()) return sizeof(unsigned char) + sizeof(uint16_t);
301
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())  return sizeof(unsigned char) + sizeof(unsigned int);
302
0
    else                         return sizeof(unsigned char) + sizeof(uint64_t);
303
37.0k
}
304
305
inline void WriteCompactSize(SizeComputer& os, uint64_t nSize);
306
307
template<typename Stream>
308
void WriteCompactSize(Stream& os, uint64_t nSize)
309
13.6M
{
310
13.6M
    if (nSize < 253)
311
13.6M
    {
312
13.6M
        ser_writedata8(os, nSize);
313
13.6M
    }
314
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
315
0
    {
316
0
        ser_writedata8(os, 253);
317
0
        ser_writedata16(os, nSize);
318
0
    }
319
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
320
0
    {
321
0
        ser_writedata8(os, 254);
322
0
        ser_writedata32(os, nSize);
323
0
    }
324
0
    else
325
0
    {
326
0
        ser_writedata8(os, 255);
327
0
        ser_writedata64(os, nSize);
328
0
    }
329
13.6M
    return;
330
13.6M
}
_Z16WriteCompactSizeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_y
Line
Count
Source
309
942k
{
310
942k
    if (nSize < 253)
311
942k
    {
312
942k
        ser_writedata8(os, nSize);
313
942k
    }
314
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
315
0
    {
316
0
        ser_writedata8(os, 253);
317
0
        ser_writedata16(os, nSize);
318
0
    }
319
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
320
0
    {
321
0
        ser_writedata8(os, 254);
322
0
        ser_writedata32(os, nSize);
323
0
    }
324
0
    else
325
0
    {
326
0
        ser_writedata8(os, 255);
327
0
        ser_writedata64(os, nSize);
328
0
    }
329
942k
    return;
330
942k
}
Unexecuted instantiation: _Z16WriteCompactSizeI8AutoFileEvRT_y
_Z16WriteCompactSizeI12VectorWriterEvRT_y
Line
Count
Source
309
464k
{
310
464k
    if (nSize < 253)
311
464k
    {
312
464k
        ser_writedata8(os, nSize);
313
464k
    }
314
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
315
0
    {
316
0
        ser_writedata8(os, 253);
317
0
        ser_writedata16(os, nSize);
318
0
    }
319
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
320
0
    {
321
0
        ser_writedata8(os, 254);
322
0
        ser_writedata32(os, nSize);
323
0
    }
324
0
    else
325
0
    {
326
0
        ser_writedata8(os, 255);
327
0
        ser_writedata64(os, nSize);
328
0
    }
329
464k
    return;
330
464k
}
_Z16WriteCompactSizeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_y
Line
Count
Source
309
7.19M
{
310
7.19M
    if (nSize < 253)
311
7.19M
    {
312
7.19M
        ser_writedata8(os, nSize);
313
7.19M
    }
314
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
315
0
    {
316
0
        ser_writedata8(os, 253);
317
0
        ser_writedata16(os, nSize);
318
0
    }
319
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
320
0
    {
321
0
        ser_writedata8(os, 254);
322
0
        ser_writedata32(os, nSize);
323
0
    }
324
0
    else
325
0
    {
326
0
        ser_writedata8(os, 255);
327
0
        ser_writedata64(os, nSize);
328
0
    }
329
7.19M
    return;
330
7.19M
}
_Z16WriteCompactSizeI10DataStreamEvRT_y
Line
Count
Source
309
60.6k
{
310
60.6k
    if (nSize < 253)
311
60.6k
    {
312
60.6k
        ser_writedata8(os, nSize);
313
60.6k
    }
314
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
315
0
    {
316
0
        ser_writedata8(os, 253);
317
0
        ser_writedata16(os, nSize);
318
0
    }
319
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
320
0
    {
321
0
        ser_writedata8(os, 254);
322
0
        ser_writedata32(os, nSize);
323
0
    }
324
0
    else
325
0
    {
326
0
        ser_writedata8(os, 255);
327
0
        ser_writedata64(os, nSize);
328
0
    }
329
60.6k
    return;
330
60.6k
}
Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_y
Unexecuted instantiation: _Z16WriteCompactSizeI12SizeComputerEvRT_y
Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_y
Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_y
Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_y
Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_y
_Z16WriteCompactSizeI10HashWriterEvRT_y
Line
Count
Source
309
20.2k
{
310
20.2k
    if (nSize < 253)
311
20.2k
    {
312
20.2k
        ser_writedata8(os, nSize);
313
20.2k
    }
314
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
315
0
    {
316
0
        ser_writedata8(os, 253);
317
0
        ser_writedata16(os, nSize);
318
0
    }
319
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
320
0
    {
321
0
        ser_writedata8(os, 254);
322
0
        ser_writedata32(os, nSize);
323
0
    }
324
0
    else
325
0
    {
326
0
        ser_writedata8(os, 255);
327
0
        ser_writedata64(os, nSize);
328
0
    }
329
20.2k
    return;
330
20.2k
}
Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEvRT_y
Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_y
Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_y
Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEvRT_y
Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEvRT_y
_Z16WriteCompactSizeI14BufferedWriterI8AutoFileEEvRT_y
Line
Count
Source
309
1.53k
{
310
1.53k
    if (nSize < 253)
311
1.53k
    {
312
1.53k
        ser_writedata8(os, nSize);
313
1.53k
    }
314
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
315
0
    {
316
0
        ser_writedata8(os, 253);
317
0
        ser_writedata16(os, nSize);
318
0
    }
319
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
320
0
    {
321
0
        ser_writedata8(os, 254);
322
0
        ser_writedata32(os, nSize);
323
0
    }
324
0
    else
325
0
    {
326
0
        ser_writedata8(os, 255);
327
0
        ser_writedata64(os, nSize);
328
0
    }
329
1.53k
    return;
330
1.53k
}
_Z16WriteCompactSizeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_y
Line
Count
Source
309
19.4k
{
310
19.4k
    if (nSize < 253)
311
19.4k
    {
312
19.4k
        ser_writedata8(os, nSize);
313
19.4k
    }
314
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
315
0
    {
316
0
        ser_writedata8(os, 253);
317
0
        ser_writedata16(os, nSize);
318
0
    }
319
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
320
0
    {
321
0
        ser_writedata8(os, 254);
322
0
        ser_writedata32(os, nSize);
323
0
    }
324
0
    else
325
0
    {
326
0
        ser_writedata8(os, 255);
327
0
        ser_writedata64(os, nSize);
328
0
    }
329
19.4k
    return;
330
19.4k
}
Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_y
_Z16WriteCompactSizeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_y
Line
Count
Source
309
4.97M
{
310
4.97M
    if (nSize < 253)
311
4.97M
    {
312
4.97M
        ser_writedata8(os, nSize);
313
4.97M
    }
314
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
315
0
    {
316
0
        ser_writedata8(os, 253);
317
0
        ser_writedata16(os, nSize);
318
0
    }
319
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
320
0
    {
321
0
        ser_writedata8(os, 254);
322
0
        ser_writedata32(os, nSize);
323
0
    }
324
0
    else
325
0
    {
326
0
        ser_writedata8(os, 255);
327
0
        ser_writedata64(os, nSize);
328
0
    }
329
4.97M
    return;
330
4.97M
}
331
332
/**
333
 * Decode a CompactSize-encoded variable-length integer.
334
 *
335
 * As these are primarily used to encode the size of vector-like serializations, by default a range
336
 * check is performed. When used as a generic number encoding, range_check should be set to false.
337
 */
338
template<typename Stream>
339
uint64_t ReadCompactSize(Stream& is, bool range_check = true)
340
1.94M
{
341
1.94M
    uint8_t chSize = ser_readdata8(is);
342
1.94M
    uint64_t nSizeRet = 0;
343
1.94M
    if (chSize < 253)
344
1.94M
    {
345
1.94M
        nSizeRet = chSize;
346
1.94M
    }
347
0
    else if (chSize == 253)
348
0
    {
349
0
        nSizeRet = ser_readdata16(is);
350
0
        if (nSizeRet < 253)
351
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
352
0
    }
353
0
    else if (chSize == 254)
354
0
    {
355
0
        nSizeRet = ser_readdata32(is);
356
0
        if (nSizeRet < 0x10000u)
357
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
358
0
    }
359
0
    else
360
0
    {
361
0
        nSizeRet = ser_readdata64(is);
362
0
        if (nSizeRet < 0x100000000ULL)
363
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
364
0
    }
365
1.94M
    if (range_check && nSizeRet > MAX_SIZE) {
366
0
        throw std::ios_base::failure("ReadCompactSize(): size too large");
367
0
    }
368
1.94M
    return nSizeRet;
369
1.94M
}
Unexecuted instantiation: _Z15ReadCompactSizeI8AutoFileEyRT_b
_Z15ReadCompactSizeI12ParamsStreamIR10DataStream20TransactionSerParamsEEyRT_b
Line
Count
Source
340
975k
{
341
975k
    uint8_t chSize = ser_readdata8(is);
342
975k
    uint64_t nSizeRet = 0;
343
975k
    if (chSize < 253)
344
975k
    {
345
975k
        nSizeRet = chSize;
346
975k
    }
347
0
    else if (chSize == 253)
348
0
    {
349
0
        nSizeRet = ser_readdata16(is);
350
0
        if (nSizeRet < 253)
351
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
352
0
    }
353
0
    else if (chSize == 254)
354
0
    {
355
0
        nSizeRet = ser_readdata32(is);
356
0
        if (nSizeRet < 0x10000u)
357
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
358
0
    }
359
0
    else
360
0
    {
361
0
        nSizeRet = ser_readdata64(is);
362
0
        if (nSizeRet < 0x100000000ULL)
363
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
364
0
    }
365
975k
    if (range_check && nSizeRet > MAX_SIZE) {
366
0
        throw std::ios_base::failure("ReadCompactSize(): size too large");
367
0
    }
368
975k
    return nSizeRet;
369
975k
}
_Z15ReadCompactSizeI10DataStreamEyRT_b
Line
Count
Source
340
447k
{
341
447k
    uint8_t chSize = ser_readdata8(is);
342
447k
    uint64_t nSizeRet = 0;
343
447k
    if (chSize < 253)
344
447k
    {
345
447k
        nSizeRet = chSize;
346
447k
    }
347
0
    else if (chSize == 253)
348
0
    {
349
0
        nSizeRet = ser_readdata16(is);
350
0
        if (nSizeRet < 253)
351
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
352
0
    }
353
0
    else if (chSize == 254)
354
0
    {
355
0
        nSizeRet = ser_readdata32(is);
356
0
        if (nSizeRet < 0x10000u)
357
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
358
0
    }
359
0
    else
360
0
    {
361
0
        nSizeRet = ser_readdata64(is);
362
0
        if (nSizeRet < 0x100000000ULL)
363
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
364
0
    }
365
447k
    if (range_check && nSizeRet > MAX_SIZE) {
366
0
        throw std::ios_base::failure("ReadCompactSize(): size too large");
367
0
    }
368
447k
    return nSizeRet;
369
447k
}
Unexecuted instantiation: _Z15ReadCompactSizeI12BufferedFileEyRT_b
_Z15ReadCompactSizeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEyRT_b
Line
Count
Source
340
38.1k
{
341
38.1k
    uint8_t chSize = ser_readdata8(is);
342
38.1k
    uint64_t nSizeRet = 0;
343
38.1k
    if (chSize < 253)
344
38.1k
    {
345
38.1k
        nSizeRet = chSize;
346
38.1k
    }
347
0
    else if (chSize == 253)
348
0
    {
349
0
        nSizeRet = ser_readdata16(is);
350
0
        if (nSizeRet < 253)
351
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
352
0
    }
353
0
    else if (chSize == 254)
354
0
    {
355
0
        nSizeRet = ser_readdata32(is);
356
0
        if (nSizeRet < 0x10000u)
357
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
358
0
    }
359
0
    else
360
0
    {
361
0
        nSizeRet = ser_readdata64(is);
362
0
        if (nSizeRet < 0x100000000ULL)
363
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
364
0
    }
365
38.1k
    if (range_check && nSizeRet > MAX_SIZE) {
366
0
        throw std::ios_base::failure("ReadCompactSize(): size too large");
367
0
    }
368
38.1k
    return nSizeRet;
369
38.1k
}
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEyRT_b
Unexecuted instantiation: _Z15ReadCompactSizeI10SpanReaderEyRT_b
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEyRT_b
_Z15ReadCompactSizeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEyRT_b
Line
Count
Source
340
393k
{
341
393k
    uint8_t chSize = ser_readdata8(is);
342
393k
    uint64_t nSizeRet = 0;
343
393k
    if (chSize < 253)
344
393k
    {
345
393k
        nSizeRet = chSize;
346
393k
    }
347
0
    else if (chSize == 253)
348
0
    {
349
0
        nSizeRet = ser_readdata16(is);
350
0
        if (nSizeRet < 253)
351
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
352
0
    }
353
0
    else if (chSize == 254)
354
0
    {
355
0
        nSizeRet = ser_readdata32(is);
356
0
        if (nSizeRet < 0x10000u)
357
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
358
0
    }
359
0
    else
360
0
    {
361
0
        nSizeRet = ser_readdata64(is);
362
0
        if (nSizeRet < 0x100000000ULL)
363
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
364
0
    }
365
393k
    if (range_check && nSizeRet > MAX_SIZE) {
366
0
        throw std::ios_base::failure("ReadCompactSize(): size too large");
367
0
    }
368
393k
    return nSizeRet;
369
393k
}
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEyRT_b
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEyRT_b
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEyRT_b
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEyRT_b
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEyRT_b
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEyRT_b
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEyRT_b
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamI10DataStreamN8CAddress9SerParamsEEEyRT_b
_Z15ReadCompactSizeI12HashVerifierI14BufferedReaderI8AutoFileEEEyRT_b
Line
Count
Source
340
87.4k
{
341
87.4k
    uint8_t chSize = ser_readdata8(is);
342
87.4k
    uint64_t nSizeRet = 0;
343
87.4k
    if (chSize < 253)
344
87.4k
    {
345
87.4k
        nSizeRet = chSize;
346
87.4k
    }
347
0
    else if (chSize == 253)
348
0
    {
349
0
        nSizeRet = ser_readdata16(is);
350
0
        if (nSizeRet < 253)
351
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
352
0
    }
353
0
    else if (chSize == 254)
354
0
    {
355
0
        nSizeRet = ser_readdata32(is);
356
0
        if (nSizeRet < 0x10000u)
357
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
358
0
    }
359
0
    else
360
0
    {
361
0
        nSizeRet = ser_readdata64(is);
362
0
        if (nSizeRet < 0x100000000ULL)
363
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
364
0
    }
365
87.4k
    if (range_check && nSizeRet > MAX_SIZE) {
366
0
        throw std::ios_base::failure("ReadCompactSize(): size too large");
367
0
    }
368
87.4k
    return nSizeRet;
369
87.4k
}
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEyRT_b
370
371
/**
372
 * Variable-length integers: bytes are a MSB base-128 encoding of the number.
373
 * The high bit in each byte signifies whether another digit follows. To make
374
 * sure the encoding is one-to-one, one is subtracted from all but the last digit.
375
 * Thus, the byte sequence a[] with length len, where all but the last byte
376
 * has bit 128 set, encodes the number:
377
 *
378
 *  (a[len-1] & 0x7F) + sum(i=1..len-1, 128^i*((a[len-i-1] & 0x7F)+1))
379
 *
380
 * Properties:
381
 * * Very small (0-127: 1 byte, 128-16511: 2 bytes, 16512-2113663: 3 bytes)
382
 * * Every integer has exactly one encoding
383
 * * Encoding does not depend on size of original integer type
384
 * * No redundancy: every (infinite) byte sequence corresponds to a list
385
 *   of encoded integers.
386
 *
387
 * 0:         [0x00]  256:        [0x81 0x00]
388
 * 1:         [0x01]  16383:      [0xFE 0x7F]
389
 * 127:       [0x7F]  16384:      [0xFF 0x00]
390
 * 128:  [0x80 0x00]  16511:      [0xFF 0x7F]
391
 * 255:  [0x80 0x7F]  65535: [0x82 0xFE 0x7F]
392
 * 2^32:           [0x8E 0xFE 0xFE 0xFF 0x00]
393
 */
394
395
/**
396
 * Mode for encoding VarInts.
397
 *
398
 * Currently there is no support for signed encodings. The default mode will not
399
 * compile with signed values, and the legacy "nonnegative signed" mode will
400
 * accept signed values, but improperly encode and decode them if they are
401
 * negative. In the future, the DEFAULT mode could be extended to support
402
 * negative numbers in a backwards compatible way, and additional modes could be
403
 * added to support different varint formats (e.g. zigzag encoding).
404
 */
405
enum class VarIntMode { DEFAULT, NONNEGATIVE_SIGNED };
406
407
template <VarIntMode Mode, typename I>
408
struct CheckVarIntMode {
409
    constexpr CheckVarIntMode()
410
11.0M
    {
411
11.0M
        static_assert(Mode != VarIntMode::DEFAULT || std::is_unsigned_v<I>, "Unsigned type required with mode DEFAULT.");
412
11.0M
        static_assert(Mode != VarIntMode::NONNEGATIVE_SIGNED || std::is_signed_v<I>, "Signed type required with mode NONNEGATIVE_SIGNED.");
413
11.0M
    }
_ZN15CheckVarIntModeIL10VarIntMode0EjEC2Ev
Line
Count
Source
410
6.41M
    {
411
6.41M
        static_assert(Mode != VarIntMode::DEFAULT || std::is_unsigned_v<I>, "Unsigned type required with mode DEFAULT.");
412
6.41M
        static_assert(Mode != VarIntMode::NONNEGATIVE_SIGNED || std::is_signed_v<I>, "Signed type required with mode NONNEGATIVE_SIGNED.");
413
6.41M
    }
_ZN15CheckVarIntModeIL10VarIntMode0EyEC2Ev
Line
Count
Source
410
190k
    {
411
190k
        static_assert(Mode != VarIntMode::DEFAULT || std::is_unsigned_v<I>, "Unsigned type required with mode DEFAULT.");
412
190k
        static_assert(Mode != VarIntMode::NONNEGATIVE_SIGNED || std::is_signed_v<I>, "Signed type required with mode NONNEGATIVE_SIGNED.");
413
190k
    }
_ZN15CheckVarIntModeIL10VarIntMode1EiEC2Ev
Line
Count
Source
410
4.39M
    {
411
4.39M
        static_assert(Mode != VarIntMode::DEFAULT || std::is_unsigned_v<I>, "Unsigned type required with mode DEFAULT.");
412
4.39M
        static_assert(Mode != VarIntMode::NONNEGATIVE_SIGNED || std::is_signed_v<I>, "Signed type required with mode NONNEGATIVE_SIGNED.");
413
4.39M
    }
414
};
415
416
template<VarIntMode Mode, typename I>
417
inline unsigned int GetSizeOfVarInt(I n)
418
{
419
    CheckVarIntMode<Mode, I>();
420
    int nRet = 0;
421
    while(true) {
422
        nRet++;
423
        if (n <= 0x7F)
424
            break;
425
        n = (n >> 7) - 1;
426
    }
427
    return nRet;
428
}
429
430
template<typename I>
431
inline void WriteVarInt(SizeComputer& os, I n);
432
433
template<typename Stream, VarIntMode Mode, typename I>
434
void WriteVarInt(Stream& os, I n)
435
185k
{
436
185k
    CheckVarIntMode<Mode, I>();
437
185k
    unsigned char tmp[(sizeof(n)*8+6)/7];
438
185k
    int len=0;
439
189k
    while(true) {
440
189k
        tmp[len] = (n & 0x7F) | (len ? 
0x803.86k
:
0x00185k
);
441
189k
        if (n <= 0x7F)
442
185k
            break;
443
3.86k
        n = (n >> 7) - 1;
444
3.86k
        len++;
445
3.86k
    }
446
189k
    do {
447
189k
        ser_writedata8(os, tmp[len]);
448
189k
    } while(len--);
449
185k
}
Unexecuted instantiation: _Z11WriteVarIntI12VectorWriterL10VarIntMode1EiEvRT_T1_
Unexecuted instantiation: _Z11WriteVarIntI12VectorWriterL10VarIntMode0EyEvRT_T1_
_Z11WriteVarIntI10DataStreamL10VarIntMode0EjEvRT_T1_
Line
Count
Source
435
178k
{
436
178k
    CheckVarIntMode<Mode, I>();
437
178k
    unsigned char tmp[(sizeof(n)*8+6)/7];
438
178k
    int len=0;
439
178k
    while(true) {
440
178k
        tmp[len] = (n & 0x7F) | (len ? 
0x80351
:
0x00178k
);
441
178k
        if (n <= 0x7F)
442
178k
            break;
443
351
        n = (n >> 7) - 1;
444
351
        len++;
445
351
    }
446
178k
    do {
447
178k
        ser_writedata8(os, tmp[len]);
448
178k
    } while(len--);
449
178k
}
_Z11WriteVarIntI10DataStreamL10VarIntMode0EyEvRT_T1_
Line
Count
Source
435
102
{
436
102
    CheckVarIntMode<Mode, I>();
437
102
    unsigned char tmp[(sizeof(n)*8+6)/7];
438
102
    int len=0;
439
426
    while(true) {
440
426
        tmp[len] = (n & 0x7F) | (len ? 
0x80324
:
0x00102
);
441
426
        if (n <= 0x7F)
442
102
            break;
443
324
        n = (n >> 7) - 1;
444
324
        len++;
445
324
    }
446
426
    do {
447
426
        ser_writedata8(os, tmp[len]);
448
426
    } while(len--);
449
102
}
_Z11WriteVarIntI10DataStreamL10VarIntMode1EiEvRT_T1_
Line
Count
Source
435
413
{
436
413
    CheckVarIntMode<Mode, I>();
437
413
    unsigned char tmp[(sizeof(n)*8+6)/7];
438
413
    int len=0;
439
971
    while(true) {
440
971
        tmp[len] = (n & 0x7F) | (len ? 
0x80558
:
0x00413
);
441
971
        if (n <= 0x7F)
442
413
            break;
443
558
        n = (n >> 7) - 1;
444
558
        len++;
445
558
    }
446
971
    do {
447
971
        ser_writedata8(os, tmp[len]);
448
971
    } while(len--);
449
413
}
Unexecuted instantiation: _Z11WriteVarIntI8AutoFileL10VarIntMode0EjEvRT_T1_
Unexecuted instantiation: _Z11WriteVarIntI8AutoFileL10VarIntMode0EyEvRT_T1_
_Z11WriteVarIntI12SizeComputerL10VarIntMode0EjEvRT_T1_
Line
Count
Source
435
1.49k
{
436
1.49k
    CheckVarIntMode<Mode, I>();
437
1.49k
    unsigned char tmp[(sizeof(n)*8+6)/7];
438
1.49k
    int len=0;
439
1.79k
    while(true) {
440
1.79k
        tmp[len] = (n & 0x7F) | (len ? 
0x80297
:
0x001.49k
);
441
1.79k
        if (n <= 0x7F)
442
1.49k
            break;
443
297
        n = (n >> 7) - 1;
444
297
        len++;
445
297
    }
446
1.79k
    do {
447
1.79k
        ser_writedata8(os, tmp[len]);
448
1.79k
    } while(len--);
449
1.49k
}
_Z11WriteVarIntI12SizeComputerL10VarIntMode0EyEvRT_T1_
Line
Count
Source
435
749
{
436
749
    CheckVarIntMode<Mode, I>();
437
749
    unsigned char tmp[(sizeof(n)*8+6)/7];
438
749
    int len=0;
439
1.32k
    while(true) {
440
1.32k
        tmp[len] = (n & 0x7F) | (len ? 
0x80579
:
0x00749
);
441
1.32k
        if (n <= 0x7F)
442
749
            break;
443
579
        n = (n >> 7) - 1;
444
579
        len++;
445
579
    }
446
1.32k
    do {
447
1.32k
        ser_writedata8(os, tmp[len]);
448
1.32k
    } while(len--);
449
749
}
_Z11WriteVarIntI10HashWriterL10VarIntMode0EjEvRT_T1_
Line
Count
Source
435
1.49k
{
436
1.49k
    CheckVarIntMode<Mode, I>();
437
1.49k
    unsigned char tmp[(sizeof(n)*8+6)/7];
438
1.49k
    int len=0;
439
1.79k
    while(true) {
440
1.79k
        tmp[len] = (n & 0x7F) | (len ? 
0x80297
:
0x001.49k
);
441
1.79k
        if (n <= 0x7F)
442
1.49k
            break;
443
297
        n = (n >> 7) - 1;
444
297
        len++;
445
297
    }
446
1.79k
    do {
447
1.79k
        ser_writedata8(os, tmp[len]);
448
1.79k
    } while(len--);
449
1.49k
}
_Z11WriteVarIntI10HashWriterL10VarIntMode0EyEvRT_T1_
Line
Count
Source
435
749
{
436
749
    CheckVarIntMode<Mode, I>();
437
749
    unsigned char tmp[(sizeof(n)*8+6)/7];
438
749
    int len=0;
439
1.32k
    while(true) {
440
1.32k
        tmp[len] = (n & 0x7F) | (len ? 
0x80579
:
0x00749
);
441
1.32k
        if (n <= 0x7F)
442
749
            break;
443
579
        n = (n >> 7) - 1;
444
579
        len++;
445
579
    }
446
1.32k
    do {
447
1.32k
        ser_writedata8(os, tmp[len]);
448
1.32k
    } while(len--);
449
749
}
_Z11WriteVarIntI14BufferedWriterI8AutoFileEL10VarIntMode0EjEvRT_T1_
Line
Count
Source
435
1.49k
{
436
1.49k
    CheckVarIntMode<Mode, I>();
437
1.49k
    unsigned char tmp[(sizeof(n)*8+6)/7];
438
1.49k
    int len=0;
439
1.79k
    while(true) {
440
1.79k
        tmp[len] = (n & 0x7F) | (len ? 
0x80297
:
0x001.49k
);
441
1.79k
        if (n <= 0x7F)
442
1.49k
            break;
443
297
        n = (n >> 7) - 1;
444
297
        len++;
445
297
    }
446
1.79k
    do {
447
1.79k
        ser_writedata8(os, tmp[len]);
448
1.79k
    } while(len--);
449
1.49k
}
_Z11WriteVarIntI14BufferedWriterI8AutoFileEL10VarIntMode0EyEvRT_T1_
Line
Count
Source
435
749
{
436
749
    CheckVarIntMode<Mode, I>();
437
749
    unsigned char tmp[(sizeof(n)*8+6)/7];
438
749
    int len=0;
439
1.32k
    while(true) {
440
1.32k
        tmp[len] = (n & 0x7F) | (len ? 
0x80579
:
0x00749
);
441
1.32k
        if (n <= 0x7F)
442
749
            break;
443
579
        n = (n >> 7) - 1;
444
579
        len++;
445
579
    }
446
1.32k
    do {
447
1.32k
        ser_writedata8(os, tmp[len]);
448
1.32k
    } while(len--);
449
749
}
450
451
template<typename Stream, VarIntMode Mode, typename I>
452
I ReadVarInt(Stream& is)
453
10.8M
{
454
10.8M
    CheckVarIntMode<Mode, I>();
455
10.8M
    I n = 0;
456
19.8M
    while(true) {
457
19.8M
        unsigned char chData = ser_readdata8(is);
458
19.8M
        if (n > (std::numeric_limits<I>::max() >> 7)) {
459
0
           throw std::ios_base::failure("ReadVarInt(): size too large");
460
0
        }
461
19.8M
        n = (n << 7) | (chData & 0x7F);
462
19.8M
        if (chData & 0x80) {
463
9.06M
            if (n == std::numeric_limits<I>::max()) {
464
0
                throw std::ios_base::failure("ReadVarInt(): size too large");
465
0
            }
466
9.06M
            n++;
467
10.8M
        } else {
468
10.8M
            return n;
469
10.8M
        }
470
19.8M
    }
471
10.8M
}
_Z10ReadVarIntI10DataStreamL10VarIntMode0EjET1_RT_
Line
Count
Source
453
6.23M
{
454
6.23M
    CheckVarIntMode<Mode, I>();
455
6.23M
    I n = 0;
456
11.7M
    while(true) {
457
11.7M
        unsigned char chData = ser_readdata8(is);
458
11.7M
        if (n > (std::numeric_limits<I>::max() >> 7)) {
459
0
           throw std::ios_base::failure("ReadVarInt(): size too large");
460
0
        }
461
11.7M
        n = (n << 7) | (chData & 0x7F);
462
11.7M
        if (chData & 0x80) {
463
5.50M
            if (n == std::numeric_limits<I>::max()) {
464
0
                throw std::ios_base::failure("ReadVarInt(): size too large");
465
0
            }
466
5.50M
            n++;
467
6.23M
        } else {
468
6.23M
            return n;
469
6.23M
        }
470
11.7M
    }
471
6.23M
}
_Z10ReadVarIntI10DataStreamL10VarIntMode0EyET1_RT_
Line
Count
Source
453
188k
{
454
188k
    CheckVarIntMode<Mode, I>();
455
188k
    I n = 0;
456
290k
    while(true) {
457
290k
        unsigned char chData = ser_readdata8(is);
458
290k
        if (n > (std::numeric_limits<I>::max() >> 7)) {
459
0
           throw std::ios_base::failure("ReadVarInt(): size too large");
460
0
        }
461
290k
        n = (n << 7) | (chData & 0x7F);
462
290k
        if (chData & 0x80) {
463
102k
            if (n == std::numeric_limits<I>::max()) {
464
0
                throw std::ios_base::failure("ReadVarInt(): size too large");
465
0
            }
466
102k
            n++;
467
188k
        } else {
468
188k
            return n;
469
188k
        }
470
290k
    }
471
188k
}
_Z10ReadVarIntI10DataStreamL10VarIntMode1EiET1_RT_
Line
Count
Source
453
4.39M
{
454
4.39M
    CheckVarIntMode<Mode, I>();
455
4.39M
    I n = 0;
456
7.85M
    while(true) {
457
7.85M
        unsigned char chData = ser_readdata8(is);
458
7.85M
        if (n > (std::numeric_limits<I>::max() >> 7)) {
459
0
           throw std::ios_base::failure("ReadVarInt(): size too large");
460
0
        }
461
7.85M
        n = (n << 7) | (chData & 0x7F);
462
7.85M
        if (chData & 0x80) {
463
3.46M
            if (n == std::numeric_limits<I>::max()) {
464
0
                throw std::ios_base::failure("ReadVarInt(): size too large");
465
0
            }
466
3.46M
            n++;
467
4.39M
        } else {
468
4.39M
            return n;
469
4.39M
        }
470
7.85M
    }
471
4.39M
}
Unexecuted instantiation: _Z10ReadVarIntI10SpanReaderL10VarIntMode1EiET1_RT_
Unexecuted instantiation: _Z10ReadVarIntI10SpanReaderL10VarIntMode0EjET1_RT_
Unexecuted instantiation: _Z10ReadVarIntI10SpanReaderL10VarIntMode0EyET1_RT_
Unexecuted instantiation: _Z10ReadVarIntI12HashVerifierI14BufferedReaderI8AutoFileEEL10VarIntMode0EjET1_RT_
Unexecuted instantiation: _Z10ReadVarIntI12HashVerifierI14BufferedReaderI8AutoFileEEL10VarIntMode0EyET1_RT_
Unexecuted instantiation: _Z10ReadVarIntI8AutoFileL10VarIntMode0EjET1_RT_
Unexecuted instantiation: _Z10ReadVarIntI8AutoFileL10VarIntMode0EyET1_RT_
472
473
/** Simple wrapper class to serialize objects using a formatter; used by Using(). */
474
template<typename Formatter, typename T>
475
class Wrapper
476
{
477
    static_assert(std::is_lvalue_reference_v<T>, "Wrapper needs an lvalue reference type T");
478
protected:
479
    T m_object;
480
public:
481
20.6M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
481
3.18M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
481
1.91M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEEC2ESB_
Line
Count
Source
481
1.27M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEEC2ESD_
Line
Count
Source
481
628k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEEC2ES9_
Line
Count
Source
481
316k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEEC2ES9_
Line
Count
Source
481
158k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEEC2ESA_
Line
Count
Source
481
158k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEEC2ESC_
Line
Count
Source
481
155k
    explicit Wrapper(T obj) : m_object(obj) {}
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEEC2ES9_
_ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERjEC2ES3_
Line
Count
Source
481
6.41M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERyEC2ES3_
Line
Count
Source
481
190k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VarIntFormatterIL10VarIntMode1EERiEC2ES3_
Line
Count
Source
481
4.39M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VarIntFormatterIL10VarIntMode1EERKiEC2ES4_
Line
Count
Source
481
227
    explicit Wrapper(T obj) : m_object(obj) {}
Unexecuted instantiation: cluster_linearize.cpp:_ZN7WrapperIN12_GLOBAL__N_117DepGraphFormatterERKN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEEC2ES9_
Unexecuted instantiation: cluster_linearize.cpp:_ZN7WrapperIN12_GLOBAL__N_117DepGraphFormatterERN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEEC2ES8_
_ZN7WrapperI20CompactSizeFormatterILb1EERKtEC2ES3_
Line
Count
Source
481
137k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEC2ES7_
Line
Count
Source
481
137k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
481
134k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS4_9allocatorIyEEEEEC2ESA_
Line
Count
Source
481
134k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CBlockNS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
481
258k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI17AmountCompressionRxEC2ES1_
Line
Count
Source
481
173k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI17ScriptCompressionR7CScriptEC2ES2_
Line
Count
Source
481
173k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI16TxOutCompressionR6CTxOutEC2ES2_
Line
Count
Source
481
173k
    explicit Wrapper(T obj) : m_object(obj) {}
Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEEC2ESB_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb0EERyEC2ES2_
_ZN7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEC2ES3_
Line
Count
Source
481
42.8k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI20CompactSizeFormatterILb1EERmEC2ES2_
Line
Count
Source
481
38.1k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI19CustomUintFormatterILi2ELb1EERtEC2ES2_
Line
Count
Source
481
20.9k
    explicit Wrapper(T obj) : m_object(obj) {}
Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEEC2ESB_
_ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEC2ES4_
Line
Count
Source
481
611
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERKyEC2ES4_
Line
Count
Source
481
72
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI20CompactSizeFormatterILb1EERtEC2ES2_
Line
Count
Source
481
62.2k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEC2ES6_
Line
Count
Source
481
62.2k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEEC2ES9_
Line
Count
Source
481
61.0k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERNSt3__16vectorIyNS4_9allocatorIyEEEEEC2ES9_
Line
Count
Source
481
61.0k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
481
6.09k
    explicit Wrapper(T obj) : m_object(obj) {}
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorIjNS3_9allocatorIjEEEEEC2ES8_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorIjNS3_9allocatorIjEEEEEC2ES9_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI17TxInUndoFormatterERNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEEC2ES9_
_ZN7WrapperI17AmountCompressionRKxEC2ES2_
Line
Count
Source
481
2.27k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI17ScriptCompressionRK7CScriptEC2ES3_
Line
Count
Source
481
2.27k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI16TxOutCompressionRK6CTxOutEC2ES3_
Line
Count
Source
481
2.27k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
481
2.24k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEEC2ES9_
Line
Count
Source
481
87.4k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
481
2.34k
    explicit Wrapper(T obj) : m_object(obj) {}
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERKmEC2ES3_
_ZN7WrapperI19CustomUintFormatterILi2ELb1EERKtEC2ES3_
Line
Count
Source
481
87.2k
    explicit Wrapper(T obj) : m_object(obj) {}
Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEEC2ESC_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEC2ES4_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI19DifferenceFormatterERNSt3__16vectorItNS3_9allocatorItEEEEEC2ES8_
_ZN7WrapperI15VectorFormatterI19DifferenceFormatterERKNSt3__16vectorItNS3_9allocatorItEEEEEC2ES9_
Line
Count
Source
481
2.53k
    explicit Wrapper(T obj) : m_object(obj) {}
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI12CBlockHeaderNS3_9allocatorIS5_EEEEEC2ES9_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorIiNS3_9allocatorIiEEEEEC2ES9_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERK9prevectorILj8EijiEEC2ES6_
Unexecuted instantiation: _ZN7WrapperI22LimitedStringFormatterILm10EERNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEC2ES9_
Unexecuted instantiation: _ZN7WrapperI22LimitedStringFormatterILm10EERKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEC2ESA_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorIN6wallet9CMerkleTxENS3_9allocatorIS6_EEEEEC2ESA_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_4pairINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEESB_EENS9_ISC_EEEEEC2ESF_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_4pairINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEESB_EENS9_ISC_EEEEEC2ESG_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI8CAddressNS3_9allocatorIS5_EEEEEC2ESA_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI8CAddressNS3_9allocatorIS5_EEEEEC2ES9_
Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIxLb0EERKNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEEC2ESC_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEEC2ES4_
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI4CInvNS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
481
4.65k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI22LimitedStringFormatterILm256EERNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEC2ES9_
Line
Count
Source
481
14.8k
    explicit Wrapper(T obj) : m_object(obj) {}
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI4CInvNS3_9allocatorIS5_EEEEEC2ES9_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI12CBlockHeaderNS3_9allocatorIS5_EEEEEC2ESA_
Unexecuted instantiation: fees.cpp:_ZN7WrapperIN12_GLOBAL__N_122EncodedDoubleFormatterERKdEC2ES3_
Unexecuted instantiation: fees.cpp:_ZN7WrapperI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERKNSt3__16vectorIdNS4_9allocatorIdEEEEEC2ESA_
Unexecuted instantiation: fees.cpp:_ZN7WrapperI15VectorFormatterIS0_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERKNSt3__16vectorINS6_IdNS5_9allocatorIdEEEENS7_IS9_EEEEEC2ESD_
Unexecuted instantiation: fees.cpp:_ZN7WrapperIN12_GLOBAL__N_122EncodedDoubleFormatterERdEC2ES2_
Unexecuted instantiation: fees.cpp:_ZN7WrapperI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERNSt3__16vectorIdNS4_9allocatorIdEEEEEC2ES9_
Unexecuted instantiation: fees.cpp:_ZN7WrapperI15VectorFormatterIS0_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERNSt3__16vectorINS6_IdNS5_9allocatorIdEEEENS7_IS9_EEEEEC2ESC_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI9COutPointNS3_9allocatorIS5_EEEEEC2ES9_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CCoinNS3_9allocatorIS5_EEEEEC2ESA_
482
8.11M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
482
207k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
482
177k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
482
30.5k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
482
48.1k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE9SerializeI12SizeComputerEEvRT_
Unexecuted instantiation: cluster_linearize.cpp:_ZNK7WrapperIN12_GLOBAL__N_117DepGraphFormatterERKN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEE9SerializeI12VectorWriterEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode1EERKiE9SerializeI12VectorWriterEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERyE9SerializeI12VectorWriterEEvRT_
_ZNK7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS4_9allocatorIyEEEEE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
482
134k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
482
134k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI20CompactSizeFormatterILb1EERKtE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
482
137k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
482
137k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
482
1.70M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
482
852k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
482
852k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
482
579k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CBlockNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
482
258k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERKjE9SerializeI10DataStreamEEvRT_
Line
Count
Source
482
611
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERKyE9SerializeI10DataStreamEEvRT_
Line
Count
Source
482
72
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS4_9allocatorIyEEEEE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKtE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEE9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE9SerializeI10DataStreamEEvRT_
Line
Count
Source
482
670
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode1EERKiE9SerializeI10DataStreamEEvRT_
Line
Count
Source
482
227
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorIjNS3_9allocatorIjEEEEE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEE9SerializeI10DataStreamEEvRT_
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERjE9SerializeI10DataStreamEEvRT_
Line
Count
Source
482
177k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI16TxOutCompressionRK6CTxOutE9SerializeI10DataStreamEEvRT_
Line
Count
Source
482
30
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17AmountCompressionRKxE9SerializeI10DataStreamEEvRT_
Line
Count
Source
482
30
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERyE9SerializeI10DataStreamEEvRT_
Line
Count
Source
482
30
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17ScriptCompressionRK7CScriptE9SerializeI10DataStreamEEvRT_
Line
Count
Source
482
30
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi2ELb1EERKtE9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb0EERyE9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsE9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIRS6_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi2ELb1EERKtE9SerializeI12ParamsStreamIRS6_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode1EERiE9SerializeI10DataStreamEEvRT_
Line
Count
Source
482
186
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
Unexecuted instantiation: _ZNK7WrapperI16TxOutCompressionR6CTxOutE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI19DifferenceFormatterERKNSt3__16vectorItNS3_9allocatorItEEEEE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS4_9allocatorIyEEEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKtE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEE9SerializeI12ParamsStreamIRSA_IR12VectorWriter20TransactionSerParamsESD_EEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIRSD_IR12VectorWriter20TransactionSerParamsESG_EEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIRSD_IR12VectorWriter20TransactionSerParamsESG_EEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE9SerializeI12ParamsStreamIRSE_IR12VectorWriter20TransactionSerParamsESH_EEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorIiNS3_9allocatorIiEEEEE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERK9prevectorILj8EijiEE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK7WrapperI22LimitedStringFormatterILm10EERKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERjE9SerializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZNK7WrapperI16TxOutCompressionRK6CTxOutE9SerializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZNK7WrapperI17AmountCompressionRKxE9SerializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERyE9SerializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZNK7WrapperI17ScriptCompressionRK7CScriptE9SerializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_4pairINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEESB_EENS9_ISC_EEEEE9SerializeI10DataStreamEEvRT_
_ZNK7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
482
21.8k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEEvRT_
_ZNK7WrapperI19CustomUintFormatterILi2ELb1EERKtE9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEEvRT_
Line
Count
Source
482
87.2k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI8CAddressNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileENS5_9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb0EERyE9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsE9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIRS6_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi2ELb1EERKtE9SerializeI12ParamsStreamIRS6_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15ChronoFormatterIxLb0EERKNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15ChronoFormatterIxLb0EERKNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS4_9allocatorIyEEEEE9SerializeI12SizeComputerEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE9SerializeI12SizeComputerEEvRT_
Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKtE9SerializeI12SizeComputerEEvRT_
Unexecuted instantiation: _ZNK7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEE9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI4CInvNS3_9allocatorIS5_EEEEE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
482
4.65k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
482
5.42k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI12CBlockHeaderNS3_9allocatorIS5_EEEEE9SerializeI12VectorWriterEEvRT_
_ZNK7WrapperI15VectorFormatterI19DifferenceFormatterERKNSt3__16vectorItNS3_9allocatorItEEEEE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
482
2.53k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI8CAddressNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR12VectorWriterNS5_9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb0EERyE9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsE9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIRS6_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI19CustomUintFormatterILi2ELb1EERKtE9SerializeI12ParamsStreamIRS6_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
482
782
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERjE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
482
1.49k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI16TxOutCompressionRK6CTxOutE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17AmountCompressionRKxE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERyE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17ScriptCompressionRK7CScriptE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEE9SerializeI10HashWriterEEvRT_
Line
Count
Source
482
782
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEE9SerializeI10HashWriterEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERjE9SerializeI10HashWriterEEvRT_
Line
Count
Source
482
1.49k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI16TxOutCompressionRK6CTxOutE9SerializeI10HashWriterEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17AmountCompressionRKxE9SerializeI10HashWriterEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERyE9SerializeI10HashWriterEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17ScriptCompressionRK7CScriptE9SerializeI10HashWriterEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
482
782
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERjE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
482
1.49k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI16TxOutCompressionRK6CTxOutE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17AmountCompressionRKxE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERyE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17ScriptCompressionRK7CScriptE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
482
749
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
482
1.11k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
482
4.92k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
482
2.46k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
482
2.46k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: fees.cpp:_ZNK7WrapperIN12_GLOBAL__N_122EncodedDoubleFormatterERKdE9SerializeI8AutoFileEEvRT_
Unexecuted instantiation: fees.cpp:_ZNK7WrapperI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERKNSt3__16vectorIdNS4_9allocatorIdEEEEE9SerializeI8AutoFileEEvRT_
Unexecuted instantiation: fees.cpp:_ZNK7WrapperI15VectorFormatterIS0_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERKNSt3__16vectorINS6_IdNS5_9allocatorIdEEEENS7_IS9_EEEEE9SerializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CCoinNS3_9allocatorIS5_EEEEE9SerializeI10DataStreamEEvRT_
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
482
1.26M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
482
878k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
482
387k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
483
12.5M
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
483
111k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
483
229k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
483
114k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
483
114k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE11UnserializeI10DataStreamEEvRT_
_ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERjE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
483
6.23M
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERyE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
483
188k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VarIntFormatterIL10VarIntMode1EERiE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
483
4.39M
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
Unexecuted instantiation: cluster_linearize.cpp:_ZN7WrapperIN12_GLOBAL__N_117DepGraphFormatterERN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEE11UnserializeI10SpanReaderEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode1EERiE11UnserializeI10SpanReaderEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERjE11UnserializeI10SpanReaderEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERyE11UnserializeI10SpanReaderEEvRT_
_ZN7WrapperI16TxOutCompressionR6CTxOutE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
483
173k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI17AmountCompressionRxE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
483
173k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI17ScriptCompressionR7CScriptE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
483
173k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb0EERyE11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIRS5_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERtE11UnserializeI12ParamsStreamIRS5_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
_ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
Line
Count
Source
483
38.1k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
_ZN7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERNSt3__16vectorIyNS4_9allocatorIyEEEEE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
483
61.0k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
483
61.0k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI20CompactSizeFormatterILb1EERtE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
483
62.2k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
483
62.2k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorIjNS3_9allocatorIjEEEEE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI17TxInUndoFormatterERNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_
_ZN7WrapperI19CustomUintFormatterILi2ELb1EERtE11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEEvRT_
Line
Count
Source
483
20.9k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI19DifferenceFormatterERNSt3__16vectorItNS3_9allocatorItEEEEE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI12CBlockHeaderNS3_9allocatorIS5_EEEEE11UnserializeI10DataStreamEEvRT_
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
483
87.4k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
483
43.7k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
483
43.7k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7WrapperI22LimitedStringFormatterILm10EERNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorIN6wallet9CMerkleTxENS3_9allocatorIS6_EEEEE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_4pairINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEESB_EENS9_ISC_EEEEE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI8CAddressNS3_9allocatorIS5_EEEEE11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileENS5_9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb0EERyE11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIRS5_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERtE11UnserializeI12ParamsStreamIRS5_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEE11UnserializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb0EERyE11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIRS5_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERtE11UnserializeI12ParamsStreamIRS5_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEE11UnserializeI12HashVerifierI8AutoFileEEEvRT_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEE11UnserializeI12HashVerifierI10DataStreamEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb0EERyE11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIRS5_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERtE11UnserializeI12ParamsStreamIRS5_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERmE11UnserializeI12ParamsStreamI10DataStreamN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI19CustomUintFormatterILi2ELb1EERtE11UnserializeI12ParamsStreamI10DataStreamN8CAddress9SerParamsEEEEvRT_
_ZN7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
483
20.9k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI22LimitedStringFormatterILm256EERNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
483
14.8k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI8CAddressNS3_9allocatorIS5_EEEEE11UnserializeI12ParamsStreamIR10DataStreamNS5_9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI4CInvNS3_9allocatorIS5_EEEEE11UnserializeI10DataStreamEEvRT_
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEE11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_
Line
Count
Source
483
87.4k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI17TxInUndoFormatterERNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEE11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERjE11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI16TxOutCompressionR6CTxOutE11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI17AmountCompressionRxE11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERyE11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_
Unexecuted instantiation: _ZN7WrapperI17ScriptCompressionR7CScriptE11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
483
43.7k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
Unexecuted instantiation: fees.cpp:_ZN7WrapperIN12_GLOBAL__N_122EncodedDoubleFormatterERdE11UnserializeI8AutoFileEEvRT_
Unexecuted instantiation: fees.cpp:_ZN7WrapperI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERNSt3__16vectorIdNS4_9allocatorIdEEEEE11UnserializeI8AutoFileEEvRT_
Unexecuted instantiation: fees.cpp:_ZN7WrapperI15VectorFormatterIS0_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERNSt3__16vectorINS6_IdNS5_9allocatorIdEEEENS7_IS9_EEEEE11UnserializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI9COutPointNS3_9allocatorIS5_EEEEE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE11UnserializeI10SpanReaderEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERjE11UnserializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZN7WrapperI16TxOutCompressionR6CTxOutE11UnserializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZN7WrapperI17AmountCompressionRxE11UnserializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERyE11UnserializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZN7WrapperI17ScriptCompressionR7CScriptE11UnserializeI8AutoFileEEvRT_
484
};
485
486
/** Cause serialization/deserialization of an object to be done using a specified formatter class.
487
 *
488
 * To use this, you need a class Formatter that has public functions Ser(stream, const object&) for
489
 * serialization, and Unser(stream, object&) for deserialization. Serialization routines (inside
490
 * READWRITE, or directly with << and >> operators), can then use Using<Formatter>(object).
491
 *
492
 * This works by constructing a Wrapper<Formatter, T>-wrapped version of object, where T is
493
 * const during serialization, and non-const during deserialization, which maintains const
494
 * correctness.
495
 */
496
template<typename Formatter, typename T>
497
20.6M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: addition_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: addition_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: addition_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: addition_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: autofile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: autofile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: autofile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: autofile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: banman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: banman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: banman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: banman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: bip324.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: bip324.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: bip324.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: bip324.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: bitdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: bitdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: bitdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: bitdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: bitset.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: bitset.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: bitset.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: bitset.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
207k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
177k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Line
Count
Source
497
30.5k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Line
Count
Source
497
48.1k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Line
Count
Source
497
229k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Line
Count
Source
497
114k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
114k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: block_header.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: block_header.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: block_header.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: block_header.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: block_header.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
block_index.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
36.4k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
block_index.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERyE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
14.5k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: block_index.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: block_index.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: block_index.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: block_index.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: blockfilter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: blockfilter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: blockfilter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: blockfilter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: buffered_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: buffered_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: buffered_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: buffered_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
chain.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
4.39M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
chain.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
5.85M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: chain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: chain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: chain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: chain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: checkqueue.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: checkqueue.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: checkqueue.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: checkqueue.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: cluster_linearize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERKiE7WrapperIT_RT0_EOS7_
Unexecuted instantiation: cluster_linearize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEyE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: cluster_linearize.cpp:_ZL5UsingIN12_GLOBAL__N_117DepGraphFormatterERKN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: cluster_linearize.cpp:_ZL5UsingIN12_GLOBAL__N_117DepGraphFormatterERN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEE7WrapperIT_RT0_EOSB_
Unexecuted instantiation: cluster_linearize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: cluster_linearize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: cluster_linearize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERyE7WrapperIT_RT0_EOS6_
cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
1.70M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
852k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Line
Count
Source
497
852k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
cmpctblock.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKtE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
137k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
cmpctblock.cpp:_ZL5UsingI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEE7WrapperIT_RT0_EOSA_
Line
Count
Source
497
137k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
134k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
cmpctblock.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS4_9allocatorIyEEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
134k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Line
Count
Source
497
579k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CBlockNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
258k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
coins_view.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
173k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
coins_view.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERyE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
173k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
coins_view.cpp:_ZL5UsingI17AmountCompressionRxE7WrapperIT_RT0_EOS4_
Line
Count
Source
497
173k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
coins_view.cpp:_ZL5UsingI17ScriptCompressionR7CScriptE7WrapperIT_RT0_EOS5_
Line
Count
Source
497
173k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: coins_view.cpp:_ZL5UsingI16TxOutCompressionR6CTxOutE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: coins_view.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: coinscache_sim.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coinscache_sim.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coinscache_sim.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: coinscache_sim.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: connman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: connman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: connman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: connman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: crypto.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: crypto.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: crypto_aes256.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_aes256.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_aes256.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: crypto_aes256.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: crypto_aes256cbc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_aes256cbc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_aes256cbc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: crypto_aes256cbc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: crypto_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: crypto_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: crypto_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: crypto_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: crypto_poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypto_poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: crypto_poly1305.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: cuckoocache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: cuckoocache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: cuckoocache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: cuckoocache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI20CompactSizeFormatterILb0EERyE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE7WrapperIT_RT0_EOS6_
deserialize.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERmE7WrapperIT_RT0_EOS5_
Line
Count
Source
497
38.1k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERtE7WrapperIT_RT0_EOS5_
Line
Count
Source
497
20.9k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE7WrapperIT_RT0_EOSE_
deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
60
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERyE7WrapperIT_RT0_EOS6_
deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERKjE7WrapperIT_RT0_EOS7_
Line
Count
Source
497
611
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERKyE7WrapperIT_RT0_EOS7_
Line
Count
Source
497
72
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
deserialize.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERtE7WrapperIT_RT0_EOS5_
Line
Count
Source
497
62.2k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEE7WrapperIT_RT0_EOS9_
Line
Count
Source
497
62.2k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Line
Count
Source
497
61.0k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERNSt3__16vectorIyNS4_9allocatorIyEEEEE7WrapperIT_RT0_EOSC_
Line
Count
Source
497
61.0k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKtE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEE7WrapperIT_RT0_EOSA_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS4_9allocatorIyEEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
186
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERKiE7WrapperIT_RT0_EOS7_
Line
Count
Source
497
227
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorIjNS3_9allocatorIjEEEEE7WrapperIT_RT0_EOSB_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorIjNS3_9allocatorIjEEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI17AmountCompressionRxE7WrapperIT_RT0_EOS4_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI17ScriptCompressionR7CScriptE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI17TxInUndoFormatterERNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEjE7WrapperIT_RT0_EOS5_
deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEyE7WrapperIT_RT0_EOS5_
Line
Count
Source
497
30
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI17AmountCompressionRKxE7WrapperIT_RT0_EOS5_
Line
Count
Source
497
30
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI17ScriptCompressionRK7CScriptE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
30
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI16TxOutCompressionRK6CTxOutE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
30
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKmE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERKtE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsE7WrapperIT_RT0_EOS7_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI16TxOutCompressionR6CTxOutE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI19DifferenceFormatterERNSt3__16vectorItNS3_9allocatorItEEEEE7WrapperIT_RT0_EOSB_
Unexecuted instantiation: deserialize.cpp:_ZL5UsingI15VectorFormatterI19DifferenceFormatterERKNSt3__16vectorItNS3_9allocatorItEEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: feefrac.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: feefrac.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: feefrac.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: feefrac.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: fee_rate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: fee_rate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: fee_rate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: fee_rate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: feeratediagram.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: feeratediagram.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: feeratediagram.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: feeratediagram.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: fees.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: fees.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: fees.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: fees.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: flatfile.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: flatfile.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: flatfile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: flatfile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: flatfile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: flatfile.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: float.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: float.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: float.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: float.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: golomb_rice.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: golomb_rice.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: golomb_rice.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: golomb_rice.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: headerssync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI12CBlockHeaderNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: headerssync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: headerssync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: headerssync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: headerssync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: http_request.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: http_request.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: http_request.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: http_request.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: i2p.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: i2p.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: i2p.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: i2p.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: integer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: integer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: integer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: integer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: key.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: key.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: key.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: key.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: kitchen_sink.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: kitchen_sink.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: kitchen_sink.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: kitchen_sink.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: load_external_block_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: load_external_block_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: load_external_block_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: load_external_block_file.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: merkleblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: miniscript.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: miniscript.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: miniscript.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: miniscript.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: minisketch.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: minisketch.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: minisketch.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: minisketch.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: mini_miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: mini_miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: mini_miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: mini_miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: muhash.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: muhash.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: muhash.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: muhash.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: multiplication_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: multiplication_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: multiplication_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: multiplication_overflow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: net.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERmE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: net.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERtE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: net.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: net.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: net.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: net.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: net_permissions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: net_permissions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: net_permissions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: net_permissions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: netaddress.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: netaddress.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: netaddress.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: netaddress.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: netbase_dns_lookup.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: netbase_dns_lookup.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: netbase_dns_lookup.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: netbase_dns_lookup.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: node_eviction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: node_eviction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: node_eviction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: node_eviction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: p2p_handshake.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: p2p_handshake.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: p2p_handshake.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: p2p_handshake.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CBlockNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKtE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEE7WrapperIT_RT0_EOSA_
Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: p2p_headers_presync.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS4_9allocatorIyEEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: p2p_transport_serialization.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: p2p_transport_serialization.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: p2p_transport_serialization.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: p2p_transport_serialization.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: pcp.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: pcp.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: pcp.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: pcp.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: package_eval.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: package_eval.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: package_eval.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: package_eval.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: parse_hd_keypath.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: parse_hd_keypath.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: parse_hd_keypath.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: parse_hd_keypath.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: partially_downloaded_block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: policy_estimator.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: policy_estimator_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: policy_estimator_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: policy_estimator_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: policy_estimator_io.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: poolresource.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: poolresource.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: poolresource.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: poolresource.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: pow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: pow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: pow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: pow.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: prevector.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorIiNS3_9allocatorIiEEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: prevector.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERK9prevectorILj8EijiEE7WrapperIT_RT0_EOS9_
Unexecuted instantiation: primitives_transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: primitives_transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: primitives_transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: primitives_transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: primitives_transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: primitives_transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: primitives_transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: process_message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: process_message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: process_message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: process_message.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: process_messages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: process_messages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: process_messages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: process_messages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: protocol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: protocol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: protocol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: protocol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: random.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: random.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: random.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: random.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: rbf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: rbf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: rbf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: rbf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: rbf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: rbf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: rbf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: rolling_bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: rolling_bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: rolling_bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: rolling_bloom_filter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: rpc.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: script.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: script.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
script_assets_test_minimizer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Line
Count
Source
497
87.4k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
script_assets_test_minimizer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Line
Count
Source
497
43.7k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
script_assets_test_minimizer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
43.7k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: script_descriptor_cache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_descriptor_cache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_descriptor_cache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: script_descriptor_cache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: script_flags.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: script_flags.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: script_flags.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_format.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_format.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_format.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: script_format.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: script_interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: script_interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: script_interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: script_interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: script_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: script_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: script_sigcache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: script_sigcache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: script_sigcache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_sigcache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_sigcache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_sigcache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: script_sigcache.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorIjNS3_9allocatorIjEEEEE7WrapperIT_RT0_EOSB_
Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: script_sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: scriptnum_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: scriptnum_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: scriptnum_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: scriptnum_ops.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: signature_checker.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: signature_checker.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: signature_checker.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: signature_checker.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: signet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: socks5.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: socks5.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: socks5.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: socks5.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: span.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: span.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: span.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: span.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: string.cpp:_ZL5UsingI22LimitedStringFormatterILm10EERNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: string.cpp:_ZL5UsingI22LimitedStringFormatterILm10EERKNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: string.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: string.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: string.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: string.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: strprintf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: strprintf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: strprintf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: strprintf.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: system.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: system.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: system.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: system.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: torcontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: torcontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: torcontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: torcontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
1.26M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
878k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Line
Count
Source
497
387k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: txdownloadman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txdownloadman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txdownloadman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: txdownloadman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: tx_in.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: tx_in.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: tx_in.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: tx_in.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: tx_out.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: tx_out.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: tx_out.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: tx_out.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: tx_pool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: tx_pool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: tx_pool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: tx_pool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: txorphan.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txorphan.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txorphan.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: txorphan.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEyE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI17AmountCompressionRKxE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI17ScriptCompressionRK7CScriptE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI16TxOutCompressionRK6CTxOutE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: utxo_snapshot.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: utxo_total_supply.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: utxo_total_supply.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: utxo_total_supply.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: utxo_total_supply.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: validation_load_mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: validation_load_mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: validation_load_mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: validation_load_mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: vecdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: vecdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: vecdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: vecdeque.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: versionbits.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: versionbits.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: versionbits.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: versionbits.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: coincontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coincontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coincontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: coincontrol.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: coinselection.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coinselection.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coinselection.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: coinselection.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: crypter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: crypter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: crypter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: notifications.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: notifications.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: notifications.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: notifications.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: scriptpubkeyman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: scriptpubkeyman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: scriptpubkeyman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: scriptpubkeyman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: scriptpubkeyman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: scriptpubkeyman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: scriptpubkeyman.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: spend.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: spend.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: spend.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: spend.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: wallet_bdb_parser.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: wallet_bdb_parser.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: wallet_bdb_parser.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: wallet_bdb_parser.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: mempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: util.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: util.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERyE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: util.cpp:_ZL5UsingI17AmountCompressionRxE7WrapperIT_RT0_EOS4_
Unexecuted instantiation: util.cpp:_ZL5UsingI17ScriptCompressionR7CScriptE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: util.cpp:_ZL5UsingI16TxOutCompressionR6CTxOutE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: core_read.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: core_read.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: core_read.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: core_read.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: core_write.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: core_write.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: core_write.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: core_write.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: external_signer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: external_signer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: external_signer.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: psbt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: psbt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: psbt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: sign.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: feebumper.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: feebumper.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: feebumper.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: feebumper.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: backup.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: transactions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: transactions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: transactions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: transactions.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: wallet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: wallet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: wallet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: wallet.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorIjNS3_9allocatorIjEEEEE7WrapperIT_RT0_EOSB_
Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorIN6wallet9CMerkleTxENS3_9allocatorIS6_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_4pairINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEESB_EENS9_ISC_EEEEE7WrapperIT_RT0_EOSI_
Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_4pairINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEESB_EENS9_ISC_EEEEE7WrapperIT_RT0_EOSJ_
Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorIjNS3_9allocatorIjEEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: walletdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: mining.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: mining.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: mining.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: mining.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
net.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
21.8k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: net.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKmE7WrapperIT_RT0_EOS6_
net.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERKtE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
43.7k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: setup_common.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: transaction_utils.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: transaction_utils.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: transaction_utils.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: transaction_utils.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: txmempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txmempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txmempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: txmempool.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: addrdb.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: addrdb.cpp:_ZL5UsingI20CompactSizeFormatterILb0EERyE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: addrdb.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsE7WrapperIT_RT0_EOS7_
Unexecuted instantiation: addrdb.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKmE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: addrdb.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERKtE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: addrdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI8CAddressNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: addrdb.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: addrdb.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: addrdb.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERmE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: addrdb.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERtE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: addrdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI8CAddressNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI20CompactSizeFormatterILb0EERyE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsE7WrapperIT_RT0_EOS7_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKmE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERKtE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI15ChronoFormatterIxLb0EERKNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEE7WrapperIT_RT0_EOS7_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERmE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERtE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: addrman.cpp:_ZL5UsingI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKtE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEE7WrapperIT_RT0_EOSA_
Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS4_9allocatorIyEEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: blockencodings.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: tx_verify.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: tx_verify.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: tx_verify.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: tx_verify.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: base.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: base.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: base.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: base.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: base.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: base.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: blockfilterindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: blockfilterindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: blockfilterindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERKiE7WrapperIT_RT0_EOS7_
Unexecuted instantiation: blockfilterindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERKjE7WrapperIT_RT0_EOS7_
Unexecuted instantiation: blockfilterindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: blockfilterindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: blockfilterindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: blockfilterindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: coinstatsindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coinstatsindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coinstatsindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: coinstatsindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERKiE7WrapperIT_RT0_EOS7_
Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERKjE7WrapperIT_RT0_EOS7_
Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txindex.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: init.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: init.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: init.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: init.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: coinstats.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coinstats.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coinstats.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: coinstats.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKtE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEE7WrapperIT_RT0_EOSA_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
net_processing.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS4_9allocatorIyEEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
61
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI4CInvNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
4.65k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
net_processing.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
20.9k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERmE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERtE7WrapperIT_RT0_EOS5_
net_processing.cpp:_ZL5UsingI22LimitedStringFormatterILm256EERNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE7WrapperIT_RT0_EOSC_
Line
Count
Source
497
14.8k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKmE7WrapperIT_RT0_EOS6_
net_processing.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERKtE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
43.4k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI20CompactSizeFormatterILb0EERyE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI8CAddressNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI4CInvNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
5.42k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI19DifferenceFormatterERNSt3__16vectorItNS3_9allocatorItEEEEE7WrapperIT_RT0_EOSB_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI12CBlockHeaderNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CBlockNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERtE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEE7WrapperIT_RT0_EOS9_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERNSt3__16vectorIyNS4_9allocatorIyEEEEE7WrapperIT_RT0_EOSC_
net_processing.cpp:_ZL5UsingI15VectorFormatterI19DifferenceFormatterERKNSt3__16vectorItNS3_9allocatorItEEEEE7WrapperIT_RT0_EOSC_
Line
Count
Source
497
2.53k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSF_
Line
Count
Source
497
111k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsE7WrapperIT_RT0_EOS7_
Unexecuted instantiation: net_processing.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI8CAddressNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: blockmanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: blockmanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: blockmanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: blockmanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
4.92k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
2.46k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Line
Count
Source
497
2.46k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Line
Count
Source
497
1.11k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
2.24k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERyE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERKjE7WrapperIT_RT0_EOS7_
Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERKyE7WrapperIT_RT0_EOS7_
Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERiE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERKiE7WrapperIT_RT0_EOS7_
Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI17AmountCompressionRxE7WrapperIT_RT0_EOS4_
Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI17ScriptCompressionR7CScriptE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI16TxOutCompressionR6CTxOutE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI17TxInUndoFormatterERNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Line
Count
Source
497
87.4k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEjE7WrapperIT_RT0_EOS5_
Line
Count
Source
497
2.24k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEyE7WrapperIT_RT0_EOS5_
Line
Count
Source
497
2.24k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI17AmountCompressionRKxE7WrapperIT_RT0_EOS5_
Line
Count
Source
497
2.24k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI17ScriptCompressionRK7CScriptE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
2.24k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI16TxOutCompressionRK6CTxOutE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
2.24k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
2.24k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
2.34k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSF_
Line
Count
Source
497
43.7k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: chainstate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: chainstate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: chainstate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: chainstate.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: chainstatemanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: chainstatemanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: chainstatemanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: chainstatemanager_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: coin.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coin.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: coin.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: coin.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: context.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: context.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: context.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: context.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: interfaces.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: interfaces.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: interfaces.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: interfaces.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: mempool_persist.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: mempool_persist.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: mempool_persist.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: mempool_persist.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: mempool_persist.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: mempool_persist.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: mempool_persist.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: mempool_persist_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: mempool_persist_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: mempool_persist_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: mempool_persist_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: miner.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: peerman_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: peerman_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: peerman_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: peerman_args.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: txdownloadman_impl.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txdownloadman_impl.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txdownloadman_impl.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: txdownloadman_impl.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: ephemeral_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: ephemeral_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: ephemeral_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: ephemeral_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: fees.cpp:_ZL5UsingIN12_GLOBAL__N_122EncodedDoubleFormatterERKdE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: fees.cpp:_ZL5UsingI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERKNSt3__16vectorIdNS4_9allocatorIdEEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: fees.cpp:_ZL5UsingI15VectorFormatterIS0_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERKNSt3__16vectorINS6_IdNS5_9allocatorIdEEEENS7_IS9_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: fees.cpp:_ZL5UsingIN12_GLOBAL__N_122EncodedDoubleFormatterERdE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: fees.cpp:_ZL5UsingI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERNSt3__16vectorIdNS4_9allocatorIdEEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: fees.cpp:_ZL5UsingI15VectorFormatterIS0_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERNSt3__16vectorINS6_IdNS5_9allocatorIdEEEENS7_IS9_EEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: packages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: packages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: packages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: packages.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: truc_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: truc_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: truc_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: truc_policy.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI9COutPointNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CCoinNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: rest.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEyE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: blockchain.cpp:_ZL5UsingI17AmountCompressionRKxE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: blockchain.cpp:_ZL5UsingI17ScriptCompressionRK7CScriptE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: blockchain.cpp:_ZL5UsingI16TxOutCompressionRK6CTxOutE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: blockchain.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: rawtransaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: rawtransaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: rawtransaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: rawtransaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: server.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: server.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: server.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: server.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: server_util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: server_util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: server_util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: server_util.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: txoutproof.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txoutproof.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: txoutproof.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txoutproof.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txoutproof.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: txoutproof.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
txdb.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Line
Count
Source
497
351k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: txdb.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERyE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: txdb.cpp:_ZL5UsingI17AmountCompressionRxE7WrapperIT_RT0_EOS4_
Unexecuted instantiation: txdb.cpp:_ZL5UsingI17ScriptCompressionR7CScriptE7WrapperIT_RT0_EOS5_
txdb.cpp:_ZL5UsingI16TxOutCompressionR6CTxOutE7WrapperIT_RT0_EOS5_
Line
Count
Source
497
173k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: txdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
txdb.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
497
670
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
Unexecuted instantiation: txdb.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEyE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: txdb.cpp:_ZL5UsingI17AmountCompressionRKxE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: txdb.cpp:_ZL5UsingI17ScriptCompressionRK7CScriptE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: txdb.cpp:_ZL5UsingI16TxOutCompressionRK6CTxOutE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: txorphanage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txorphanage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: txorphanage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: txorphanage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: validation.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: validation.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: validation.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERyE7WrapperIT_RT0_EOS6_
Unexecuted instantiation: validation.cpp:_ZL5UsingI17AmountCompressionRxE7WrapperIT_RT0_EOS4_
Unexecuted instantiation: validation.cpp:_ZL5UsingI17ScriptCompressionR7CScriptE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: validation.cpp:_ZL5UsingI16TxOutCompressionR6CTxOutE7WrapperIT_RT0_EOS5_
Unexecuted instantiation: validationinterface.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: validationinterface.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: validationinterface.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: validationinterface.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: tx_check.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: tx_check.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: tx_check.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: tx_check.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSG_
Unexecuted instantiation: interpreter.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
498
499
0
#define VARINT_MODE(obj, mode) Using<VarIntFormatter<mode>>(obj)
500
528k
#define VARINT(obj) Using<VarIntFormatter<VarIntMode::DEFAULT>>(obj)
501
38.1k
#define COMPACTSIZE(obj) Using<CompactSizeFormatter<true>>(obj)
502
14.8k
#define LIMITED_STRING(obj,n) Using<LimitedStringFormatter<n>>(obj)
503
504
/** Serialization wrapper class for integers in VarInt format. */
505
template<VarIntMode Mode>
506
struct VarIntFormatter
507
{
508
    template<typename Stream, typename I> void Ser(Stream &s, I v)
509
185k
    {
510
185k
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
511
185k
    }
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode1EE3SerI12VectorWriteriEEvRT_T0_
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI12VectorWriteryEEvRT_T0_
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI10DataStreamjEEvRT_T0_
Line
Count
Source
509
178k
    {
510
178k
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
511
178k
    }
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI10DataStreamyEEvRT_T0_
Line
Count
Source
509
102
    {
510
102
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
511
102
    }
_ZN15VarIntFormatterIL10VarIntMode1EE3SerI10DataStreamiEEvRT_T0_
Line
Count
Source
509
413
    {
510
413
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
511
413
    }
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI8AutoFilejEEvRT_T0_
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI8AutoFileyEEvRT_T0_
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI12SizeComputerjEEvRT_T0_
Line
Count
Source
509
1.49k
    {
510
1.49k
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
511
1.49k
    }
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI12SizeComputeryEEvRT_T0_
Line
Count
Source
509
749
    {
510
749
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
511
749
    }
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI10HashWriterjEEvRT_T0_
Line
Count
Source
509
1.49k
    {
510
1.49k
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
511
1.49k
    }
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI10HashWriteryEEvRT_T0_
Line
Count
Source
509
749
    {
510
749
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
511
749
    }
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI14BufferedWriterI8AutoFileEjEEvRT_T0_
Line
Count
Source
509
1.49k
    {
510
1.49k
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
511
1.49k
    }
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI14BufferedWriterI8AutoFileEyEEvRT_T0_
Line
Count
Source
509
749
    {
510
749
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
511
749
    }
512
513
    template<typename Stream, typename I> void Unser(Stream& s, I& v)
514
10.8M
    {
515
10.8M
        v = ReadVarInt<Stream,Mode, std::remove_cv_t<I>>(s);
516
10.8M
    }
_ZN15VarIntFormatterIL10VarIntMode0EE5UnserI10DataStreamjEEvRT_RT0_
Line
Count
Source
514
6.23M
    {
515
6.23M
        v = ReadVarInt<Stream,Mode, std::remove_cv_t<I>>(s);
516
6.23M
    }
_ZN15VarIntFormatterIL10VarIntMode0EE5UnserI10DataStreamyEEvRT_RT0_
Line
Count
Source
514
188k
    {
515
188k
        v = ReadVarInt<Stream,Mode, std::remove_cv_t<I>>(s);
516
188k
    }
_ZN15VarIntFormatterIL10VarIntMode1EE5UnserI10DataStreamiEEvRT_RT0_
Line
Count
Source
514
4.39M
    {
515
4.39M
        v = ReadVarInt<Stream,Mode, std::remove_cv_t<I>>(s);
516
4.39M
    }
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode1EE5UnserI10SpanReaderiEEvRT_RT0_
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE5UnserI10SpanReaderjEEvRT_RT0_
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE5UnserI10SpanReaderyEEvRT_RT0_
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE5UnserI12HashVerifierI14BufferedReaderI8AutoFileEEjEEvRT_RT0_
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE5UnserI12HashVerifierI14BufferedReaderI8AutoFileEEyEEvRT_RT0_
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE5UnserI8AutoFilejEEvRT_RT0_
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE5UnserI8AutoFileyEEvRT_RT0_
517
};
518
519
/** Serialization wrapper class for custom integers and enums.
520
 *
521
 * It permits specifying the serialized size (1 to 8 bytes) and endianness.
522
 *
523
 * Use the big endian mode for values that are stored in memory in native
524
 * byte order, but serialized in big endian notation. This is only intended
525
 * to implement serializers that are compatible with existing formats, and
526
 * its use is not recommended for new data structures.
527
 */
528
template<int Bytes, bool BigEndian = false>
529
struct CustomUintFormatter
530
{
531
    static_assert(Bytes > 0 && Bytes <= 8, "CustomUintFormatter Bytes out of range");
532
    static constexpr uint64_t MAX = 0xffffffffffffffff >> (8 * (8 - Bytes));
533
534
    template <typename Stream, typename I> void Ser(Stream& s, I v)
535
256k
    {
536
256k
        if (v < 0 || v > MAX) 
throw std::ios_base::failure("CustomUintFormatter value out of range")0
;
537
256k
        if (BigEndian) {
538
87.2k
            uint64_t raw = htobe64_internal(v);
539
87.2k
            s.write(std::as_bytes(std::span{&raw, 1}).last(Bytes));
540
168k
        } else {
541
168k
            uint64_t raw = htole64_internal(v);
542
168k
            s.write(std::as_bytes(std::span{&raw, 1}).first(Bytes));
543
168k
        }
544
256k
    }
_ZN19CustomUintFormatterILi6ELb0EE3SerI12VectorWriteryEEvRT_T0_
Line
Count
Source
535
147k
    {
536
147k
        if (v < 0 || v > MAX) 
throw std::ios_base::failure("CustomUintFormatter value out of range")0
;
537
147k
        if (BigEndian) {
538
0
            uint64_t raw = htobe64_internal(v);
539
0
            s.write(std::as_bytes(std::span{&raw, 1}).last(Bytes));
540
147k
        } else {
541
147k
            uint64_t raw = htole64_internal(v);
542
147k
            s.write(std::as_bytes(std::span{&raw, 1}).first(Bytes));
543
147k
        }
544
147k
    }
Unexecuted instantiation: _ZN19CustomUintFormatterILi6ELb0EE3SerI10DataStreamyEEvRT_T0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE3SerI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEtEEvRT_T0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE3SerI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE12ServiceFlagsEEvRT_T0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE3SerI12ParamsStreamIRS2_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_T0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi6ELb0EE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEyEEvRT_T0_
_ZN19CustomUintFormatterILi8ELb0EE3SerI12VectorWriter12ServiceFlagsEEvRT_T0_
Line
Count
Source
535
21.8k
    {
536
21.8k
        if (v < 0 || v > MAX) 
throw std::ios_base::failure("CustomUintFormatter value out of range")0
;
537
21.8k
        if (BigEndian) {
538
0
            uint64_t raw = htobe64_internal(v);
539
0
            s.write(std::as_bytes(std::span{&raw, 1}).last(Bytes));
540
21.8k
        } else {
541
21.8k
            uint64_t raw = htole64_internal(v);
542
21.8k
            s.write(std::as_bytes(std::span{&raw, 1}).first(Bytes));
543
21.8k
        }
544
21.8k
    }
_ZN19CustomUintFormatterILi2ELb1EE3SerI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEtEEvRT_T0_
Line
Count
Source
535
87.2k
    {
536
87.2k
        if (v < 0 || v > MAX) 
throw std::ios_base::failure("CustomUintFormatter value out of range")0
;
537
87.2k
        if (BigEndian) {
538
87.2k
            uint64_t raw = htobe64_internal(v);
539
87.2k
            s.write(std::as_bytes(std::span{&raw, 1}).last(Bytes));
540
87.2k
        } else {
541
0
            uint64_t raw = htole64_internal(v);
542
0
            s.write(std::as_bytes(std::span{&raw, 1}).first(Bytes));
543
0
        }
544
87.2k
    }
Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE12ServiceFlagsEEvRT_T0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE3SerI12ParamsStreamIRS2_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_T0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi6ELb0EE3SerI12SizeComputeryEEvRT_T0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE3SerI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE12ServiceFlagsEEvRT_T0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE3SerI12ParamsStreamIRS2_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_T0_
545
546
    template <typename Stream, typename I> void Unser(Stream& s, I& v)
547
115k
    {
548
115k
        using U = typename std::conditional_t<std::is_enum_v<I>, std::underlying_type<I>, std::common_type<I>>::type;
549
115k
        static_assert(std::numeric_limits<U>::max() >= MAX && std::numeric_limits<U>::min() <= 0, "Assigned type too small");
550
115k
        uint64_t raw = 0;
551
115k
        if (BigEndian) {
552
20.9k
            s.read(std::as_writable_bytes(std::span{&raw, 1}).last(Bytes));
553
20.9k
            v = static_cast<I>(be64toh_internal(raw));
554
94.2k
        } else {
555
94.2k
            s.read(std::as_writable_bytes(std::span{&raw, 1}).first(Bytes));
556
94.2k
            v = static_cast<I>(le64toh_internal(raw));
557
94.2k
        }
558
115k
    }
Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE12ServiceFlagsEEvRT_RT0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamIRS2_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_RT0_
_ZN19CustomUintFormatterILi6ELb0EE5UnserI10DataStreamyEEvRT_RT0_
Line
Count
Source
547
73.2k
    {
548
73.2k
        using U = typename std::conditional_t<std::is_enum_v<I>, std::underlying_type<I>, std::common_type<I>>::type;
549
73.2k
        static_assert(std::numeric_limits<U>::max() >= MAX && std::numeric_limits<U>::min() <= 0, "Assigned type too small");
550
73.2k
        uint64_t raw = 0;
551
73.2k
        if (BigEndian) {
552
0
            s.read(std::as_writable_bytes(std::span{&raw, 1}).last(Bytes));
553
0
            v = static_cast<I>(be64toh_internal(raw));
554
73.2k
        } else {
555
73.2k
            s.read(std::as_writable_bytes(std::span{&raw, 1}).first(Bytes));
556
73.2k
            v = static_cast<I>(le64toh_internal(raw));
557
73.2k
        }
558
73.2k
    }
_ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEtEEvRT_RT0_
Line
Count
Source
547
20.9k
    {
548
20.9k
        using U = typename std::conditional_t<std::is_enum_v<I>, std::underlying_type<I>, std::common_type<I>>::type;
549
20.9k
        static_assert(std::numeric_limits<U>::max() >= MAX && std::numeric_limits<U>::min() <= 0, "Assigned type too small");
550
20.9k
        uint64_t raw = 0;
551
20.9k
        if (BigEndian) {
552
20.9k
            s.read(std::as_writable_bytes(std::span{&raw, 1}).last(Bytes));
553
20.9k
            v = static_cast<I>(be64toh_internal(raw));
554
20.9k
        } else {
555
0
            s.read(std::as_writable_bytes(std::span{&raw, 1}).first(Bytes));
556
0
            v = static_cast<I>(le64toh_internal(raw));
557
0
        }
558
20.9k
    }
Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEE12ServiceFlagsEEvRT_RT0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamIRS2_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_RT0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi1ELb0EE5UnserI8AutoFileN11AddrManImpl6FormatEEEvRT_RT0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE5UnserI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEE12ServiceFlagsEEvRT_RT0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamIRS2_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_RT0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi1ELb0EE5UnserI12HashVerifierI8AutoFileEN11AddrManImpl6FormatEEEvRT_RT0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi1ELb0EE5UnserI10DataStreamN11AddrManImpl6FormatEEEvRT_RT0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi1ELb0EE5UnserI12HashVerifierI10DataStreamEN11AddrManImpl6FormatEEEvRT_RT0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE5UnserI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEE12ServiceFlagsEEvRT_RT0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamIRS2_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_RT0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamI10DataStreamN8CAddress9SerParamsEEtEEvRT_RT0_
_ZN19CustomUintFormatterILi8ELb0EE5UnserI10DataStream12ServiceFlagsEEvRT_RT0_
Line
Count
Source
547
20.9k
    {
548
20.9k
        using U = typename std::conditional_t<std::is_enum_v<I>, std::underlying_type<I>, std::common_type<I>>::type;
549
20.9k
        static_assert(std::numeric_limits<U>::max() >= MAX && std::numeric_limits<U>::min() <= 0, "Assigned type too small");
550
20.9k
        uint64_t raw = 0;
551
20.9k
        if (BigEndian) {
552
0
            s.read(std::as_writable_bytes(std::span{&raw, 1}).last(Bytes));
553
0
            v = static_cast<I>(be64toh_internal(raw));
554
20.9k
        } else {
555
20.9k
            s.read(std::as_writable_bytes(std::span{&raw, 1}).first(Bytes));
556
20.9k
            v = static_cast<I>(le64toh_internal(raw));
557
20.9k
        }
558
20.9k
    }
559
};
560
561
template<int Bytes> using BigEndianFormatter = CustomUintFormatter<Bytes, true>;
562
563
/** Formatter for integers in CompactSize format. */
564
template<bool RangeCheck>
565
struct CompactSizeFormatter
566
{
567
    template<typename Stream, typename I>
568
    void Unser(Stream& s, I& v)
569
100k
    {
570
100k
        uint64_t n = ReadCompactSize<Stream>(s, RangeCheck);
571
100k
        if (n < std::numeric_limits<I>::min() || n > std::numeric_limits<I>::max()) {
572
0
            throw std::ios_base::failure("CompactSize exceeds limit of type");
573
0
        }
574
100k
        v = n;
575
100k
    }
Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEyEEvRT_RT0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIRS2_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_RT0_
_ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEmEEvRT_RT0_
Line
Count
Source
569
38.1k
    {
570
38.1k
        uint64_t n = ReadCompactSize<Stream>(s, RangeCheck);
571
38.1k
        if (n < std::numeric_limits<I>::min() || n > std::numeric_limits<I>::max()) {
572
0
            throw std::ios_base::failure("CompactSize exceeds limit of type");
573
0
        }
574
38.1k
        v = n;
575
38.1k
    }
_ZN20CompactSizeFormatterILb1EE5UnserI10DataStreamtEEvRT_RT0_
Line
Count
Source
569
62.2k
    {
570
62.2k
        uint64_t n = ReadCompactSize<Stream>(s, RangeCheck);
571
62.2k
        if (n < std::numeric_limits<I>::min() || n > std::numeric_limits<I>::max()) {
572
0
            throw std::ios_base::failure("CompactSize exceeds limit of type");
573
0
        }
574
62.2k
        v = n;
575
62.2k
    }
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEmEEvRT_RT0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEyEEvRT_RT0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIRS2_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_RT0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE5UnserI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEyEEvRT_RT0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIRS2_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_RT0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEmEEvRT_RT0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEmEEvRT_RT0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE5UnserI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEyEEvRT_RT0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIRS2_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_RT0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEmEEvRT_RT0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamI10DataStreamN8CAddress9SerParamsEEmEEvRT_RT0_
576
577
    template<typename Stream, typename I>
578
    void Ser(Stream& s, I v)
579
137k
    {
580
137k
        static_assert(std::is_unsigned_v<I>, "CompactSize only supported for unsigned integers");
581
137k
        static_assert(std::numeric_limits<I>::max() <= std::numeric_limits<uint64_t>::max(), "CompactSize only supports 64-bit integers and below");
582
583
137k
        WriteCompactSize<Stream>(s, v);
584
137k
    }
_ZN20CompactSizeFormatterILb1EE3SerI12VectorWritertEEvRT_T0_
Line
Count
Source
579
137k
    {
580
137k
        static_assert(std::is_unsigned_v<I>, "CompactSize only supported for unsigned integers");
581
137k
        static_assert(std::numeric_limits<I>::max() <= std::numeric_limits<uint64_t>::max(), "CompactSize only supports 64-bit integers and below");
582
583
137k
        WriteCompactSize<Stream>(s, v);
584
137k
    }
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI10DataStreamtEEvRT_T0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEmEEvRT_T0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE3SerI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEyEEvRT_T0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIRS2_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_T0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEtEEvRT_T0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEmEEvRT_T0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEyEEvRT_T0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIRS2_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_T0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEmEEvRT_T0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEmEEvRT_T0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12SizeComputertEEvRT_T0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE3SerI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEyEEvRT_T0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE3SerI12ParamsStreamIRS2_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_T0_
585
};
586
587
template <typename U, bool LOSSY = false>
588
struct ChronoFormatter {
589
    template <typename Stream, typename Tp>
590
    void Unser(Stream& s, Tp& tp)
591
0
    {
592
0
        U u;
593
0
        s >> u;
594
        // Lossy deserialization does not make sense, so force Wnarrowing
595
0
        tp = Tp{typename Tp::duration{typename Tp::duration::rep{u}}};
596
0
    }
Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEENSt3__16chrono10time_pointI9NodeClockNS9_8durationIxNS8_5ratioILl1ELl1EEEEEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15ChronoFormatterIxLb0EE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEENSt3__16chrono10time_pointI9NodeClockNS9_8durationIxNS8_5ratioILl1ELl1EEEEEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEENSt3__16chrono10time_pointI9NodeClockNSB_8durationIxNSA_5ratioILl1ELl1EEEEEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE5UnserI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEENSt3__16chrono10time_pointI9NodeClockNS9_8durationIxNS8_5ratioILl1ELl1EEEEEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15ChronoFormatterIxLb0EE5UnserI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEENSt3__16chrono10time_pointI9NodeClockNS9_8durationIxNS8_5ratioILl1ELl1EEEEEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15ChronoFormatterIxLb0EE5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEENSt3__16chrono10time_pointI9NodeClockNSB_8durationIxNSA_5ratioILl1ELl1EEEEEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE5UnserI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEENSt3__16chrono10time_pointI9NodeClockNSB_8durationIxNSA_5ratioILl1ELl1EEEEEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15ChronoFormatterIxLb0EE5UnserI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEENSt3__16chrono10time_pointI9NodeClockNSB_8durationIxNSA_5ratioILl1ELl1EEEEEEEEEvRT_RT0_
597
    template <typename Stream, typename Tp>
598
    void Ser(Stream& s, Tp tp)
599
0
    {
600
0
        if constexpr (LOSSY) {
601
0
            s << U(tp.time_since_epoch().count());
602
0
        } else {
603
0
            s << U{tp.time_since_epoch().count()};
604
0
        }
605
0
    }
Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE3SerI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEENSt3__16chrono10time_pointI9NodeClockNS9_8durationIxNS8_5ratioILl1ELl1EEEEEEEEEvRT_T0_
Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEENSt3__16chrono10time_pointI9NodeClockNSB_8durationIxNSA_5ratioILl1ELl1EEEEEEEEEvRT_T0_
Unexecuted instantiation: _ZN15ChronoFormatterIxLb0EE3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEENSt3__16chrono10time_pointI9NodeClockNSB_8durationIxNSA_5ratioILl1ELl1EEEEEEEEEvRT_T0_
Unexecuted instantiation: _ZN15ChronoFormatterIxLb0EE3SerI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEENSt3__16chrono10time_pointI9NodeClockNS9_8durationIxNS8_5ratioILl1ELl1EEEEEEEEEvRT_T0_
Unexecuted instantiation: _ZN15ChronoFormatterIjLb1EE3SerI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEENSt3__16chrono10time_pointI9NodeClockNS9_8durationIxNS8_5ratioILl1ELl1EEEEEEEEEvRT_T0_
606
};
607
template <typename U>
608
using LossyChronoFormatter = ChronoFormatter<U, true>;
609
610
class CompactSizeWriter
611
{
612
protected:
613
    uint64_t n;
614
public:
615
0
    explicit CompactSizeWriter(uint64_t n_in) : n(n_in) { }
616
617
    template<typename Stream>
618
0
    void Serialize(Stream &s) const {
619
0
        WriteCompactSize<Stream>(s, n);
620
0
    }
Unexecuted instantiation: _ZNK17CompactSizeWriter9SerializeI12SizeComputerEEvRT_
Unexecuted instantiation: _ZNK17CompactSizeWriter9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK17CompactSizeWriter9SerializeI10HashWriterEEvRT_
621
};
622
623
template<size_t Limit>
624
struct LimitedStringFormatter
625
{
626
    template<typename Stream>
627
    void Unser(Stream& s, std::string& v)
628
14.8k
    {
629
14.8k
        size_t size = ReadCompactSize(s);
630
14.8k
        if (size > Limit) {
631
0
            throw std::ios_base::failure("String length limit exceeded");
632
0
        }
633
14.8k
        v.resize(size);
634
14.8k
        if (size != 0) 
s.read(MakeWritableByteSpan(v))0
;
635
14.8k
    }
Unexecuted instantiation: _ZN22LimitedStringFormatterILm10EE5UnserI10DataStreamEEvRT_RNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE
_ZN22LimitedStringFormatterILm256EE5UnserI10DataStreamEEvRT_RNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE
Line
Count
Source
628
14.8k
    {
629
14.8k
        size_t size = ReadCompactSize(s);
630
14.8k
        if (size > Limit) {
631
0
            throw std::ios_base::failure("String length limit exceeded");
632
0
        }
633
14.8k
        v.resize(size);
634
14.8k
        if (size != 0) 
s.read(MakeWritableByteSpan(v))0
;
635
14.8k
    }
636
637
    template<typename Stream>
638
    void Ser(Stream& s, const std::string& v)
639
0
    {
640
0
        s << v;
641
0
    }
642
};
643
644
/** Formatter to serialize/deserialize vector elements using another formatter
645
 *
646
 * Example:
647
 *   struct X {
648
 *     std::vector<uint64_t> v;
649
 *     SERIALIZE_METHODS(X, obj) { READWRITE(Using<VectorFormatter<VarInt>>(obj.v)); }
650
 *   };
651
 * will define a struct that contains a vector of uint64_t, which is serialized
652
 * as a vector of VarInt-encoded integers.
653
 *
654
 * V is not required to be an std::vector type. It works for any class that
655
 * exposes a value_type, size, reserve, emplace_back, back, and const iterators.
656
 */
657
template<class Formatter>
658
struct VectorFormatter
659
{
660
    template<typename Stream, typename V>
661
    void Ser(Stream& s, const V& v)
662
7.54M
    {
663
7.54M
        Formatter formatter;
664
7.54M
        WriteCompactSize(s, v.size());
665
7.54M
        for (const typename V::value_type& elem : v) {
666
7.13M
            formatter.Ser(s, elem);
667
7.13M
        }
668
7.54M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__16vectorI5CTxInNS8_9allocatorISA_EEEEEEvRT_RKT0_
Line
Count
Source
662
207k
    {
663
207k
        Formatter formatter;
664
207k
        WriteCompactSize(s, v.size());
665
207k
        for (const typename V::value_type& elem : v) {
666
177k
            formatter.Ser(s, elem);
667
177k
        }
668
207k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__16vectorI6CTxOutNS8_9allocatorISA_EEEEEEvRT_RKT0_
Line
Count
Source
662
177k
    {
663
177k
        Formatter formatter;
664
177k
        WriteCompactSize(s, v.size());
665
270k
        for (const typename V::value_type& elem : v) {
666
270k
            formatter.Ser(s, elem);
667
270k
        }
668
177k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__16vectorINS9_IhNS8_9allocatorIhEEEENSA_ISC_EEEEEEvRT_RKT0_
Line
Count
Source
662
30.5k
    {
663
30.5k
        Formatter formatter;
664
30.5k
        WriteCompactSize(s, v.size());
665
30.5k
        for (const typename V::value_type& elem : v) {
666
30.5k
            formatter.Ser(s, elem);
667
30.5k
        }
668
30.5k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEvRT_RKT0_
Line
Count
Source
662
48.1k
    {
663
48.1k
        Formatter formatter;
664
48.1k
        WriteCompactSize(s, v.size());
665
53.6k
        for (const typename V::value_type& elem : v) {
666
53.6k
            formatter.Ser(s, elem);
667
53.6k
        }
668
48.1k
    }
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12SizeComputerNSt3__16vectorINS5_IhNS4_9allocatorIhEEEENS6_IS8_EEEEEEvRT_RKT0_
_ZN15VectorFormatterI19CustomUintFormatterILi6ELb0EEE3SerI12VectorWriterNSt3__16vectorIyNS5_9allocatorIyEEEEEEvRT_RKT0_
Line
Count
Source
662
134k
    {
663
134k
        Formatter formatter;
664
134k
        WriteCompactSize(s, v.size());
665
147k
        for (const typename V::value_type& elem : v) {
666
147k
            formatter.Ser(s, elem);
667
147k
        }
668
134k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12VectorWriterNSt3__16vectorI20PrefilledTransactionNS4_9allocatorIS6_EEEEEEvRT_RKT0_
Line
Count
Source
662
134k
    {
663
134k
        Formatter formatter;
664
134k
        WriteCompactSize(s, v.size());
665
137k
        for (const typename V::value_type& elem : v) {
666
137k
            formatter.Ser(s, elem);
667
137k
        }
668
134k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorI5CTxInNS8_9allocatorISA_EEEEEEvRT_RKT0_
Line
Count
Source
662
1.70M
    {
663
1.70M
        Formatter formatter;
664
1.70M
        WriteCompactSize(s, v.size());
665
1.70M
        for (const typename V::value_type& elem : v) {
666
852k
            formatter.Ser(s, elem);
667
852k
        }
668
1.70M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorI6CTxOutNS8_9allocatorISA_EEEEEEvRT_RKT0_
Line
Count
Source
662
852k
    {
663
852k
        Formatter formatter;
664
852k
        WriteCompactSize(s, v.size());
665
1.24M
        for (const typename V::value_type& elem : v) {
666
1.24M
            formatter.Ser(s, elem);
667
1.24M
        }
668
852k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorINS9_IhNS8_9allocatorIhEEEENSA_ISC_EEEEEEvRT_RKT0_
Line
Count
Source
662
852k
    {
663
852k
        Formatter formatter;
664
852k
        WriteCompactSize(s, v.size());
665
852k
        for (const typename V::value_type& elem : v) {
666
852k
            formatter.Ser(s, elem);
667
852k
        }
668
852k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEvRT_RKT0_
Line
Count
Source
662
579k
    {
663
579k
        Formatter formatter;
664
579k
        WriteCompactSize(s, v.size());
665
579k
        for (const typename V::value_type& elem : v) {
666
542k
            formatter.Ser(s, elem);
667
542k
        }
668
579k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorI6CBlockNS8_9allocatorISA_EEEEEEvRT_RKT0_
Line
Count
Source
662
258k
    {
663
258k
        Formatter formatter;
664
258k
        WriteCompactSize(s, v.size());
665
258k
        for (const typename V::value_type& elem : v) {
666
258k
            formatter.Ser(s, elem);
667
258k
        }
668
258k
    }
Unexecuted instantiation: _ZN15VectorFormatterI19CustomUintFormatterILi6ELb0EEE3SerI10DataStreamNSt3__16vectorIyNS5_9allocatorIyEEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamNSt3__16vectorI20PrefilledTransactionNS4_9allocatorIS6_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorI5CTxInNS8_9allocatorISA_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorI6CTxOutNS8_9allocatorISA_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorINS9_IhNS8_9allocatorIhEEEENSA_ISC_EEEEEEvRT_RKT0_
_ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamNSt3__16vectorI7uint256NS4_9allocatorIS6_EEEEEEvRT_RKT0_
Line
Count
Source
662
670
    {
663
670
        Formatter formatter;
664
670
        WriteCompactSize(s, v.size());
665
1.34k
        for (const typename V::value_type& elem : v) {
666
1.34k
            formatter.Ser(s, elem);
667
1.34k
        }
668
670
    }
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamNSt3__16vectorIjNS4_9allocatorIjEEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamNSt3__16vectorINS5_IhNS4_9allocatorIhEEEENS6_IS8_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI17TxInUndoFormatterE3SerI10DataStreamNSt3__16vectorI4CoinNS4_9allocatorIS6_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamNSt3__16vectorI7CTxUndoNS4_9allocatorIS6_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI19DifferenceFormatterE3SerI10DataStreamNSt3__16vectorItNS4_9allocatorItEEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI19CustomUintFormatterILi6ELb0EEE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorIyNS9_9allocatorIyEEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorI20PrefilledTransactionNS8_9allocatorISA_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIRS3_IR12VectorWriter20TransactionSerParamsES6_ENSt3__16vectorI5CTxInNSA_9allocatorISC_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIRS3_IR12VectorWriter20TransactionSerParamsES6_ENSt3__16vectorI6CTxOutNSA_9allocatorISC_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIRS3_IR12VectorWriter20TransactionSerParamsES6_ENSt3__16vectorINSB_IhNSA_9allocatorIhEEEENSC_ISE_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamNSt3__16vectorIiNS4_9allocatorIiEEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStream9prevectorILj8EijiEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamNSt3__16vectorINS4_4pairINS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEESC_EENSA_ISD_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEENSt3__16vectorIS8_NSB_9allocatorIS8_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI19CustomUintFormatterILi6ELb0EEE3SerI12SizeComputerNSt3__16vectorIyNS5_9allocatorIyEEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12SizeComputerNSt3__16vectorI20PrefilledTransactionNS4_9allocatorIS6_EEEEEEvRT_RKT0_
_ZN15VectorFormatterI16DefaultFormatterE3SerI12VectorWriterNSt3__16vectorI4CInvNS4_9allocatorIS6_EEEEEEvRT_RKT0_
Line
Count
Source
662
4.65k
    {
663
4.65k
        Formatter formatter;
664
4.65k
        WriteCompactSize(s, v.size());
665
5.66k
        for (const typename V::value_type& elem : v) {
666
5.66k
            formatter.Ser(s, elem);
667
5.66k
        }
668
4.65k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12VectorWriterNSt3__16vectorI7uint256NS4_9allocatorIS6_EEEEEEvRT_RKT0_
Line
Count
Source
662
5.42k
    {
663
5.42k
        Formatter formatter;
664
5.42k
        WriteCompactSize(s, v.size());
665
103k
        for (const typename V::value_type& elem : v) {
666
103k
            formatter.Ser(s, elem);
667
103k
        }
668
5.42k
    }
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12VectorWriterNSt3__16vectorI12CBlockHeaderNS4_9allocatorIS6_EEEEEEvRT_RKT0_
_ZN15VectorFormatterI19DifferenceFormatterE3SerI12VectorWriterNSt3__16vectorItNS4_9allocatorItEEEEEEvRT_RKT0_
Line
Count
Source
662
2.53k
    {
663
2.53k
        Formatter formatter;
664
2.53k
        WriteCompactSize(s, v.size());
665
2.55k
        for (const typename V::value_type& elem : v) {
666
2.55k
            formatter.Ser(s, elem);
667
2.55k
        }
668
2.53k
    }
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEENSt3__16vectorIS6_NS9_9allocatorIS6_EEEEEEvRT_RKT0_
_ZN15VectorFormatterI16DefaultFormatterE3SerI12SizeComputerNSt3__16vectorI7CTxUndoNS4_9allocatorIS6_EEEEEEvRT_RKT0_
Line
Count
Source
662
782
    {
663
782
        Formatter formatter;
664
782
        WriteCompactSize(s, v.size());
665
782
        for (const typename V::value_type& elem : v) {
666
749
            formatter.Ser(s, elem);
667
749
        }
668
782
    }
_ZN15VectorFormatterI17TxInUndoFormatterE3SerI12SizeComputerNSt3__16vectorI4CoinNS4_9allocatorIS6_EEEEEEvRT_RKT0_
Line
Count
Source
662
749
    {
663
749
        Formatter formatter;
664
749
        WriteCompactSize(s, v.size());
665
749
        for (const typename V::value_type& elem : v) {
666
749
            formatter.Ser(s, elem);
667
749
        }
668
749
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI10HashWriterNSt3__16vectorI7CTxUndoNS4_9allocatorIS6_EEEEEEvRT_RKT0_
Line
Count
Source
662
782
    {
663
782
        Formatter formatter;
664
782
        WriteCompactSize(s, v.size());
665
782
        for (const typename V::value_type& elem : v) {
666
749
            formatter.Ser(s, elem);
667
749
        }
668
782
    }
_ZN15VectorFormatterI17TxInUndoFormatterE3SerI10HashWriterNSt3__16vectorI4CoinNS4_9allocatorIS6_EEEEEEvRT_RKT0_
Line
Count
Source
662
749
    {
663
749
        Formatter formatter;
664
749
        WriteCompactSize(s, v.size());
665
749
        for (const typename V::value_type& elem : v) {
666
749
            formatter.Ser(s, elem);
667
749
        }
668
749
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI14BufferedWriterI8AutoFileENSt3__16vectorI7CTxUndoNS6_9allocatorIS8_EEEEEEvRT_RKT0_
Line
Count
Source
662
782
    {
663
782
        Formatter formatter;
664
782
        WriteCompactSize(s, v.size());
665
782
        for (const typename V::value_type& elem : v) {
666
749
            formatter.Ser(s, elem);
667
749
        }
668
782
    }
_ZN15VectorFormatterI17TxInUndoFormatterE3SerI14BufferedWriterI8AutoFileENSt3__16vectorI4CoinNS6_9allocatorIS8_EEEEEEvRT_RKT0_
Line
Count
Source
662
749
    {
663
749
        Formatter formatter;
664
749
        WriteCompactSize(s, v.size());
665
749
        for (const typename V::value_type& elem : v) {
666
749
            formatter.Ser(s, elem);
667
749
        }
668
749
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__16vectorINSA_10shared_ptrIK12CTransactionEENSA_9allocatorISF_EEEEEEvRT_RKT0_
Line
Count
Source
662
1.11k
    {
663
1.11k
        Formatter formatter;
664
1.11k
        WriteCompactSize(s, v.size());
665
2.46k
        for (const typename V::value_type& elem : v) {
666
2.46k
            formatter.Ser(s, elem);
667
2.46k
        }
668
1.11k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__16vectorI5CTxInNSA_9allocatorISC_EEEEEEvRT_RKT0_
Line
Count
Source
662
4.92k
    {
663
4.92k
        Formatter formatter;
664
4.92k
        WriteCompactSize(s, v.size());
665
4.92k
        for (const typename V::value_type& elem : v) {
666
2.46k
            formatter.Ser(s, elem);
667
2.46k
        }
668
4.92k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__16vectorI6CTxOutNSA_9allocatorISC_EEEEEEvRT_RKT0_
Line
Count
Source
662
2.46k
    {
663
2.46k
        Formatter formatter;
664
2.46k
        WriteCompactSize(s, v.size());
665
3.57k
        for (const typename V::value_type& elem : v) {
666
3.57k
            formatter.Ser(s, elem);
667
3.57k
        }
668
2.46k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__16vectorINSB_IhNSA_9allocatorIhEEEENSC_ISE_EEEEEEvRT_RKT0_
Line
Count
Source
662
2.46k
    {
663
2.46k
        Formatter formatter;
664
2.46k
        WriteCompactSize(s, v.size());
665
2.46k
        for (const typename V::value_type& elem : v) {
666
2.46k
            formatter.Ser(s, elem);
667
2.46k
        }
668
2.46k
    }
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsENSt3__16vectorI5CTxInNS8_9allocatorISA_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsENSt3__16vectorI6CTxOutNS8_9allocatorISA_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsENSt3__16vectorINS9_IhNS8_9allocatorIhEEEENSA_ISC_EEEEEEvRT_RKT0_
Unexecuted instantiation: fees.cpp:_ZN15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEE3SerI8AutoFileNSt3__16vectorIdNS5_9allocatorIdEEEEEEvRT_RKT0_
Unexecuted instantiation: fees.cpp:_ZN15VectorFormatterIS_IN12_GLOBAL__N_122EncodedDoubleFormatterEEE3SerI8AutoFileNSt3__16vectorINS7_IdNS6_9allocatorIdEEEENS8_ISA_EEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI10DataStreamNSt3__16vectorI5CCoinNS4_9allocatorIS6_EEEEEEvRT_RKT0_
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsENSt3__16vectorI5CTxInNS8_9allocatorISA_EEEEEEvRT_RKT0_
Line
Count
Source
662
1.26M
    {
663
1.26M
        Formatter formatter;
664
1.26M
        WriteCompactSize(s, v.size());
665
1.26M
        for (const typename V::value_type& elem : v) {
666
878k
            formatter.Ser(s, elem);
667
878k
        }
668
1.26M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsENSt3__16vectorI6CTxOutNS8_9allocatorISA_EEEEEEvRT_RKT0_
Line
Count
Source
662
878k
    {
663
878k
        Formatter formatter;
664
878k
        WriteCompactSize(s, v.size());
665
1.17M
        for (const typename V::value_type& elem : v) {
666
1.17M
            formatter.Ser(s, elem);
667
1.17M
        }
668
878k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsENSt3__16vectorINS9_IhNS8_9allocatorIhEEEENSA_ISC_EEEEEEvRT_RKT0_
Line
Count
Source
662
387k
    {
663
387k
        Formatter formatter;
664
387k
        WriteCompactSize(s, v.size());
665
387k
        for (const typename V::value_type& elem : v) {
666
387k
            formatter.Ser(s, elem);
667
387k
        }
668
387k
    }
669
670
    template<typename Stream, typename V>
671
    void Unser(Stream& s, V& v)
672
998k
    {
673
998k
        Formatter formatter;
674
998k
        v.clear();
675
998k
        size_t size = ReadCompactSize(s);
676
998k
        size_t allocated = 0;
677
1.63M
        while (allocated < size) {
678
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
679
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
680
            // X MiB of data to make us allocate X+5 Mib.
681
638k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
682
638k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
683
638k
            v.reserve(allocated);
684
1.39M
            while (v.size() < allocated) {
685
759k
                v.emplace_back();
686
759k
                formatter.Unser(s, v.back());
687
759k
            }
688
638k
        }
689
998k
    };
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEvRT_RT0_
Line
Count
Source
672
111k
    {
673
111k
        Formatter formatter;
674
111k
        v.clear();
675
111k
        size_t size = ReadCompactSize(s);
676
111k
        size_t allocated = 0;
677
112k
        while (allocated < size) {
678
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
679
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
680
            // X MiB of data to make us allocate X+5 Mib.
681
462
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
682
462
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
683
462
            v.reserve(allocated);
684
978
            while (v.size() < allocated) {
685
516
                v.emplace_back();
686
516
                formatter.Unser(s, v.back());
687
516
            }
688
462
        }
689
111k
    };
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorI5CTxInNS8_9allocatorISA_EEEEEEvRT_RT0_
Line
Count
Source
672
229k
    {
673
229k
        Formatter formatter;
674
229k
        v.clear();
675
229k
        size_t size = ReadCompactSize(s);
676
229k
        size_t allocated = 0;
677
344k
        while (allocated < size) {
678
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
679
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
680
            // X MiB of data to make us allocate X+5 Mib.
681
114k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
682
114k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
683
114k
            v.reserve(allocated);
684
229k
            while (v.size() < allocated) {
685
114k
                v.emplace_back();
686
114k
                formatter.Unser(s, v.back());
687
114k
            }
688
114k
        }
689
229k
    };
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorI6CTxOutNS8_9allocatorISA_EEEEEEvRT_RT0_
Line
Count
Source
672
114k
    {
673
114k
        Formatter formatter;
674
114k
        v.clear();
675
114k
        size_t size = ReadCompactSize(s);
676
114k
        size_t allocated = 0;
677
229k
        while (allocated < size) {
678
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
679
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
680
            // X MiB of data to make us allocate X+5 Mib.
681
114k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
682
114k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
683
114k
            v.reserve(allocated);
684
290k
            while (v.size() < allocated) {
685
175k
                v.emplace_back();
686
175k
                formatter.Unser(s, v.back());
687
175k
            }
688
114k
        }
689
114k
    };
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorINS9_IhNS8_9allocatorIhEEEENSA_ISC_EEEEEEvRT_RT0_
Line
Count
Source
672
114k
    {
673
114k
        Formatter formatter;
674
114k
        v.clear();
675
114k
        size_t size = ReadCompactSize(s);
676
114k
        size_t allocated = 0;
677
229k
        while (allocated < size) {
678
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
679
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
680
            // X MiB of data to make us allocate X+5 Mib.
681
114k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
682
114k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
683
114k
            v.reserve(allocated);
684
229k
            while (v.size() < allocated) {
685
114k
                v.emplace_back();
686
114k
                formatter.Unser(s, v.back());
687
114k
            }
688
114k
        }
689
114k
    };
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamNSt3__16vectorI7uint256NS4_9allocatorIS6_EEEEEEvRT_RT0_
_ZN15VectorFormatterI19CustomUintFormatterILi6ELb0EEE5UnserI10DataStreamNSt3__16vectorIyNS5_9allocatorIyEEEEEEvRT_RT0_
Line
Count
Source
672
61.0k
    {
673
61.0k
        Formatter formatter;
674
61.0k
        v.clear();
675
61.0k
        size_t size = ReadCompactSize(s);
676
61.0k
        size_t allocated = 0;
677
118k
        while (allocated < size) {
678
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
679
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
680
            // X MiB of data to make us allocate X+5 Mib.
681
57.5k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
682
57.5k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
683
57.5k
            v.reserve(allocated);
684
130k
            while (v.size() < allocated) {
685
73.2k
                v.emplace_back();
686
73.2k
                formatter.Unser(s, v.back());
687
73.2k
            }
688
57.5k
        }
689
61.0k
    };
_ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamNSt3__16vectorI20PrefilledTransactionNS4_9allocatorIS6_EEEEEEvRT_RT0_
Line
Count
Source
672
61.0k
    {
673
61.0k
        Formatter formatter;
674
61.0k
        v.clear();
675
61.0k
        size_t size = ReadCompactSize(s);
676
61.0k
        size_t allocated = 0;
677
122k
        while (allocated < size) {
678
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
679
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
680
            // X MiB of data to make us allocate X+5 Mib.
681
61.0k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
682
61.0k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
683
61.0k
            v.reserve(allocated);
684
123k
            while (v.size() < allocated) {
685
62.2k
                v.emplace_back();
686
62.2k
                formatter.Unser(s, v.back());
687
62.2k
            }
688
61.0k
        }
689
61.0k
    };
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamNSt3__16vectorIjNS4_9allocatorIjEEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamNSt3__16vectorINS5_IhNS4_9allocatorIhEEEENS6_IS8_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI17TxInUndoFormatterE5UnserI10DataStreamNSt3__16vectorI4CoinNS4_9allocatorIS6_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamNSt3__16vectorI7CTxUndoNS4_9allocatorIS6_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI19DifferenceFormatterE5UnserI10DataStreamNSt3__16vectorItNS4_9allocatorItEEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamNSt3__16vectorI12CBlockHeaderNS4_9allocatorIS6_EEEEEEvRT_RT0_
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsENSt3__16vectorI5CTxInNS8_9allocatorISA_EEEEEEvRT_RT0_
Line
Count
Source
672
87.4k
    {
673
87.4k
        Formatter formatter;
674
87.4k
        v.clear();
675
87.4k
        size_t size = ReadCompactSize(s);
676
87.4k
        size_t allocated = 0;
677
131k
        while (allocated < size) {
678
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
679
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
680
            // X MiB of data to make us allocate X+5 Mib.
681
43.7k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
682
43.7k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
683
43.7k
            v.reserve(allocated);
684
87.4k
            while (v.size() < allocated) {
685
43.7k
                v.emplace_back();
686
43.7k
                formatter.Unser(s, v.back());
687
43.7k
            }
688
43.7k
        }
689
87.4k
    };
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsENSt3__16vectorI6CTxOutNS8_9allocatorISA_EEEEEEvRT_RT0_
Line
Count
Source
672
43.7k
    {
673
43.7k
        Formatter formatter;
674
43.7k
        v.clear();
675
43.7k
        size_t size = ReadCompactSize(s);
676
43.7k
        size_t allocated = 0;
677
87.4k
        while (allocated < size) {
678
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
679
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
680
            // X MiB of data to make us allocate X+5 Mib.
681
43.7k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
682
43.7k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
683
43.7k
            v.reserve(allocated);
684
131k
            while (v.size() < allocated) {
685
87.4k
                v.emplace_back();
686
87.4k
                formatter.Unser(s, v.back());
687
87.4k
            }
688
43.7k
        }
689
43.7k
    };
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsENSt3__16vectorINS9_IhNS8_9allocatorIhEEEENSA_ISC_EEEEEEvRT_RT0_
Line
Count
Source
672
43.7k
    {
673
43.7k
        Formatter formatter;
674
43.7k
        v.clear();
675
43.7k
        size_t size = ReadCompactSize(s);
676
43.7k
        size_t allocated = 0;
677
87.4k
        while (allocated < size) {
678
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
679
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
680
            // X MiB of data to make us allocate X+5 Mib.
681
43.7k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
682
43.7k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
683
43.7k
            v.reserve(allocated);
684
87.4k
            while (v.size() < allocated) {
685
43.7k
                v.emplace_back();
686
43.7k
                formatter.Unser(s, v.back());
687
43.7k
            }
688
43.7k
        }
689
43.7k
    };
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamNSt3__16vectorI5CTxInNS4_9allocatorIS6_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamNSt3__16vectorI6CTxOutNS4_9allocatorIS6_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamNSt3__16vectorIN6wallet9CMerkleTxENS4_9allocatorIS7_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamNSt3__16vectorINS4_4pairINS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEESC_EENSA_ISD_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEENSt3__16vectorIS8_NSB_9allocatorIS8_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsENSt3__16vectorI5CTxInNS8_9allocatorISA_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsENSt3__16vectorI6CTxOutNS8_9allocatorISA_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsENSt3__16vectorINS9_IhNS8_9allocatorIhEEEENSA_ISC_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEENSt3__16vectorIS6_NS9_9allocatorIS6_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamNSt3__16vectorI4CInvNS4_9allocatorIS6_EEEEEEvRT_RT0_
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12HashVerifierI14BufferedReaderI8AutoFileEENSt3__16vectorI7CTxUndoNS8_9allocatorISA_EEEEEEvRT_RT0_
Line
Count
Source
672
87.4k
    {
673
87.4k
        Formatter formatter;
674
87.4k
        v.clear();
675
87.4k
        size_t size = ReadCompactSize(s);
676
87.4k
        size_t allocated = 0;
677
87.4k
        while (allocated < size) {
678
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
679
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
680
            // X MiB of data to make us allocate X+5 Mib.
681
0
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
682
0
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
683
0
            v.reserve(allocated);
684
0
            while (v.size() < allocated) {
685
0
                v.emplace_back();
686
0
                formatter.Unser(s, v.back());
687
0
            }
688
0
        }
689
87.4k
    };
Unexecuted instantiation: _ZN15VectorFormatterI17TxInUndoFormatterE5UnserI12HashVerifierI14BufferedReaderI8AutoFileEENSt3__16vectorI4CoinNS8_9allocatorISA_EEEEEEvRT_RT0_
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsENSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEvRT_RT0_
Line
Count
Source
672
43.7k
    {
673
43.7k
        Formatter formatter;
674
43.7k
        v.clear();
675
43.7k
        size_t size = ReadCompactSize(s);
676
43.7k
        size_t allocated = 0;
677
87.4k
        while (allocated < size) {
678
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
679
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
680
            // X MiB of data to make us allocate X+5 Mib.
681
43.7k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
682
43.7k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
683
43.7k
            v.reserve(allocated);
684
87.4k
            while (v.size() < allocated) {
685
43.7k
                v.emplace_back();
686
43.7k
                formatter.Unser(s, v.back());
687
43.7k
            }
688
43.7k
        }
689
43.7k
    };
Unexecuted instantiation: fees.cpp:_ZN15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEE5UnserI8AutoFileNSt3__16vectorIdNS5_9allocatorIdEEEEEEvRT_RT0_
Unexecuted instantiation: fees.cpp:_ZN15VectorFormatterIS_IN12_GLOBAL__N_122EncodedDoubleFormatterEEE5UnserI8AutoFileNSt3__16vectorINS7_IdNS6_9allocatorIdEEEENS8_ISA_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamNSt3__16vectorI9COutPointNS4_9allocatorIS6_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10SpanReaderNSt3__16vectorINS5_IhNS4_9allocatorIhEEEENS6_IS8_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsENSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsENSt3__16vectorI5CTxInNS8_9allocatorISA_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsENSt3__16vectorI6CTxOutNS8_9allocatorISA_EEEEEEvRT_RT0_
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsENSt3__16vectorINS9_IhNS8_9allocatorIhEEEENSA_ISC_EEEEEEvRT_RT0_
690
};
691
692
/**
693
 * Forward declarations
694
 */
695
696
/**
697
 *  string
698
 */
699
template<typename Stream, typename C> void Serialize(Stream& os, const std::basic_string<C>& str);
700
template<typename Stream, typename C> void Unserialize(Stream& is, std::basic_string<C>& str);
701
702
/**
703
 * prevector
704
 */
705
template<typename Stream, unsigned int N, typename T> inline void Serialize(Stream& os, const prevector<N, T>& v);
706
template<typename Stream, unsigned int N, typename T> inline void Unserialize(Stream& is, prevector<N, T>& v);
707
708
/**
709
 * vector
710
 */
711
template<typename Stream, typename T, typename A> inline void Serialize(Stream& os, const std::vector<T, A>& v);
712
template<typename Stream, typename T, typename A> inline void Unserialize(Stream& is, std::vector<T, A>& v);
713
714
/**
715
 * pair
716
 */
717
template<typename Stream, typename K, typename T> void Serialize(Stream& os, const std::pair<K, T>& item);
718
template<typename Stream, typename K, typename T> void Unserialize(Stream& is, std::pair<K, T>& item);
719
720
/**
721
 * map
722
 */
723
template<typename Stream, typename K, typename T, typename Pred, typename A> void Serialize(Stream& os, const std::map<K, T, Pred, A>& m);
724
template<typename Stream, typename K, typename T, typename Pred, typename A> void Unserialize(Stream& is, std::map<K, T, Pred, A>& m);
725
726
/**
727
 * set
728
 */
729
template<typename Stream, typename K, typename Pred, typename A> void Serialize(Stream& os, const std::set<K, Pred, A>& m);
730
template<typename Stream, typename K, typename Pred, typename A> void Unserialize(Stream& is, std::set<K, Pred, A>& m);
731
732
/**
733
 * shared_ptr
734
 */
735
template<typename Stream, typename T> void Serialize(Stream& os, const std::shared_ptr<const T>& p);
736
template<typename Stream, typename T> void Unserialize(Stream& os, std::shared_ptr<const T>& p);
737
738
/**
739
 * unique_ptr
740
 */
741
template<typename Stream, typename T> void Serialize(Stream& os, const std::unique_ptr<const T>& p);
742
template<typename Stream, typename T> void Unserialize(Stream& os, std::unique_ptr<const T>& p);
743
744
745
/**
746
 * If none of the specialized versions above matched, default to calling member function.
747
 */
748
template <class T, class Stream>
749
concept Serializable = requires(T a, Stream s) { a.Serialize(s); };
750
template <typename Stream, typename T>
751
    requires Serializable<T, Stream>
752
void Serialize(Stream& os, const T& a)
753
37.3M
{
754
37.3M
    a.Serialize(os);
755
37.3M
}
_Z9SerializeI12SizeComputer13ParamsWrapperI20TransactionSerParamsK12CTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
123k
{
754
123k
    a.Serialize(os);
755
123k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
177k
{
754
177k
    a.Serialize(os);
755
177k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Line
Count
Source
753
207k
{
754
207k
    a.Serialize(os);
755
207k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
177k
{
754
177k
    a.Serialize(os);
755
177k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
447k
{
754
447k
    a.Serialize(os);
755
447k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
177k
{
754
177k
    a.Serialize(os);
755
177k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
177k
{
754
177k
    a.Serialize(os);
755
177k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Line
Count
Source
753
177k
{
754
177k
    a.Serialize(os);
755
177k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
270k
{
754
270k
    a.Serialize(os);
755
270k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINSA_IhNS9_9allocatorIhEEEENSB_ISD_EEEEEQ12SerializableIT0_T_EEvRSK_RKSJ_
Line
Count
Source
753
30.5k
{
754
30.5k
    a.Serialize(os);
755
30.5k
}
_Z9SerializeI12SizeComputer13ParamsWrapperI20TransactionSerParamsK6CBlockEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
48.1k
{
754
48.1k
    a.Serialize(os);
755
48.1k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE6CBlockQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
48.1k
{
754
48.1k
    a.Serialize(os);
755
48.1k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEQ12SerializableIT0_T_EEvRSM_RKSL_
Line
Count
Source
753
48.1k
{
754
48.1k
    a.Serialize(os);
755
48.1k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE12CBlockHeaderQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
48.1k
{
754
48.1k
    a.Serialize(os);
755
48.1k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7uint256Q12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
96.3k
{
754
96.3k
    a.Serialize(os);
755
96.3k
}
Unexecuted instantiation: _Z9SerializeI12SizeComputer13ParamsWrapperI20TransactionSerParamsK5CTxInEQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEQ12SerializableIT0_T_EEvRSG_RKSF_
Unexecuted instantiation: _Z9SerializeI10DataStream7AddrManQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream20AddrManDeterministicQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: cluster_linearize.cpp:_Z9SerializeI12VectorWriter7WrapperIN12_GLOBAL__N_117DepGraphFormatterERKN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEEQ12SerializableIT0_T_EEvRSE_RKSD_
Unexecuted instantiation: _Z9SerializeI12VectorWriter7WrapperI15VarIntFormatterIL10VarIntMode1EERKiEQ12SerializableIT0_T_EEvRS9_RKS8_
Unexecuted instantiation: _Z9SerializeI12VectorWriter7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ12SerializableIT0_T_EEvRS8_RKS7_
_Z9SerializeI12VectorWriter25CBlockHeaderAndShortTxIDsQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
134k
{
754
134k
    a.Serialize(os);
755
134k
}
_Z9SerializeI12VectorWriter12CBlockHeaderQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
134k
{
754
134k
    a.Serialize(os);
755
134k
}
_Z9SerializeI12VectorWriter7uint256Q12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
705k
{
754
705k
    a.Serialize(os);
755
705k
}
_Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS6_9allocatorIyEEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
753
134k
{
754
134k
    a.Serialize(os);
755
134k
}
_Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
753
134k
{
754
134k
    a.Serialize(os);
755
134k
}
_Z9SerializeI12VectorWriter20PrefilledTransactionQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
137k
{
754
137k
    a.Serialize(os);
755
137k
}
_Z9SerializeI12VectorWriter7WrapperI20CompactSizeFormatterILb1EERKtEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
137k
{
754
137k
    a.Serialize(os);
755
137k
}
_Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
753
137k
{
754
137k
    a.Serialize(os);
755
137k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEQ12SerializableIT0_T_EEvRSG_RKSF_
Line
Count
Source
753
137k
{
754
137k
    a.Serialize(os);
755
137k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
852k
{
754
852k
    a.Serialize(os);
755
852k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Line
Count
Source
753
1.70M
{
754
1.70M
    a.Serialize(os);
755
1.70M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
852k
{
754
852k
    a.Serialize(os);
755
852k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
852k
{
754
852k
    a.Serialize(os);
755
852k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
852k
{
754
852k
    a.Serialize(os);
755
852k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
2.09M
{
754
2.09M
    a.Serialize(os);
755
2.09M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Line
Count
Source
753
852k
{
754
852k
    a.Serialize(os);
755
852k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
1.24M
{
754
1.24M
    a.Serialize(os);
755
1.24M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINSA_IhNS9_9allocatorIhEEEENSB_ISD_EEEEEQ12SerializableIT0_T_EEvRSK_RKSJ_
Line
Count
Source
753
852k
{
754
852k
    a.Serialize(os);
755
852k
}
_Z9SerializeI12VectorWriter17BlockTransactionsQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
320k
{
754
320k
    a.Serialize(os);
755
320k
}
_Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEQ12SerializableIT0_T_EEvRSL_RKSK_
Line
Count
Source
753
320k
{
754
320k
    a.Serialize(os);
755
320k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEQ12SerializableIT0_T_EEvRSM_RKSL_
Line
Count
Source
753
579k
{
754
579k
    a.Serialize(os);
755
579k
}
_Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParamsNSt3__16vectorI6CBlockNS3_9allocatorIS5_EEEEEQ12SerializableIT0_T_EEvRSB_RKSA_
Line
Count
Source
753
258k
{
754
258k
    a.Serialize(os);
755
258k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CBlockNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Line
Count
Source
753
258k
{
754
258k
    a.Serialize(os);
755
258k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CBlockQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
258k
{
754
258k
    a.Serialize(os);
755
258k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE12CBlockHeaderQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
258k
{
754
258k
    a.Serialize(os);
755
258k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7uint256Q12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
517k
{
754
517k
    a.Serialize(os);
755
517k
}
_Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParamsK12CTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
173k
{
754
173k
    a.Serialize(os);
755
173k
}
Unexecuted instantiation: _Z9SerializeI10DataStream11BlockFilterQ12SerializableIT0_T_EEvRS3_RKS2_
_Z9SerializeI10DataStream7uint256Q12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
409k
{
754
409k
    a.Serialize(os);
755
409k
}
_Z9SerializeI10DataStream14CBlockFileInfoQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
36
{
754
36
    a.Serialize(os);
755
36
}
_Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
753
611
{
754
611
    a.Serialize(os);
755
611
}
_Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode0EERKyEQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
753
72
{
754
72
    a.Serialize(os);
755
72
}
Unexecuted instantiation: _Z9SerializeI10DataStream25CBlockHeaderAndShortTxIDsQ12SerializableIT0_T_EEvRS3_RKS2_
_Z9SerializeI10DataStream12CBlockHeaderQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
196k
{
754
196k
    a.Serialize(os);
755
196k
}
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS6_9allocatorIyEEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Unexecuted instantiation: _Z9SerializeI10DataStream20PrefilledTransactionQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI20CompactSizeFormatterILb1EERKtEQ12SerializableIT0_T_EEvRS8_RKS7_
Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEQ12SerializableIT0_T_EEvRSG_RKSF_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS8_RKS7_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINSA_IhNS9_9allocatorIhEEEENSB_ISD_EEEEEQ12SerializableIT0_T_EEvRSK_RKSJ_
Unexecuted instantiation: _Z9SerializeI10DataStream8CFeeRateQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream12CMerkleBlockQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream18CPartialMerkleTreeQ12SerializableIT0_T_EEvRS3_RKS2_
_Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7uint256NS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
753
670
{
754
670
    a.Serialize(os);
755
670
}
Unexecuted instantiation: _Z9SerializeI10DataStream9COutPointQ12SerializableIT0_T_EEvRS3_RKS2_
_Z9SerializeI10DataStream22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS4_RKS3_
Line
Count
Source
753
177k
{
754
177k
    a.Serialize(os);
755
177k
}
Unexecuted instantiation: _Z9SerializeI10DataStream7CPubKeyQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream7CScriptQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream5CTxInQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream11FlatFilePosQ12SerializableIT0_T_EEvRS3_RKS2_
_Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode1EERKiEQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
753
227
{
754
227
    a.Serialize(os);
755
227
}
Unexecuted instantiation: _Z9SerializeI10DataStream13KeyOriginInfoQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorIjNS5_9allocatorIjEEEEEQ12SerializableIT0_T_EEvRSE_RKSD_
Unexecuted instantiation: _Z9SerializeI10DataStream26PartiallySignedTransactionQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI12SizeComputer17CompactSizeWriterQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream17CompactSizeWriterQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI12SizeComputer13ParamsWrapperI20TransactionSerParamsK19CMutableTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE19CMutableTransactionQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParamsK19CMutableTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE19CMutableTransactionQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI10DataStream9PSBTInputQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI12SizeComputer13ParamsWrapperI20TransactionSerParamsKNSt3__110shared_ptrIK12CTransactionEEEQ12SerializableIT0_T_EEvRSB_RKSA_
Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParamsKNSt3__110shared_ptrIK12CTransactionEEEQ12SerializableIT0_T_EEvRSB_RKSA_
_Z9SerializeI12SizeComputer6CTxOutQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
35.4k
{
754
35.4k
    a.Serialize(os);
755
35.4k
}
_Z9SerializeI12SizeComputer7CScriptQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
35.4k
{
754
35.4k
    a.Serialize(os);
755
35.4k
}
Unexecuted instantiation: _Z9SerializeI10DataStream6CTxOutQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI12SizeComputer11XOnlyPubKeyQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI12SizeComputer7uint256Q12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream11XOnlyPubKeyQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEQ12SerializableIT0_T_EEvRSG_RKSF_
Unexecuted instantiation: _Z9SerializeI10DataStream10PSBTOutputQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParams6CBlockEQ12SerializableIT0_T_EEvRS6_RKS5_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE6CBlockQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE12CBlockHeaderQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7uint256Q12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEQ12SerializableIT0_T_EEvRSM_RKSL_
Unexecuted instantiation: _Z9SerializeI10DataStream13CBlockLocatorQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream7CTxUndoQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
_Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
177k
{
754
177k
    a.Serialize(os);
755
177k
}
_Z9SerializeI10DataStream7WrapperI16TxOutCompressionRK6CTxOutEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
30
{
754
30
    a.Serialize(os);
755
30
}
_Z9SerializeI10DataStream7WrapperI17AmountCompressionRKxEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
30
{
754
30
    a.Serialize(os);
755
30
}
_Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
30
{
754
30
    a.Serialize(os);
755
30
}
_Z9SerializeI10DataStream7WrapperI17ScriptCompressionRK7CScriptEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
30
{
754
30
    a.Serialize(os);
755
30
}
Unexecuted instantiation: _Z9SerializeI10DataStream10CBlockUndoQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
_Z9SerializeI10DataStream4CoinQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
30
{
754
30
    a.Serialize(os);
755
30
}
Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperIN8CNetAddr9SerParamsEKS2_EQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEES3_Q12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSD_RKSC_
Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEQ12SerializableIT0_T_EEvRS8_RKS7_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE8CServiceQ12SerializableIT0_T_EEvRS8_RKS7_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE7WrapperI19CustomUintFormatterILi2ELb1EERKtEQ12SerializableIT0_T_EEvRSD_RKSC_
Unexecuted instantiation: _Z9SerializeI10DataStream14CMessageHeaderQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperIN8CAddress9SerParamsEKS2_EQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEES3_Q12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE7WrapperI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNSA_8durationIxNS9_5ratioILl1ELl1EEEEEEEEQ12SerializableIT0_T_EEvRSM_RKSL_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE7WrapperI20CompactSizeFormatterILb0EERyEQ12SerializableIT0_T_EEvRSC_RKSB_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEQ12SerializableIT0_T_EEvRSE_RKSD_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEQ12SerializableIT0_T_EEvRSD_RKSC_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE8CServiceQ12SerializableIT0_T_EEvRSC_RKSB_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEES7_Q12SerializableIT0_T_EEvRSB_RKSA_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSH_RKSG_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE7WrapperI19CustomUintFormatterILi2ELb1EERKtEQ12SerializableIT0_T_EEvRSH_RKSG_
Unexecuted instantiation: _Z9SerializeI10DataStream4CInvQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream12CBloomFilterQ12SerializableIT0_T_EEvRS3_RKS2_
_Z9SerializeI10DataStream15CDiskBlockIndexQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
186
{
754
186
    a.Serialize(os);
755
186
}
_Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode1EERiEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
186
{
754
186
    a.Serialize(os);
755
186
}
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI16TxOutCompressionR6CTxOutEQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI10DataStream17BlockTransactionsQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEQ12SerializableIT0_T_EEvRSL_RKSK_
Unexecuted instantiation: _Z9SerializeI10DataStream24BlockTransactionsRequestQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI19DifferenceFormatterERKNSt3__16vectorItNS5_9allocatorItEEEEEQ12SerializableIT0_T_EEvRSE_RKSD_
Unexecuted instantiation: _Z9SerializeI10DataStreamN4node16SnapshotMetadataEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: _Z9SerializeI10DataStream7uint160Q12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParams25CBlockHeaderAndShortTxIDsEQ12SerializableIT0_T_EEvRS6_RKS5_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE25CBlockHeaderAndShortTxIDsQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNSA_9allocatorIyEEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE20PrefilledTransactionQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI20CompactSizeFormatterILb1EERKtEQ12SerializableIT0_T_EEvRSC_RKSB_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE13ParamsWrapperIS3_7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEQ12SerializableIT0_T_EEvRSI_RKSH_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEQ12SerializableIT0_T_EEvRSI_RKSH_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E12CTransactionQ12SerializableIT0_T_EEvRS9_RKS8_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNSB_9allocatorISD_EEEEEQ12SerializableIT0_T_EEvRSL_RKSK_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E5CTxInQ12SerializableIT0_T_EEvRS9_RKS8_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E9COutPointQ12SerializableIT0_T_EEvRS9_RKS8_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRSA_RKS9_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E7CScriptQ12SerializableIT0_T_EEvRS9_RKS8_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNSB_9allocatorISD_EEEEEQ12SerializableIT0_T_EEvRSL_RKSK_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E6CTxOutQ12SerializableIT0_T_EEvRS9_RKS8_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINSC_IhNSB_9allocatorIhEEEENSD_ISF_EEEEEQ12SerializableIT0_T_EEvRSM_RKSL_
Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParams6CBlockEQ12SerializableIT0_T_EEvRS6_RKS5_
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorIiNS5_9allocatorIiEEEEEQ12SerializableIT0_T_EEvRSE_RKSD_
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERK9prevectorILj8EijiEEQ12SerializableIT0_T_EEvRSB_RKSA_
Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParams19CMutableTransactionEQ12SerializableIT0_T_EEvRS6_RKS5_
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI22LimitedStringFormatterILm10EERKNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Unexecuted instantiation: _Z9SerializeI8AutoFileN4node16SnapshotMetadataEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: _Z9SerializeI8AutoFile7uint256Q12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI8AutoFile22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: _Z9SerializeI8AutoFile4CoinQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI8AutoFile7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ12SerializableIT0_T_EEvRS8_RKS7_
Unexecuted instantiation: _Z9SerializeI8AutoFile7WrapperI16TxOutCompressionRK6CTxOutEQ12SerializableIT0_T_EEvRS8_RKS7_
Unexecuted instantiation: _Z9SerializeI8AutoFile7WrapperI17AmountCompressionRKxEQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI8AutoFile7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ12SerializableIT0_T_EEvRS8_RKS7_
Unexecuted instantiation: _Z9SerializeI8AutoFile7WrapperI17ScriptCompressionRK7CScriptEQ12SerializableIT0_T_EEvRS8_RKS7_
Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParamsK12CTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI10DataStreamN6wallet9CWalletTxEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS5_4pairINS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEESD_EENSB_ISE_EEEEEQ12SerializableIT0_T_EEvRSL_RKSK_
Unexecuted instantiation: _Z9SerializeI10DataStreamN6wallet12CKeyMetadataEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: _Z9SerializeI10DataStream6CKeyIDQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStreamN6wallet10CMasterKeyEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: _Z9SerializeI10DataStreamN6wallet8CKeyPoolEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: _Z9SerializeI10DataStreamN6wallet16WalletDescriptorEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: _Z9SerializeI10DataStreamN6wallet8CHDChainEQ12SerializableIT0_T_EEvRS4_RKS3_
_Z9SerializeI12VectorWriter7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
21.8k
{
754
21.8k
    a.Serialize(os);
755
21.8k
}
_Z9SerializeI12VectorWriter13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
87.2k
{
754
87.2k
    a.Serialize(os);
755
87.2k
}
_Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE8CServiceQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
87.2k
{
754
87.2k
    a.Serialize(os);
755
87.2k
}
_Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEES3_Q12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
87.2k
{
754
87.2k
    a.Serialize(os);
755
87.2k
}
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSD_RKSC_
_Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE7WrapperI19CustomUintFormatterILi2ELb1EERKtEQ12SerializableIT0_T_EEvRSD_RKSC_
Line
Count
Source
753
87.2k
{
754
87.2k
    a.Serialize(os);
755
87.2k
}
Unexecuted instantiation: _Z9SerializeI18HashedSourceWriterI8AutoFileE7AddrManQ12SerializableIT0_T_EEvRS5_RKS4_
Unexecuted instantiation: _Z9SerializeI18HashedSourceWriterI8AutoFileE13ParamsWrapperIN8CAddress9SerParamsEKNSt3__16vectorIS4_NS6_9allocatorIS4_EEEEEQ12SerializableIT0_T_EEvRSE_RKSD_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorIS5_NSC_9allocatorIS5_EEEEEQ12SerializableIT0_T_EEvRSL_RKSK_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEES5_Q12SerializableIT0_T_EEvRS9_RKS8_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE7WrapperI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNSC_8durationIxNSB_5ratioILl1ELl1EEEEEEEEQ12SerializableIT0_T_EEvRSO_RKSN_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE7WrapperI20CompactSizeFormatterILb0EERyEQ12SerializableIT0_T_EEvRSE_RKSD_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEQ12SerializableIT0_T_EEvRSG_RKSF_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEQ12SerializableIT0_T_EEvRSF_RKSE_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE8CServiceQ12SerializableIT0_T_EEvRSE_RKSD_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEES9_Q12SerializableIT0_T_EEvRSD_RKSC_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSJ_RKSI_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE7WrapperI19CustomUintFormatterILi2ELb1EERKtEQ12SerializableIT0_T_EEvRSJ_RKSI_
_Z9SerializeI10HashWriter7uint256Q12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
4.84M
{
754
4.84M
    a.Serialize(os);
755
4.84M
}
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE7uint256Q12SerializableIT0_T_EEvRSA_RKS9_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE8AddrInfoQ12SerializableIT0_T_EEvRSA_RKS9_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE8CNetAddrQ12SerializableIT0_T_EEvRSA_RKS9_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSF_RKSE_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE7WrapperI15ChronoFormatterIxLb0EERKNSt3__16chrono10time_pointI9NodeClockNSC_8durationIxNSB_5ratioILl1ELl1EEEEEEEEQ12SerializableIT0_T_EEvRSO_RKSN_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE7uint256Q12SerializableIT0_T_EEvRS8_RKS7_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE8AddrInfoQ12SerializableIT0_T_EEvRS8_RKS7_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE8CNetAddrQ12SerializableIT0_T_EEvRS8_RKS7_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSD_RKSC_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE7WrapperI15ChronoFormatterIxLb0EERKNSt3__16chrono10time_pointI9NodeClockNSA_8durationIxNS9_5ratioILl1ELl1EEEEEEEEQ12SerializableIT0_T_EEvRSM_RKSL_
Unexecuted instantiation: _Z9SerializeI12SizeComputer25CBlockHeaderAndShortTxIDsQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI12SizeComputer12CBlockHeaderQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS6_9allocatorIyEEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Unexecuted instantiation: _Z9SerializeI12SizeComputer20PrefilledTransactionQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI12SizeComputer7WrapperI20CompactSizeFormatterILb1EERKtEQ12SerializableIT0_T_EEvRS8_RKS7_
Unexecuted instantiation: _Z9SerializeI12SizeComputer13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEQ12SerializableIT0_T_EEvRSG_RKSF_
Unexecuted instantiation: blockfilterindex.cpp:_Z9SerializeI10DataStreamN12_GLOBAL__N_111DBHeightKeyEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: blockfilterindex.cpp:_Z9SerializeI10DataStreamN12_GLOBAL__N_19DBHashKeyEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: blockfilterindex.cpp:_Z9SerializeI10DataStreamN12_GLOBAL__N_15DBValEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: coinstatsindex.cpp:_Z9SerializeI10DataStreamN12_GLOBAL__N_111DBHeightKeyEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: coinstatsindex.cpp:_Z9SerializeI10DataStreamN12_GLOBAL__N_19DBHashKeyEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: coinstatsindex.cpp:_Z9SerializeI10DataStreamN12_GLOBAL__N_15DBValEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: _Z9SerializeI10DataStream10MuHash3072Q12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream7Num3072Q12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream10CDiskTxPosQ12SerializableIT0_T_EEvRS3_RKS2_
_Z9SerializeI10HashWriter9COutPointQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
11.4k
{
754
11.4k
    a.Serialize(os);
755
11.4k
}
_Z9SerializeI10HashWriter22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS4_RKS3_
Line
Count
Source
753
11.4k
{
754
11.4k
    a.Serialize(os);
755
11.4k
}
_Z9SerializeI10HashWriter6CTxOutQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
11.4k
{
754
11.4k
    a.Serialize(os);
755
11.4k
}
_Z9SerializeI10HashWriter7CScriptQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
11.4k
{
754
11.4k
    a.Serialize(os);
755
11.4k
}
_Z9SerializeI12VectorWriter14CMessageHeaderQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
1.11M
{
754
1.11M
    a.Serialize(os);
755
1.11M
}
_Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI4CInvNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
753
4.65k
{
754
4.65k
    a.Serialize(os);
755
4.65k
}
_Z9SerializeI12VectorWriter4CInvQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
5.66k
{
754
5.66k
    a.Serialize(os);
755
5.66k
}
_Z9SerializeI12VectorWriter13CBlockLocatorQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
5.42k
{
754
5.42k
    a.Serialize(os);
755
5.42k
}
_Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7uint256NS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
753
5.42k
{
754
5.42k
    a.Serialize(os);
755
5.42k
}
Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParamsK6CBlockEQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12VectorWriter12CMerkleBlockQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI12VectorWriter18CPartialMerkleTreeQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI12CBlockHeaderNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
_Z9SerializeI12VectorWriter24BlockTransactionsRequestQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
2.53k
{
754
2.53k
    a.Serialize(os);
755
2.53k
}
_Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI19DifferenceFormatterERKNSt3__16vectorItNS5_9allocatorItEEEEEQ12SerializableIT0_T_EEvRSE_RKSD_
Line
Count
Source
753
2.53k
{
754
2.53k
    a.Serialize(os);
755
2.53k
}
Unexecuted instantiation: _Z9SerializeI12VectorWriter11BlockFilterQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI12VectorWriter13ParamsWrapperIN8CAddress9SerParamsENSt3__16vectorIS2_NS4_9allocatorIS2_EEEEEQ12SerializableIT0_T_EEvRSB_RKSA_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorIS3_NSA_9allocatorIS3_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEES3_Q12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE7WrapperI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNSA_8durationIxNS9_5ratioILl1ELl1EEEEEEEEQ12SerializableIT0_T_EEvRSM_RKSL_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE7WrapperI20CompactSizeFormatterILb0EERyEQ12SerializableIT0_T_EEvRSC_RKSB_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEQ12SerializableIT0_T_EEvRSE_RKSD_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEQ12SerializableIT0_T_EEvRSD_RKSC_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE8CServiceQ12SerializableIT0_T_EEvRSC_RKSB_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEES7_Q12SerializableIT0_T_EEvRSB_RKSA_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSH_RKSG_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE7WrapperI19CustomUintFormatterILi2ELb1EERKtEQ12SerializableIT0_T_EEvRSH_RKSG_
_Z9SerializeI12SizeComputer10CBlockUndoQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
782
{
754
782
    a.Serialize(os);
755
782
}
_Z9SerializeI12SizeComputer7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
753
782
{
754
782
    a.Serialize(os);
755
782
}
_Z9SerializeI12SizeComputer7CTxUndoQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI12SizeComputer7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI12SizeComputer7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
1.49k
{
754
1.49k
    a.Serialize(os);
755
1.49k
}
_Z9SerializeI12SizeComputer7WrapperI16TxOutCompressionRK6CTxOutEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI12SizeComputer7WrapperI17AmountCompressionRKxEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI12SizeComputer7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI12SizeComputer7WrapperI17ScriptCompressionRK7CScriptEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI10HashWriter10CBlockUndoQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
782
{
754
782
    a.Serialize(os);
755
782
}
_Z9SerializeI10HashWriter7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
753
782
{
754
782
    a.Serialize(os);
755
782
}
_Z9SerializeI10HashWriter7CTxUndoQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI10HashWriter7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI10HashWriter7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
1.49k
{
754
1.49k
    a.Serialize(os);
755
1.49k
}
_Z9SerializeI10HashWriter7WrapperI16TxOutCompressionRK6CTxOutEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI10HashWriter7WrapperI17AmountCompressionRKxEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI10HashWriter7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI10HashWriter7WrapperI17ScriptCompressionRK7CScriptEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI14BufferedWriterI8AutoFileE10CBlockUndoQ12SerializableIT0_T_EEvRS5_RKS4_
Line
Count
Source
753
782
{
754
782
    a.Serialize(os);
755
782
}
_Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS7_9allocatorIS9_EEEEEQ12SerializableIT0_T_EEvRSH_RKSG_
Line
Count
Source
753
782
{
754
782
    a.Serialize(os);
755
782
}
_Z9SerializeI14BufferedWriterI8AutoFileE7CTxUndoQ12SerializableIT0_T_EEvRS5_RKS4_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS7_9allocatorIS9_EEEEEQ12SerializableIT0_T_EEvRSH_RKSG_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ12SerializableIT0_T_EEvRSA_RKS9_
Line
Count
Source
753
1.49k
{
754
1.49k
    a.Serialize(os);
755
1.49k
}
_Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI16TxOutCompressionRK6CTxOutEQ12SerializableIT0_T_EEvRSA_RKS9_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI17AmountCompressionRKxEQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ12SerializableIT0_T_EEvRSA_RKS9_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI17ScriptCompressionRK7CScriptEQ12SerializableIT0_T_EEvRSA_RKS9_
Line
Count
Source
753
749
{
754
749
    a.Serialize(os);
755
749
}
_Z9SerializeI14BufferedWriterI8AutoFileE7uint256Q12SerializableIT0_T_EEvRS5_RKS4_
Line
Count
Source
753
782
{
754
782
    a.Serialize(os);
755
782
}
_Z9SerializeI14BufferedWriterI8AutoFileE13ParamsWrapperI20TransactionSerParamsK6CBlockEQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
753
1.11k
{
754
1.11k
    a.Serialize(os);
755
1.11k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE6CBlockQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
753
1.11k
{
754
1.11k
    a.Serialize(os);
755
1.11k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE12CBlockHeaderQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
753
1.11k
{
754
1.11k
    a.Serialize(os);
755
1.11k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7uint256Q12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
753
2.22k
{
754
2.22k
    a.Serialize(os);
755
2.22k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINSB_10shared_ptrIK12CTransactionEENSB_9allocatorISG_EEEEEQ12SerializableIT0_T_EEvRSO_RKSN_
Line
Count
Source
753
1.11k
{
754
1.11k
    a.Serialize(os);
755
1.11k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
753
2.46k
{
754
2.46k
    a.Serialize(os);
755
2.46k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNSB_9allocatorISD_EEEEEQ12SerializableIT0_T_EEvRSL_RKSK_
Line
Count
Source
753
4.92k
{
754
4.92k
    a.Serialize(os);
755
4.92k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
753
2.46k
{
754
2.46k
    a.Serialize(os);
755
2.46k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
753
2.46k
{
754
2.46k
    a.Serialize(os);
755
2.46k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRSA_RKS9_
Line
Count
Source
753
2.46k
{
754
2.46k
    a.Serialize(os);
755
2.46k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
753
6.03k
{
754
6.03k
    a.Serialize(os);
755
6.03k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNSB_9allocatorISD_EEEEEQ12SerializableIT0_T_EEvRSL_RKSK_
Line
Count
Source
753
2.46k
{
754
2.46k
    a.Serialize(os);
755
2.46k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
753
3.57k
{
754
3.57k
    a.Serialize(os);
755
3.57k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINSC_IhNSB_9allocatorIhEEEENSD_ISF_EEEEEQ12SerializableIT0_T_EEvRSM_RKSL_
Line
Count
Source
753
2.46k
{
754
2.46k
    a.Serialize(os);
755
2.46k
}
Unexecuted instantiation: _Z9SerializeI8AutoFile13ParamsWrapperI20TransactionSerParamsK12CTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS8_RKS7_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINSA_IhNS9_9allocatorIhEEEENSB_ISD_EEEEEQ12SerializableIT0_T_EEvRSK_RKSJ_
Unexecuted instantiation: fees.cpp:_Z9SerializeI8AutoFile7WrapperIN12_GLOBAL__N_122EncodedDoubleFormatterERKdEQ12SerializableIT0_T_EEvRS8_RKS7_
Unexecuted instantiation: fees.cpp:_Z9SerializeI8AutoFile7WrapperI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERKNSt3__16vectorIdNS6_9allocatorIdEEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Unexecuted instantiation: fees.cpp:_Z9SerializeI8AutoFile7WrapperI15VectorFormatterIS2_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERKNSt3__16vectorINS8_IdNS7_9allocatorIdEEEENS9_ISB_EEEEEQ12SerializableIT0_T_EEvRSI_RKSH_
Unexecuted instantiation: _Z9SerializeI10HashWriter22transaction_identifierILb1EEQ12SerializableIT0_T_EEvRS4_RKS3_
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CCoinNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Unexecuted instantiation: _Z9SerializeI10DataStream5CCoinQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream13ParamsWrapperI20TransactionSerParamsK6CBlockEQ12SerializableIT0_T_EEvRS7_RKS6_
txdb.cpp:_Z9SerializeI10DataStreamN12_GLOBAL__N_19CoinEntryEQ12SerializableIT0_T_EEvRS4_RKS3_
Line
Count
Source
753
177k
{
754
177k
    a.Serialize(os);
755
177k
}
_Z9SerializeI10HashWriter12CBlockHeaderQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
753
2.37M
{
754
2.37M
    a.Serialize(os);
755
2.37M
}
Unexecuted instantiation: _Z9SerializeI10HashWriter13ParamsWrapperI20TransactionSerParamsK19CMutableTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE19CMutableTransactionQ12SerializableIT0_T_EEvRS7_RKS6_
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Line
Count
Source
753
1.26M
{
754
1.26M
    a.Serialize(os);
755
1.26M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
878k
{
754
878k
    a.Serialize(os);
755
878k
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
878k
{
754
878k
    a.Serialize(os);
755
878k
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
753
878k
{
754
878k
    a.Serialize(os);
755
878k
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
2.05M
{
754
2.05M
    a.Serialize(os);
755
2.05M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Line
Count
Source
753
878k
{
754
878k
    a.Serialize(os);
755
878k
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
1.17M
{
754
1.17M
    a.Serialize(os);
755
1.17M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINSA_IhNS9_9allocatorIhEEEENSB_ISD_EEEEEQ12SerializableIT0_T_EEvRSK_RKSJ_
Line
Count
Source
753
387k
{
754
387k
    a.Serialize(os);
755
387k
}
_Z9SerializeI10HashWriter13ParamsWrapperI20TransactionSerParamsK12CTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
878k
{
754
878k
    a.Serialize(os);
755
878k
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
753
878k
{
754
878k
    a.Serialize(os);
755
878k
}
Unexecuted instantiation: interpreter.cpp:_Z9SerializeI10HashWriterN12_GLOBAL__N_131CTransactionSignatureSerializerI12CTransactionEEQ12SerializableIT0_T_EEvRS6_RKS5_
Unexecuted instantiation: interpreter.cpp:_Z9SerializeI10HashWriterN12_GLOBAL__N_131CTransactionSignatureSerializerI19CMutableTransactionEEQ12SerializableIT0_T_EEvRS6_RKS5_
Unexecuted instantiation: _Z9SerializeI10HashWriter17CompactSizeWriterQ12SerializableIT0_T_EEvRS3_RKS2_
756
757
template <class T, class Stream>
758
concept Unserializable = requires(T a, Stream s) { a.Unserialize(s); };
759
template <typename Stream, typename T>
760
    requires Unserializable<T, Stream>
761
void Unserialize(Stream& is, T&& a)
762
22.4M
{
763
22.4M
    a.Unserialize(is);
764
22.4M
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamR20AddrManDeterministicQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperI20TransactionSerParams6CBlockEQ14UnserializableIT0_T_EEvRS7_OS6_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER6CBlockQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER12CBlockHeaderQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER7uint256Q14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEQ14UnserializableIT0_T_EEvRSL_OSK_
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS9_9allocatorISB_EEEEEQ14UnserializableIT0_T_EEvRSI_OSH_
Line
Count
Source
762
229k
{
763
229k
    a.Unserialize(is);
764
229k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER5CTxInQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
114k
{
763
114k
    a.Unserialize(is);
764
114k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER9COutPointQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
114k
{
763
114k
    a.Unserialize(is);
764
114k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS9_OS8_
Line
Count
Source
762
114k
{
763
114k
    a.Unserialize(is);
764
114k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER7CScriptQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
290k
{
763
290k
    a.Unserialize(is);
764
290k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS9_9allocatorISB_EEEEEQ14UnserializableIT0_T_EEvRSI_OSH_
Line
Count
Source
762
114k
{
763
114k
    a.Unserialize(is);
764
114k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER6CTxOutQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
175k
{
763
175k
    a.Unserialize(is);
764
175k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINSA_IhNS9_9allocatorIhEEEENSB_ISD_EEEEEQ14UnserializableIT0_T_EEvRSJ_OSI_
Line
Count
Source
762
114k
{
763
114k
    a.Unserialize(is);
764
114k
}
_Z11UnserializeI10DataStreamR12CBlockHeaderQ14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
762
181k
{
763
181k
    a.Unserialize(is);
764
181k
}
_Z11UnserializeI10DataStreamR7uint256Q14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
762
4.89M
{
763
4.89M
    a.Unserialize(is);
764
4.89M
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamR13CBlockLocatorQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS5_9allocatorIS7_EEEEEQ14UnserializableIT0_T_EEvRSE_OSD_
_Z11UnserializeI10DataStreamR14CBlockFileInfoQ14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
762
7.28k
{
763
7.28k
    a.Unserialize(is);
764
7.28k
}
_Z11UnserializeI10DataStreamR7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRS9_OS8_
Line
Count
Source
762
6.06M
{
763
6.06M
    a.Unserialize(is);
764
6.06M
}
_Z11UnserializeI10DataStreamR7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ14UnserializableIT0_T_EEvRS9_OS8_
Line
Count
Source
762
188k
{
763
188k
    a.Unserialize(is);
764
188k
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamR11BlockFilterQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR9COutPointQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperI20TransactionSerParams19CMutableTransactionEQ14UnserializableIT0_T_EEvRS7_OS6_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER19CMutableTransactionQ14UnserializableIT0_T_EEvRS8_OS7_
_Z11UnserializeI10DataStreamR15CDiskBlockIndexQ14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
762
1.46M
{
763
1.46M
    a.Unserialize(is);
764
1.46M
}
_Z11UnserializeI10DataStreamR7WrapperI15VarIntFormatterIL10VarIntMode1EERiEQ14UnserializableIT0_T_EEvRS9_OS8_
Line
Count
Source
762
4.39M
{
763
4.39M
    a.Unserialize(is);
764
4.39M
}
Unexecuted instantiation: cluster_linearize.cpp:_Z11UnserializeI10SpanReaderR7WrapperIN12_GLOBAL__N_117DepGraphFormatterERN17cluster_linearize8DepGraphIN13bitset_detail9IntBitSetIjEEEEEQ14UnserializableIT0_T_EEvRSE_OSD_
Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7WrapperI15VarIntFormatterIL10VarIntMode1EERiEQ14UnserializableIT0_T_EEvRS9_OS8_
Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRS9_OS8_
Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ14UnserializableIT0_T_EEvRS9_OS8_
_Z11UnserializeI10DataStreamR4CoinQ14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
762
173k
{
763
173k
    a.Unserialize(is);
764
173k
}
_Z11UnserializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
173k
{
763
173k
    a.Unserialize(is);
764
173k
}
_Z11UnserializeI10DataStream7WrapperI16TxOutCompressionR6CTxOutEQ14UnserializableIT0_T_EEvRS7_OS6_
Line
Count
Source
762
173k
{
763
173k
    a.Unserialize(is);
764
173k
}
_Z11UnserializeI10DataStreamR7WrapperI17AmountCompressionRxEQ14UnserializableIT0_T_EEvRS7_OS6_
Line
Count
Source
762
173k
{
763
173k
    a.Unserialize(is);
764
173k
}
_Z11UnserializeI10DataStreamR7WrapperI17ScriptCompressionR7CScriptEQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
173k
{
763
173k
    a.Unserialize(is);
764
173k
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperIN8CAddress9SerParamsE8AddrInfoEQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER8AddrInfoQ14UnserializableIT0_T_EEvRS9_OS8_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEERS3_Q14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNSA_8durationIxNS9_5ratioILl1ELl1EEEEEEEEQ14UnserializableIT0_T_EEvRSM_OSL_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb0EERyEQ14UnserializableIT0_T_EEvRSD_OSC_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEQ14UnserializableIT0_T_EEvRSE_OSD_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ14UnserializableIT0_T_EEvRSD_OSC_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRSD_OSC_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEERS7_Q14UnserializableIT0_T_EEvRSC_OSB_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSH_OSG_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSH_OSG_
_Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER8CNetAddrQ14UnserializableIT0_T_EEvRS9_OS8_
Line
Count
Source
762
38.1k
{
763
38.1k
    a.Unserialize(is);
764
38.1k
}
_Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSD_OSC_
Line
Count
Source
762
38.1k
{
763
38.1k
    a.Unserialize(is);
764
38.1k
}
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNSA_8durationIxNS9_5ratioILl1ELl1EEEEEEEEQ14UnserializableIT0_T_EEvRSM_OSL_
_Z11UnserializeI10DataStreamR25CBlockHeaderAndShortTxIDsQ14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
762
61.0k
{
763
61.0k
    a.Unserialize(is);
764
61.0k
}
_Z11UnserializeI10DataStreamR7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERNSt3__16vectorIyNS6_9allocatorIyEEEEEQ14UnserializableIT0_T_EEvRSF_OSE_
Line
Count
Source
762
61.0k
{
763
61.0k
    a.Unserialize(is);
764
61.0k
}
_Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI20PrefilledTransactionNS5_9allocatorIS7_EEEEEQ14UnserializableIT0_T_EEvRSE_OSD_
Line
Count
Source
762
61.0k
{
763
61.0k
    a.Unserialize(is);
764
61.0k
}
_Z11UnserializeI10DataStreamR20PrefilledTransactionQ14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
762
62.2k
{
763
62.2k
    a.Unserialize(is);
764
62.2k
}
_Z11UnserializeI10DataStreamR7WrapperI20CompactSizeFormatterILb1EERtEQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
62.2k
{
763
62.2k
    a.Unserialize(is);
764
62.2k
}
_Z11UnserializeI10DataStreamR13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEEQ14UnserializableIT0_T_EEvRSF_OSE_
Line
Count
Source
762
62.2k
{
763
62.2k
    a.Unserialize(is);
764
62.2k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER7WrapperI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEQ14UnserializableIT0_T_EEvRSG_OSF_
Line
Count
Source
762
62.2k
{
763
62.2k
    a.Unserialize(is);
764
62.2k
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamR8CFeeRateQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR12CMerkleBlockQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR18CPartialMerkleTreeQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR7CPubKeyQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR7CScriptQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR5CTxInQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR11FlatFilePosQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR13KeyOriginInfoQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorIjNS5_9allocatorIjEEEEEQ14UnserializableIT0_T_EEvRSD_OSC_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR26PartiallySignedTransactionQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR9PSBTInputQ14UnserializableIT0_T_EEvRS4_OS3_
_Z11UnserializeI10DataStreamR13ParamsWrapperI20TransactionSerParamsNSt3__110shared_ptrIK12CTransactionEEEQ14UnserializableIT0_T_EEvRSB_OSA_
Line
Count
Source
762
51.9k
{
763
51.9k
    a.Unserialize(is);
764
51.9k
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamR6CTxOutQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEQ14UnserializableIT0_T_EEvRSF_OSE_
Unexecuted instantiation: _Z11UnserializeI10SpanReaderR11XOnlyPubKeyQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7uint256Q14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR11XOnlyPubKeyQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR10PSBTOutputQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR7CTxUndoQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI15VectorFormatterI17TxInUndoFormatterERNSt3__16vectorI4CoinNS5_9allocatorIS7_EEEEEQ14UnserializableIT0_T_EEvRSF_OSE_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR10CBlockUndoQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7CTxUndoNS5_9allocatorIS7_EEEEEQ14UnserializableIT0_T_EEvRSE_OSD_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperIN8CNetAddr9SerParamsES2_EQ14UnserializableIT0_T_EEvRS7_OS6_
_Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEERS3_Q14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
20.9k
{
763
20.9k
    a.Unserialize(is);
764
20.9k
}
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSD_OSC_
_Z11UnserializeI10DataStreamR13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
20.9k
{
763
20.9k
    a.Unserialize(is);
764
20.9k
}
_Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRS9_OS8_
Line
Count
Source
762
20.9k
{
763
20.9k
    a.Unserialize(is);
764
20.9k
}
_Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSD_OSC_
Line
Count
Source
762
20.9k
{
763
20.9k
    a.Unserialize(is);
764
20.9k
}
_Z11UnserializeI10DataStreamR14CMessageHeaderQ14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
762
1.01M
{
763
1.01M
    a.Unserialize(is);
764
1.01M
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperIN8CAddress9SerParamsES2_EQ14UnserializableIT0_T_EEvRS7_OS6_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR4CInvQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR12CBloomFilterQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI16TxOutCompressionR6CTxOutEQ14UnserializableIT0_T_EEvRS8_OS7_
_Z11UnserializeI10DataStreamR17BlockTransactionsQ14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
762
111k
{
763
111k
    a.Unserialize(is);
764
111k
}
_Z11UnserializeI10DataStreamR13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEQ14UnserializableIT0_T_EEvRSL_OSK_
Line
Count
Source
762
111k
{
763
111k
    a.Unserialize(is);
764
111k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEQ14UnserializableIT0_T_EEvRSM_OSL_
Line
Count
Source
762
111k
{
763
111k
    a.Unserialize(is);
764
111k
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamR24BlockTransactionsRequestQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI15VectorFormatterI19DifferenceFormatterERNSt3__16vectorItNS5_9allocatorItEEEEEQ14UnserializableIT0_T_EEvRSE_OSD_
Unexecuted instantiation: _Z11UnserializeI10DataStreamRN4node16SnapshotMetadataEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR7uint160Q14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI12CBlockHeaderNS5_9allocatorIS7_EEEEEQ14UnserializableIT0_T_EEvRSE_OSD_
Unexecuted instantiation: _Z11UnserializeI10SpanReaderR13ParamsWrapperI20TransactionSerParams19CMutableTransactionEQ14UnserializableIT0_T_EEvRS7_OS6_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER19CMutableTransactionQ14UnserializableIT0_T_EEvRS8_OS7_
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS9_9allocatorISB_EEEEEQ14UnserializableIT0_T_EEvRSI_OSH_
Line
Count
Source
762
87.4k
{
763
87.4k
    a.Unserialize(is);
764
87.4k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER5CTxInQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
43.7k
{
763
43.7k
    a.Unserialize(is);
764
43.7k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER9COutPointQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
43.7k
{
763
43.7k
    a.Unserialize(is);
764
43.7k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS9_OS8_
Line
Count
Source
762
43.7k
{
763
43.7k
    a.Unserialize(is);
764
43.7k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER7CScriptQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
131k
{
763
131k
    a.Unserialize(is);
764
131k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS9_9allocatorISB_EEEEEQ14UnserializableIT0_T_EEvRSI_OSH_
Line
Count
Source
762
43.7k
{
763
43.7k
    a.Unserialize(is);
764
43.7k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER6CTxOutQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
87.4k
{
763
87.4k
    a.Unserialize(is);
764
87.4k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINSA_IhNS9_9allocatorIhEEEENSB_ISD_EEEEEQ14UnserializableIT0_T_EEvRSJ_OSI_
Line
Count
Source
762
43.7k
{
763
43.7k
    a.Unserialize(is);
764
43.7k
}
Unexecuted instantiation: _Z11UnserializeI10SpanReaderR6CTxOutQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10SpanReaderR7CScriptQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEQ14UnserializableIT0_T_EEvRSE_OSD_
Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEQ14UnserializableIT0_T_EEvRSE_OSD_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI22LimitedStringFormatterILm10EERNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEQ14UnserializableIT0_T_EEvRSF_OSE_
Unexecuted instantiation: _Z11UnserializeI8AutoFileRN4node16SnapshotMetadataEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI8AutoFileR7uint256Q14UnserializableIT0_T_EEvRS4_OS3_
_Z11UnserializeI10DataStreamR13ParamsWrapperIN8CAddress9SerParamsE8CNetAddrEQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
38.1k
{
763
38.1k
    a.Unserialize(is);
764
38.1k
}
Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet8MetaPageEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet10PageHeaderEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet11RecordsPageEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet12RecordHeaderEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet10DataRecordEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet14OverflowRecordEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet12InternalPageEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet14InternalRecordEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI8AutoFileRN6wallet12OverflowPageEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI10DataStreamRN6wallet12CKeyMetadataEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR6CKeyIDQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamRN6wallet8CKeyPoolEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI10DataStreamRN6wallet16WalletDescriptorEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI10DataStreamRN6wallet9CWalletTxEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorIN6wallet9CMerkleTxENS5_9allocatorIS8_EEEEEQ14UnserializableIT0_T_EEvRSF_OSE_
Unexecuted instantiation: _Z11UnserializeI10DataStreamRN6wallet9CMerkleTxEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS5_4pairINS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEESD_EENSB_ISE_EEEEEQ14UnserializableIT0_T_EEvRSK_OSJ_
Unexecuted instantiation: _Z11UnserializeI10DataStreamRN6wallet10CMasterKeyEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI10DataStreamRN6wallet8CHDChainEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI10DataStreamER7AddrManQ14UnserializableIT0_T_EEvRS6_OS5_
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI8AutoFileER7AddrManQ14UnserializableIT0_T_EEvRS6_OS5_
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI8AutoFileER13ParamsWrapperIN8CAddress9SerParamsENSt3__16vectorIS4_NS6_9allocatorIS4_EEEEEQ14UnserializableIT0_T_EEvRSE_OSD_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorIS5_NSC_9allocatorIS5_EEEEEQ14UnserializableIT0_T_EEvRSK_OSJ_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEERS5_Q14UnserializableIT0_T_EEvRSA_OS9_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNSC_8durationIxNSB_5ratioILl1ELl1EEEEEEEEQ14UnserializableIT0_T_EEvRSO_OSN_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb0EERyEQ14UnserializableIT0_T_EEvRSF_OSE_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEQ14UnserializableIT0_T_EEvRSG_OSF_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ14UnserializableIT0_T_EEvRSF_OSE_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRSF_OSE_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEERS9_Q14UnserializableIT0_T_EEvRSE_OSD_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSJ_OSI_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSJ_OSI_
Unexecuted instantiation: _Z11UnserializeI8AutoFileR7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEEQ14UnserializableIT0_T_EEvRSA_OS9_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER7uint256Q14UnserializableIT0_T_EEvRS9_OS8_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER8AddrInfoQ14UnserializableIT0_T_EEvRS9_OS8_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEERS3_Q14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNSA_8durationIxNS9_5ratioILl1ELl1EEEEEEEEQ14UnserializableIT0_T_EEvRSM_OSL_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb0EERyEQ14UnserializableIT0_T_EEvRSD_OSC_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEQ14UnserializableIT0_T_EEvRSE_OSD_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ14UnserializableIT0_T_EEvRSD_OSC_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRSD_OSC_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEERS7_Q14UnserializableIT0_T_EEvRSC_OSB_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSH_OSG_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSH_OSG_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER8CNetAddrQ14UnserializableIT0_T_EEvRS9_OS8_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSD_OSC_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNSA_8durationIxNS9_5ratioILl1ELl1EEEEEEEEQ14UnserializableIT0_T_EEvRSM_OSL_
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI8AutoFileER7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEEQ14UnserializableIT0_T_EEvRSC_OSB_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER7uint256Q14UnserializableIT0_T_EEvRSB_OSA_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER8AddrInfoQ14UnserializableIT0_T_EEvRSB_OSA_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER8CNetAddrQ14UnserializableIT0_T_EEvRSB_OSA_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSF_OSE_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNSC_8durationIxNSB_5ratioILl1ELl1EEEEEEEEQ14UnserializableIT0_T_EEvRSO_OSN_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEEQ14UnserializableIT0_T_EEvRSA_OS9_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER7uint256Q14UnserializableIT0_T_EEvRS9_OS8_
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI10DataStreamER7WrapperI19CustomUintFormatterILi1ELb0EERN11AddrManImpl6FormatEEQ14UnserializableIT0_T_EEvRSC_OSB_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER7uint256Q14UnserializableIT0_T_EEvRSB_OSA_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER8AddrInfoQ14UnserializableIT0_T_EEvRSB_OSA_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEERS5_Q14UnserializableIT0_T_EEvRSA_OS9_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNSC_8durationIxNSB_5ratioILl1ELl1EEEEEEEEQ14UnserializableIT0_T_EEvRSO_OSN_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb0EERyEQ14UnserializableIT0_T_EEvRSF_OSE_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEQ14UnserializableIT0_T_EEvRSG_OSF_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ14UnserializableIT0_T_EEvRSF_OSE_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRSF_OSE_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEERS9_Q14UnserializableIT0_T_EEvRSE_OSD_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSJ_OSI_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSJ_OSI_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER8CNetAddrQ14UnserializableIT0_T_EEvRSB_OSA_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSF_OSE_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNSC_8durationIxNSB_5ratioILl1ELl1EEEEEEEEQ14UnserializableIT0_T_EEvRSO_OSN_
Unexecuted instantiation: blockfilterindex.cpp:_Z11UnserializeI10DataStreamRN12_GLOBAL__N_111DBHeightKeyEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: blockfilterindex.cpp:_Z11UnserializeI10DataStreamRN12_GLOBAL__N_15DBValEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: coinstatsindex.cpp:_Z11UnserializeI10DataStreamRN12_GLOBAL__N_111DBHeightKeyEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: coinstatsindex.cpp:_Z11UnserializeI10DataStreamRN12_GLOBAL__N_15DBValEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR10MuHash3072Q14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR7Num3072Q14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStreamR10CDiskTxPosQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI8AutoFileR12CBlockHeaderQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI8AutoFileR13ParamsWrapperI20TransactionSerParamsNSt3__110shared_ptrIK12CTransactionEEEQ14UnserializableIT0_T_EEvRSB_OSA_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS9_9allocatorISB_EEEEEQ14UnserializableIT0_T_EEvRSI_OSH_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsER5CTxInQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsER9COutPointQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsER22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS9_OS8_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsER7CScriptQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS9_9allocatorISB_EEEEEQ14UnserializableIT0_T_EEvRSI_OSH_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsER6CTxOutQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINSA_IhNS9_9allocatorIhEEEENSB_ISD_EEEEEQ14UnserializableIT0_T_EEvRSJ_OSI_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10DataStreamN8CAddress9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10DataStreamN8CAddress9SerParamsEER8CNetAddrQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10DataStreamN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSC_OSB_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10DataStreamN8CAddress9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSC_OSB_
_Z11UnserializeI10DataStreamR7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEQ14UnserializableIT0_T_EEvRS9_OS8_
Line
Count
Source
762
20.9k
{
763
20.9k
    a.Unserialize(is);
764
20.9k
}
_Z11UnserializeI10DataStreamR7WrapperI22LimitedStringFormatterILm256EERNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEQ14UnserializableIT0_T_EEvRSF_OSE_
Line
Count
Source
762
14.8k
{
763
14.8k
    a.Unserialize(is);
764
14.8k
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamR13ParamsWrapperIN8CAddress9SerParamsENSt3__16vectorIS2_NS4_9allocatorIS2_EEEEEQ14UnserializableIT0_T_EEvRSC_OSB_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorIS3_NSA_9allocatorIS3_EEEEEQ14UnserializableIT0_T_EEvRSI_OSH_
Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI4CInvNS5_9allocatorIS7_EEEEEQ14UnserializableIT0_T_EEvRSE_OSD_
_Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEER10CBlockUndoQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
87.4k
{
763
87.4k
    a.Unserialize(is);
764
87.4k
}
_Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7CTxUndoNS9_9allocatorISB_EEEEEQ14UnserializableIT0_T_EEvRSI_OSH_
Line
Count
Source
762
87.4k
{
763
87.4k
    a.Unserialize(is);
764
87.4k
}
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEER7CTxUndoQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEER7WrapperI15VectorFormatterI17TxInUndoFormatterERNSt3__16vectorI4CoinNS9_9allocatorISB_EEEEEQ14UnserializableIT0_T_EEvRSJ_OSI_
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEE7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRSC_OSB_
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEE7WrapperI16TxOutCompressionR6CTxOutEQ14UnserializableIT0_T_EEvRSB_OSA_
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEER7WrapperI17AmountCompressionRxEQ14UnserializableIT0_T_EEvRSB_OSA_
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEER7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ14UnserializableIT0_T_EEvRSD_OSC_
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEER7WrapperI17ScriptCompressionR7CScriptEQ14UnserializableIT0_T_EEvRSC_OSB_
Unexecuted instantiation: _Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEER7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRSD_OSC_
_Z11UnserializeI14BufferedReaderI8AutoFileER7uint256Q14UnserializableIT0_T_EEvRS6_OS5_
Line
Count
Source
762
87.4k
{
763
87.4k
    a.Unserialize(is);
764
87.4k
}
_Z11UnserializeI10SpanReaderR13ParamsWrapperI20TransactionSerParams6CBlockEQ14UnserializableIT0_T_EEvRS7_OS6_
Line
Count
Source
762
43.7k
{
763
43.7k
    a.Unserialize(is);
764
43.7k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER6CBlockQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
43.7k
{
763
43.7k
    a.Unserialize(is);
764
43.7k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER12CBlockHeaderQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
43.7k
{
763
43.7k
    a.Unserialize(is);
764
43.7k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER7uint256Q14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
762
87.4k
{
763
87.4k
    a.Unserialize(is);
764
87.4k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEQ14UnserializableIT0_T_EEvRSL_OSK_
Line
Count
Source
762
43.7k
{
763
43.7k
    a.Unserialize(is);
764
43.7k
}
Unexecuted instantiation: fees.cpp:_Z11UnserializeI8AutoFileR7WrapperIN12_GLOBAL__N_122EncodedDoubleFormatterERdEQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: fees.cpp:_Z11UnserializeI8AutoFileR7WrapperI15VectorFormatterIN12_GLOBAL__N_122EncodedDoubleFormatterEERNSt3__16vectorIdNS6_9allocatorIdEEEEEQ14UnserializableIT0_T_EEvRSF_OSE_
Unexecuted instantiation: fees.cpp:_Z11UnserializeI8AutoFileR7WrapperI15VectorFormatterIS2_IN12_GLOBAL__N_122EncodedDoubleFormatterEEERNSt3__16vectorINS8_IdNS7_9allocatorIdEEEENS9_ISB_EEEEEQ14UnserializableIT0_T_EEvRSI_OSH_
Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI9COutPointNS5_9allocatorIS7_EEEEEQ14UnserializableIT0_T_EEvRSE_OSD_
Unexecuted instantiation: _Z11UnserializeI10SpanReader7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEQ14UnserializableIT0_T_EEvRSF_OSE_
Unexecuted instantiation: txdb.cpp:_Z11UnserializeI10DataStreamRN12_GLOBAL__N_19CoinEntryEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI12BufferedFileR12CBlockHeaderQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI12BufferedFileR7uint256Q14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI12BufferedFileR13ParamsWrapperI20TransactionSerParams6CBlockEQ14UnserializableIT0_T_EEvRS7_OS6_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER6CBlockQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER12CBlockHeaderQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER7uint256Q14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEQ14UnserializableIT0_T_EEvRSL_OSK_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS9_9allocatorISB_EEEEEQ14UnserializableIT0_T_EEvRSI_OSH_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER5CTxInQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER9COutPointQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS9_OS8_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER7CScriptQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS9_9allocatorISB_EEEEEQ14UnserializableIT0_T_EEvRSI_OSH_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsER6CTxOutQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINSA_IhNS9_9allocatorIhEEEENSB_ISD_EEEEEQ14UnserializableIT0_T_EEvRSJ_OSI_
Unexecuted instantiation: _Z11UnserializeI8AutoFileR22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS5_OS4_
Unexecuted instantiation: _Z11UnserializeI8AutoFileR4CoinQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI8AutoFile7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI8AutoFile7WrapperI16TxOutCompressionR6CTxOutEQ14UnserializableIT0_T_EEvRS7_OS6_
Unexecuted instantiation: _Z11UnserializeI8AutoFileR7WrapperI17AmountCompressionRxEQ14UnserializableIT0_T_EEvRS7_OS6_
Unexecuted instantiation: _Z11UnserializeI8AutoFileR7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ14UnserializableIT0_T_EEvRS9_OS8_
Unexecuted instantiation: _Z11UnserializeI8AutoFileR7WrapperI17ScriptCompressionR7CScriptEQ14UnserializableIT0_T_EEvRS8_OS7_
Unexecuted instantiation: _Z11UnserializeI8AutoFileR7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRS9_OS8_
765
766
/** Default formatter. Serializes objects as themselves.
767
 *
768
 * The vector/prevector serialization code passes this to VectorFormatter
769
 * to enable reusing that logic. It shouldn't be needed elsewhere.
770
 */
771
struct DefaultFormatter
772
{
773
    template<typename Stream, typename T>
774
7.12M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsE5CTxInEEvRT_RKT0_
Line
Count
Source
774
177k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsE6CTxOutEEvRT_RKT0_
Line
Count
Source
774
270k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__16vectorIhNS6_9allocatorIhEEEEEEvRT_RKT0_
Line
Count
Source
774
30.5k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEEEEvRT_RKT0_
Line
Count
Source
774
53.6k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12SizeComputerNSt3__16vectorIhNS2_9allocatorIhEEEEEEvRT_RKT0_
_ZN16DefaultFormatter3SerI12VectorWriter20PrefilledTransactionEEvRT_RKT0_
Line
Count
Source
774
137k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEEEEvRT_RKT0_
Line
Count
Source
774
679k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsE5CTxInEEvRT_RKT0_
Line
Count
Source
774
852k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CTxOutEEvRT_RKT0_
Line
Count
Source
774
1.24M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorIhNS6_9allocatorIhEEEEEEvRT_RKT0_
Line
Count
Source
774
852k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CBlockEEvRT_RKT0_
Line
Count
Source
774
258k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStream20PrefilledTransactionEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEEEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR10DataStream20TransactionSerParamsE5CTxInEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR10DataStream20TransactionSerParamsE6CTxOutEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorIhNS6_9allocatorIhEEEEEEvRT_RKT0_
_ZN16DefaultFormatter3SerI10DataStream7uint256EEvRT_RKT0_
Line
Count
Source
774
1.34k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStreamjEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStreamNSt3__16vectorIhNS2_9allocatorIhEEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStream7CTxUndoEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsE20PrefilledTransactionEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_ENSt3__110shared_ptrIK12CTransactionEEEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_E5CTxInEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_E6CTxOutEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_ENSt3__16vectorIhNS8_9allocatorIhEEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStreamiEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStreamNSt3__14pairINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEES9_EEEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEES6_EEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12SizeComputer20PrefilledTransactionEEvRT_RKT0_
_ZN16DefaultFormatter3SerI12VectorWriter4CInvEEvRT_RKT0_
Line
Count
Source
774
5.66k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12VectorWriter7uint256EEvRT_RKT0_
Line
Count
Source
774
103k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12VectorWriter12CBlockHeaderEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEES4_EEvRT_RKT0_
_ZN16DefaultFormatter3SerI12SizeComputer7CTxUndoEEvRT_RKT0_
Line
Count
Source
774
749
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI10HashWriter7CTxUndoEEvRT_RKT0_
Line
Count
Source
774
749
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI14BufferedWriterI8AutoFileE7CTxUndoEEvRT_RKT0_
Line
Count
Source
774
749
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEEEEvRT_RKT0_
Line
Count
Source
774
2.46k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE5CTxInEEvRT_RKT0_
Line
Count
Source
774
2.46k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE6CTxOutEEvRT_RKT0_
Line
Count
Source
774
3.57k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__16vectorIhNS8_9allocatorIhEEEEEEvRT_RKT0_
Line
Count
Source
774
2.46k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsE5CTxInEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsE6CTxOutEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12ParamsStreamIR8AutoFile20TransactionSerParamsENSt3__16vectorIhNS6_9allocatorIhEEEEEEvRT_RKT0_
Unexecuted instantiation: _ZN16DefaultFormatter3SerI10DataStream5CCoinEEvRT_RKT0_
_ZN16DefaultFormatter3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsE5CTxInEEvRT_RKT0_
Line
Count
Source
774
878k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsE6CTxOutEEvRT_RKT0_
Line
Count
Source
774
1.17M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsENSt3__16vectorIhNS6_9allocatorIhEEEEEEvRT_RKT0_
Line
Count
Source
774
387k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
775
776
    template<typename Stream, typename T>
777
748k
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
_ZN16DefaultFormatter5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEEEEvRT_RT0_
Line
Count
Source
777
62.7k
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
_ZN16DefaultFormatter5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsE5CTxInEEvRT_RT0_
Line
Count
Source
777
114k
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
_ZN16DefaultFormatter5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsE6CTxOutEEvRT_RT0_
Line
Count
Source
777
175k
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
_ZN16DefaultFormatter5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorIhNS6_9allocatorIhEEEEEEvRT_RT0_
Line
Count
Source
777
114k
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStream7uint256EEvRT_RT0_
_ZN16DefaultFormatter5UnserI10DataStream20PrefilledTransactionEEvRT_RT0_
Line
Count
Source
777
62.2k
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStreamjEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStreamNSt3__16vectorIhNS2_9allocatorIhEEEEEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStream7CTxUndoEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStream12CBlockHeaderEEvRT_RT0_
_ZN16DefaultFormatter5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsE5CTxInEEvRT_RT0_
Line
Count
Source
777
43.7k
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
_ZN16DefaultFormatter5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsE6CTxOutEEvRT_RT0_
Line
Count
Source
777
87.4k
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
_ZN16DefaultFormatter5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsENSt3__16vectorIhNS6_9allocatorIhEEEEEEvRT_RT0_
Line
Count
Source
777
43.7k
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStream5CTxInEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStream6CTxOutEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStreamN6wallet9CMerkleTxEEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStreamNSt3__14pairINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEES9_EEEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEES6_EEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsE5CTxInEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsE6CTxOutEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR8AutoFile20TransactionSerParamsENSt3__16vectorIhNS6_9allocatorIhEEEEEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEES4_EEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStream4CInvEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12HashVerifierI14BufferedReaderI8AutoFileEE7CTxUndoEEvRT_RT0_
_ZN16DefaultFormatter5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEEEEvRT_RT0_
Line
Count
Source
777
43.7k
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStream9COutPointEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10SpanReaderNSt3__16vectorIhNS2_9allocatorIhEEEEEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEEEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsE5CTxInEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsE6CTxOutEEvRT_RT0_
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI12ParamsStreamIR12BufferedFile20TransactionSerParamsENSt3__16vectorIhNS6_9allocatorIhEEEEEEvRT_RT0_
778
};
779
780
781
782
783
784
/**
785
 * string
786
 */
787
template<typename Stream, typename C>
788
void Serialize(Stream& os, const std::basic_string<C>& str)
789
65.4k
{
790
65.4k
    WriteCompactSize(os, str.size());
791
65.4k
    if (!str.empty())
792
21.8k
        os.write(MakeByteSpan(str));
793
65.4k
}
Unexecuted instantiation: _Z9SerializeI8AutoFilecEvRT_RKNSt3__112basic_stringIT0_NS3_11char_traitsIS5_EENS3_9allocatorIS5_EEEE
_Z9SerializeI10DataStreamcEvRT_RKNSt3__112basic_stringIT0_NS3_11char_traitsIS5_EENS3_9allocatorIS5_EEEE
Line
Count
Source
789
21.8k
{
790
21.8k
    WriteCompactSize(os, str.size());
791
21.8k
    if (!str.empty())
792
21.8k
        os.write(MakeByteSpan(str));
793
21.8k
}
Unexecuted instantiation: _Z9SerializeI10HashWritercEvRT_RKNSt3__112basic_stringIT0_NS3_11char_traitsIS5_EENS3_9allocatorIS5_EEEE
_Z9SerializeI12VectorWritercEvRT_RKNSt3__112basic_stringIT0_NS3_11char_traitsIS5_EENS3_9allocatorIS5_EEEE
Line
Count
Source
789
43.6k
{
790
43.6k
    WriteCompactSize(os, str.size());
791
43.6k
    if (!str.empty())
792
0
        os.write(MakeByteSpan(str));
793
43.6k
}
794
795
template<typename Stream, typename C>
796
void Unserialize(Stream& is, std::basic_string<C>& str)
797
0
{
798
0
    unsigned int nSize = ReadCompactSize(is);
799
0
    str.resize(nSize);
800
0
    if (nSize != 0)
801
0
        is.read(MakeWritableByteSpan(str));
802
0
}
Unexecuted instantiation: _Z11UnserializeI8AutoFilecEvRT_RNSt3__112basic_stringIT0_NS3_11char_traitsIS5_EENS3_9allocatorIS5_EEEE
Unexecuted instantiation: _Z11UnserializeI12BufferedFilecEvRT_RNSt3__112basic_stringIT0_NS3_11char_traitsIS5_EENS3_9allocatorIS5_EEEE
Unexecuted instantiation: _Z11UnserializeI10DataStreamcEvRT_RNSt3__112basic_stringIT0_NS3_11char_traitsIS5_EENS3_9allocatorIS5_EEEE
803
804
805
806
/**
807
 * prevector
808
 */
809
template <typename Stream, unsigned int N, typename T>
810
void Serialize(Stream& os, const prevector<N, T>& v)
811
4.65M
{
812
4.65M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
813
4.65M
        WriteCompactSize(os, v.size());
814
4.65M
        if (!v.empty()) 
os.write(MakeByteSpan(v))3.60M
;
815
4.65M
    } else {
816
0
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
817
0
    }
818
4.65M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsELj28EhEvRT_RK9prevectorIXT0_ET1_jiE
Line
Count
Source
811
447k
{
812
447k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
813
447k
        WriteCompactSize(os, v.size());
814
447k
        if (!v.empty()) 
os.write(MakeByteSpan(v))363k
;
815
    } else {
816
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
817
    }
818
447k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsELj28EhEvRT_RK9prevectorIXT0_ET1_jiE
Line
Count
Source
811
2.09M
{
812
2.09M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
813
2.09M
        WriteCompactSize(os, v.size());
814
2.09M
        if (!v.empty()) 
os.write(MakeByteSpan(v))1.63M
;
815
    } else {
816
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
817
    }
818
2.09M
}
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsELj28EhEvRT_RK9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z9SerializeI10DataStreamLj28EhEvRT_RK9prevectorIXT0_ET1_jiE
_Z9SerializeI12SizeComputerLj28EhEvRT_RK9prevectorIXT0_ET1_jiE
Line
Count
Source
811
35.4k
{
812
35.4k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
813
35.4k
        WriteCompactSize(os, v.size());
814
35.4k
        if (!v.empty()) os.write(MakeByteSpan(v));
815
    } else {
816
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
817
    }
818
35.4k
}
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_ELj28EhEvRT_RK9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z9SerializeI10DataStreamLj8EiEvRT_RK9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE
_Z9SerializeI10HashWriterLj28EhEvRT_RK9prevectorIXT0_ET1_jiE
Line
Count
Source
811
11.4k
{
812
11.4k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
813
11.4k
        WriteCompactSize(os, v.size());
814
11.4k
        if (!v.empty()) os.write(MakeByteSpan(v));
815
    } else {
816
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
817
    }
818
11.4k
}
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsELj28EhEvRT_RK9prevectorIXT0_ET1_jiE
Line
Count
Source
811
6.03k
{
812
6.03k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
813
6.03k
        WriteCompactSize(os, v.size());
814
6.03k
        if (!v.empty()) 
os.write(MakeByteSpan(v))4.68k
;
815
    } else {
816
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
817
    }
818
6.03k
}
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsELj28EhEvRT_RK9prevectorIXT0_ET1_jiE
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsELj28EhEvRT_RK9prevectorIXT0_ET1_jiE
Line
Count
Source
811
2.05M
{
812
2.05M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
813
2.05M
        WriteCompactSize(os, v.size());
814
2.05M
        if (!v.empty()) 
os.write(MakeByteSpan(v))1.54M
;
815
    } else {
816
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
817
    }
818
2.05M
}
819
820
821
template <typename Stream, unsigned int N, typename T>
822
void Unserialize(Stream& is, prevector<N, T>& v)
823
421k
{
824
421k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
825
        // Limit size per read so bogus size value won't cause out of memory
826
421k
        v.clear();
827
421k
        unsigned int nSize = ReadCompactSize(is);
828
421k
        unsigned int i = 0;
829
789k
        while (i < nSize) {
830
367k
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
831
367k
            v.resize_uninitialized(i + blk);
832
367k
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
833
367k
            i += blk;
834
367k
        }
835
    } else {
836
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
837
    }
838
421k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsELj28EhEvRT_R9prevectorIXT0_ET1_jiE
Line
Count
Source
823
290k
{
824
290k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
825
        // Limit size per read so bogus size value won't cause out of memory
826
290k
        v.clear();
827
290k
        unsigned int nSize = ReadCompactSize(is);
828
290k
        unsigned int i = 0;
829
527k
        while (i < nSize) {
830
236k
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
831
236k
            v.resize_uninitialized(i + blk);
832
236k
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
833
236k
            i += blk;
834
236k
        }
835
    } else {
836
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
837
    }
838
290k
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamLj28EhEvRT_R9prevectorIXT0_ET1_jiE
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsELj28EhEvRT_R9prevectorIXT0_ET1_jiE
Line
Count
Source
823
131k
{
824
131k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
825
        // Limit size per read so bogus size value won't cause out of memory
826
131k
        v.clear();
827
131k
        unsigned int nSize = ReadCompactSize(is);
828
131k
        unsigned int i = 0;
829
262k
        while (i < nSize) {
830
131k
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
831
131k
            v.resize_uninitialized(i + blk);
832
131k
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
833
131k
            i += blk;
834
131k
        }
835
    } else {
836
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
837
    }
838
131k
}
Unexecuted instantiation: _Z11UnserializeI10SpanReaderLj28EhEvRT_R9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsELj28EhEvRT_R9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsELj28EhEvRT_R9prevectorIXT0_ET1_jiE
839
840
841
/**
842
 * vector
843
 */
844
template <typename Stream, typename T, typename A>
845
void Serialize(Stream& os, const std::vector<T, A>& v)
846
8.40M
{
847
8.40M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
1.31M
        WriteCompactSize(os, v.size());
849
1.31M
        if (!v.empty()) os.write(MakeByteSpan(v));
850
1.31M
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
0
        WriteCompactSize(os, v.size());
855
0
        for (bool elem : v) {
856
0
            ::Serialize(os, elem);
857
0
        }
858
7.08M
    } else {
859
7.08M
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
7.08M
    }
861
8.40M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE5CTxInNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Line
Count
Source
846
207k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
207k
    } else {
859
207k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
207k
    }
861
207k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE6CTxOutNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Line
Count
Source
846
177k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
177k
    } else {
859
177k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
177k
    }
861
177k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__16vectorIhNS5_9allocatorIhEEEENS7_IS9_EEEvRT_RKNS6_IT0_T1_EE
Line
Count
Source
846
30.5k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
30.5k
    } else {
859
30.5k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
30.5k
    }
861
30.5k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RKNS5_6vectorIT0_T1_EE
Line
Count
Source
846
30.5k
{
847
30.5k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
30.5k
        WriteCompactSize(os, v.size());
849
30.5k
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
    } else {
859
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
    }
861
30.5k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEENS5_9allocatorIS9_EEEvRT_RKNS5_6vectorIT0_T1_EE
Line
Count
Source
846
48.1k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
48.1k
    } else {
859
48.1k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
48.1k
    }
861
48.1k
}
Unexecuted instantiation: _Z9SerializeI12SizeComputerNSt3__16vectorIhNS1_9allocatorIhEEEENS3_IS5_EEEvRT_RKNS2_IT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12SizeComputerhNSt3__19allocatorIhEEEvRT_RKNS1_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI8AutoFilehNSt3__19allocatorIhEEEvRT_RKNS1_6vectorIT0_T1_EE
_Z9SerializeI12VectorWriter20PrefilledTransactionNSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Line
Count
Source
846
134k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
134k
    } else {
859
134k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
134k
    }
861
134k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE5CTxInNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Line
Count
Source
846
1.70M
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
1.70M
    } else {
859
1.70M
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
1.70M
    }
861
1.70M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CTxOutNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Line
Count
Source
846
852k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
852k
    } else {
859
852k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
852k
    }
861
852k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorIhNS5_9allocatorIhEEEENS7_IS9_EEEvRT_RKNS6_IT0_T1_EE
Line
Count
Source
846
852k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
852k
    } else {
859
852k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
852k
    }
861
852k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RKNS5_6vectorIT0_T1_EE
Line
Count
Source
846
852k
{
847
852k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
852k
        WriteCompactSize(os, v.size());
849
852k
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
    } else {
859
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
    }
861
852k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CBlockNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Line
Count
Source
846
258k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
258k
    } else {
859
258k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
258k
    }
861
258k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEENS5_9allocatorIS9_EEEvRT_RKNS5_6vectorIT0_T1_EE
Line
Count
Source
846
258k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
258k
    } else {
859
258k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
258k
    }
861
258k
}
_Z9SerializeI10DataStreamhNSt3__19allocatorIhEEEvRT_RKNS1_6vectorIT0_T1_EE
Line
Count
Source
846
38.1k
{
847
38.1k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
38.1k
        WriteCompactSize(os, v.size());
849
38.1k
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
    } else {
859
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
    }
861
38.1k
}
Unexecuted instantiation: _Z9SerializeI10DataStream20PrefilledTransactionNSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE5CTxInNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE6CTxOutNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorIhNS5_9allocatorIhEEEENS7_IS9_EEEvRT_RKNS6_IT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RKNS5_6vectorIT0_T1_EE
_Z9SerializeI10DataStream7uint256NSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Line
Count
Source
846
670
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
670
    } else {
859
670
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
670
    }
861
670
}
Unexecuted instantiation: _Z9SerializeI10DataStreamjNSt3__19allocatorIjEEEvRT_RKNS1_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__16vectorIhNS1_9allocatorIhEEEENS3_IS5_EEEvRT_RKNS2_IT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12VectorWriterhNSt3__19allocatorIhEEEvRT_RKNS1_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEENS5_9allocatorIS9_EEEvRT_RKNS5_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStream7CTxUndoNSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE20PrefilledTransactionNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E5CTxInNSt3__19allocatorIS7_EEEvRT_RKNS8_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E6CTxOutNSt3__19allocatorIS7_EEEvRT_RKNS8_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_ENSt3__16vectorIhNS7_9allocatorIhEEEENS9_ISB_EEEvRT_RKNS8_IT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EhNSt3__19allocatorIhEEEvRT_RKNS7_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamiNSt3__19allocatorIiEEEvRT_RKNS1_6vectorIT0_T1_EE
_Z9SerializeI10HashWriterhNSt3__19allocatorIhEEEvRT_RKNS1_6vectorIT0_T1_EE
Line
Count
Source
846
7.28k
{
847
7.28k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
7.28k
        WriteCompactSize(os, v.size());
849
7.28k
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
    } else {
859
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
    }
861
7.28k
}
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__14pairINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES8_EENS6_IS9_EEEvRT_RKNS1_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamh16secure_allocatorIhEEvRT_RKNSt3__16vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEES5_NSt3__19allocatorIS5_EEEvRT_RKNS8_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12SizeComputer20PrefilledTransactionNSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10HashWriterbNSt3__19allocatorIbEEEvRT_RKNS1_6vectorIT0_T1_EE
_Z9SerializeI12VectorWriter4CInvNSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Line
Count
Source
846
4.65k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
4.65k
    } else {
859
4.65k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
4.65k
    }
861
4.65k
}
_Z9SerializeI12VectorWriter7uint256NSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Line
Count
Source
846
5.42k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
5.42k
    } else {
859
5.42k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
5.42k
    }
861
5.42k
}
Unexecuted instantiation: _Z9SerializeI12VectorWriter12CBlockHeaderNSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEES3_NSt3__19allocatorIS3_EEEvRT_RKNS6_6vectorIT0_T1_EE
_Z9SerializeI12SizeComputer7CTxUndoNSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Line
Count
Source
846
782
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
782
    } else {
859
782
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
782
    }
861
782
}
_Z9SerializeI10HashWriter7CTxUndoNSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Line
Count
Source
846
782
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
782
    } else {
859
782
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
782
    }
861
782
}
_Z9SerializeI14BufferedWriterI8AutoFileE7CTxUndoNSt3__19allocatorIS3_EEEvRT_RKNS4_6vectorIT0_T1_EE
Line
Count
Source
846
782
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
782
    } else {
859
782
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
782
    }
861
782
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEENS7_9allocatorISB_EEEvRT_RKNS7_6vectorIT0_T1_EE
Line
Count
Source
846
1.11k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
1.11k
    } else {
859
1.11k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
1.11k
    }
861
1.11k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE5CTxInNSt3__19allocatorIS7_EEEvRT_RKNS8_6vectorIT0_T1_EE
Line
Count
Source
846
4.92k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
4.92k
    } else {
859
4.92k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
4.92k
    }
861
4.92k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE6CTxOutNSt3__19allocatorIS7_EEEvRT_RKNS8_6vectorIT0_T1_EE
Line
Count
Source
846
2.46k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
2.46k
    } else {
859
2.46k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
2.46k
    }
861
2.46k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__16vectorIhNS7_9allocatorIhEEEENS9_ISB_EEEvRT_RKNS8_IT0_T1_EE
Line
Count
Source
846
2.46k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
2.46k
    } else {
859
2.46k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
2.46k
    }
861
2.46k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RKNS7_6vectorIT0_T1_EE
Line
Count
Source
846
2.46k
{
847
2.46k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
2.46k
        WriteCompactSize(os, v.size());
849
2.46k
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
    } else {
859
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
    }
861
2.46k
}
Unexecuted instantiation: _Z9SerializeI8AutoFileSt4byteNSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE5CTxInNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE6CTxOutNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsENSt3__16vectorIhNS5_9allocatorIhEEEENS7_IS9_EEEvRT_RKNS6_IT0_T1_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RKNS5_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStream5CCoinNSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE5CTxInNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Line
Count
Source
846
1.26M
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
1.26M
    } else {
859
1.26M
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
1.26M
    }
861
1.26M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE6CTxOutNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Line
Count
Source
846
878k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
878k
    } else {
859
878k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
878k
    }
861
878k
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsENSt3__16vectorIhNS5_9allocatorIhEEEENS7_IS9_EEEvRT_RKNS6_IT0_T1_EE
Line
Count
Source
846
387k
{
847
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
        WriteCompactSize(os, v.size());
849
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
387k
    } else {
859
387k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
387k
    }
861
387k
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RKNS5_6vectorIT0_T1_EE
Line
Count
Source
846
387k
{
847
387k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
848
387k
        WriteCompactSize(os, v.size());
849
387k
        if (!v.empty()) os.write(MakeByteSpan(v));
850
    } else if constexpr (std::is_same_v<T, bool>) {
851
        // A special case for std::vector<bool>, as dereferencing
852
        // std::vector<bool>::const_iterator does not result in a const bool&
853
        // due to std::vector's special casing for bool arguments.
854
        WriteCompactSize(os, v.size());
855
        for (bool elem : v) {
856
            ::Serialize(os, elem);
857
        }
858
    } else {
859
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
860
    }
861
387k
}
862
863
864
template <typename Stream, typename T, typename A>
865
void Unserialize(Stream& is, std::vector<T, A>& v)
866
991k
{
867
991k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
868
        // Limit size per read so bogus size value won't cause out of memory
869
165k
        v.clear();
870
165k
        unsigned int nSize = ReadCompactSize(is);
871
165k
        unsigned int i = 0;
872
331k
        while (i < nSize) {
873
165k
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
874
165k
            v.resize(i + blk);
875
165k
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
876
165k
            i += blk;
877
165k
        }
878
825k
    } else {
879
825k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
880
825k
    }
881
991k
}
Unexecuted instantiation: _Z11UnserializeI8AutoFilehNSt3__19allocatorIhEEEvRT_RNS1_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEENS5_9allocatorIS9_EEEvRT_RNS5_6vectorIT0_T1_EE
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE5CTxInNSt3__19allocatorIS5_EEEvRT_RNS6_6vectorIT0_T1_EE
Line
Count
Source
866
229k
{
867
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
868
        // Limit size per read so bogus size value won't cause out of memory
869
        v.clear();
870
        unsigned int nSize = ReadCompactSize(is);
871
        unsigned int i = 0;
872
        while (i < nSize) {
873
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
874
            v.resize(i + blk);
875
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
876
            i += blk;
877
        }
878
229k
    } else {
879
229k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
880
229k
    }
881
229k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE6CTxOutNSt3__19allocatorIS5_EEEvRT_RNS6_6vectorIT0_T1_EE
Line
Count
Source
866
114k
{
867
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
868
        // Limit size per read so bogus size value won't cause out of memory
869
        v.clear();
870
        unsigned int nSize = ReadCompactSize(is);
871
        unsigned int i = 0;
872
        while (i < nSize) {
873
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
874
            v.resize(i + blk);
875
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
876
            i += blk;
877
        }
878
114k
    } else {
879
114k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
880
114k
    }
881
114k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorIhNS5_9allocatorIhEEEENS7_IS9_EEEvRT_RNS6_IT0_T1_EE
Line
Count
Source
866
114k
{
867
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
868
        // Limit size per read so bogus size value won't cause out of memory
869
        v.clear();
870
        unsigned int nSize = ReadCompactSize(is);
871
        unsigned int i = 0;
872
        while (i < nSize) {
873
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
874
            v.resize(i + blk);
875
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
876
            i += blk;
877
        }
878
114k
    } else {
879
114k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
880
114k
    }
881
114k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RNS5_6vectorIT0_T1_EE
Line
Count
Source
866
114k
{
867
114k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
868
        // Limit size per read so bogus size value won't cause out of memory
869
114k
        v.clear();
870
114k
        unsigned int nSize = ReadCompactSize(is);
871
114k
        unsigned int i = 0;
872
229k
        while (i < nSize) {
873
114k
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
874
114k
            v.resize(i + blk);
875
114k
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
876
114k
            i += blk;
877
114k
        }
878
    } else {
879
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
880
    }
881
114k
}
Unexecuted instantiation: _Z11UnserializeI10DataStream7uint256NSt3__19allocatorIS1_EEEvRT_RNS2_6vectorIT0_T1_EE
_Z11UnserializeI10DataStreamhNSt3__19allocatorIhEEEvRT_RNS1_6vectorIT0_T1_EE
Line
Count
Source
866
7.28k
{
867
7.28k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
868
        // Limit size per read so bogus size value won't cause out of memory
869
7.28k
        v.clear();
870
7.28k
        unsigned int nSize = ReadCompactSize(is);
871
7.28k
        unsigned int i = 0;
872
14.5k
        while (i < nSize) {
873
7.28k
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
874
7.28k
            v.resize(i + blk);
875
7.28k
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
876
7.28k
            i += blk;
877
7.28k
        }
878
    } else {
879
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
880
    }
881
7.28k
}
Unexecuted instantiation: _Z11UnserializeI12BufferedFilehNSt3__19allocatorIhEEEvRT_RNS1_6vectorIT0_T1_EE
_Z11UnserializeI10DataStream20PrefilledTransactionNSt3__19allocatorIS1_EEEvRT_RNS2_6vectorIT0_T1_EE
Line
Count
Source
866
61.0k
{
867
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
868
        // Limit size per read so bogus size value won't cause out of memory
869
        v.clear();
870
        unsigned int nSize = ReadCompactSize(is);
871
        unsigned int i = 0;
872
        while (i < nSize) {
873
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
874
            v.resize(i + blk);
875
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
876
            i += blk;
877
        }
878
61.0k
    } else {
879
61.0k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
880
61.0k
    }
881
61.0k
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamjNSt3__19allocatorIjEEEvRT_RNS1_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI10SpanReaderhNSt3__19allocatorIhEEEvRT_RNS1_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI10DataStreamNSt3__16vectorIhNS1_9allocatorIhEEEENS3_IS5_EEEvRT_RNS2_IT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI10DataStream7CTxUndoNSt3__19allocatorIS1_EEEvRT_RNS2_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI10DataStream12CBlockHeaderNSt3__19allocatorIS1_EEEvRT_RNS2_6vectorIT0_T1_EE
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE5CTxInNSt3__19allocatorIS5_EEEvRT_RNS6_6vectorIT0_T1_EE
Line
Count
Source
866
87.4k
{
867
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
868
        // Limit size per read so bogus size value won't cause out of memory
869
        v.clear();
870
        unsigned int nSize = ReadCompactSize(is);
871
        unsigned int i = 0;
872
        while (i < nSize) {
873
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
874
            v.resize(i + blk);
875
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
876
            i += blk;
877
        }
878
87.4k
    } else {
879
87.4k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
880
87.4k
    }
881
87.4k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE6CTxOutNSt3__19allocatorIS5_EEEvRT_RNS6_6vectorIT0_T1_EE
Line
Count
Source
866
43.7k
{
867
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
868
        // Limit size per read so bogus size value won't cause out of memory
869
        v.clear();
870
        unsigned int nSize = ReadCompactSize(is);
871
        unsigned int i = 0;
872
        while (i < nSize) {
873
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
874
            v.resize(i + blk);
875
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
876
            i += blk;
877
        }
878
43.7k
    } else {
879
43.7k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
880
43.7k
    }
881
43.7k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsENSt3__16vectorIhNS5_9allocatorIhEEEENS7_IS9_EEEvRT_RNS6_IT0_T1_EE
Line
Count
Source
866
43.7k
{
867
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
868
        // Limit size per read so bogus size value won't cause out of memory
869
        v.clear();
870
        unsigned int nSize = ReadCompactSize(is);
871
        unsigned int i = 0;
872
        while (i < nSize) {
873
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
874
            v.resize(i + blk);
875
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
876
            i += blk;
877
        }
878
43.7k
    } else {
879
43.7k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
880
43.7k
    }
881
43.7k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RNS5_6vectorIT0_T1_EE
Line
Count
Source
866
43.7k
{
867
43.7k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
868
        // Limit size per read so bogus size value won't cause out of memory
869
43.7k
        v.clear();
870
43.7k
        unsigned int nSize = ReadCompactSize(is);
871
43.7k
        unsigned int i = 0;
872
87.4k
        while (i < nSize) {
873
43.7k
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
874
43.7k
            v.resize(i + blk);
875
43.7k
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
876
43.7k
            i += blk;
877
43.7k
        }
878
    } else {
879
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
880
    }
881
43.7k
}
Unexecuted instantiation: _Z11UnserializeI10DataStream5CTxInNSt3__19allocatorIS1_EEEvRT_RNS2_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI10DataStream6CTxOutNSt3__19allocatorIS1_EEEvRT_RNS2_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI10DataStreamN6wallet9CMerkleTxENSt3__19allocatorIS2_EEEvRT_RNS3_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI10DataStreamNSt3__14pairINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES8_EENS6_IS9_EEEvRT_RNS1_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI10DataStreamh16secure_allocatorIhEEvRT_RNSt3__16vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEES5_NSt3__19allocatorIS5_EEEvRT_RNS8_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE5CTxInNSt3__19allocatorIS5_EEEvRT_RNS6_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE6CTxOutNSt3__19allocatorIS5_EEEvRT_RNS6_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsENSt3__16vectorIhNS5_9allocatorIhEEEENS7_IS9_EEEvRT_RNS6_IT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RNS5_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEES3_NSt3__19allocatorIS3_EEEvRT_RNS6_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI10DataStream4CInvNSt3__19allocatorIS1_EEEvRT_RNS2_6vectorIT0_T1_EE
_Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEE7CTxUndoNSt3__19allocatorIS5_EEEvRT_RNS6_6vectorIT0_T1_EE
Line
Count
Source
866
87.4k
{
867
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
868
        // Limit size per read so bogus size value won't cause out of memory
869
        v.clear();
870
        unsigned int nSize = ReadCompactSize(is);
871
        unsigned int i = 0;
872
        while (i < nSize) {
873
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
874
            v.resize(i + blk);
875
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
876
            i += blk;
877
        }
878
87.4k
    } else {
879
87.4k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
880
87.4k
    }
881
87.4k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEENS5_9allocatorIS9_EEEvRT_RNS5_6vectorIT0_T1_EE
Line
Count
Source
866
43.7k
{
867
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
868
        // Limit size per read so bogus size value won't cause out of memory
869
        v.clear();
870
        unsigned int nSize = ReadCompactSize(is);
871
        unsigned int i = 0;
872
        while (i < nSize) {
873
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
874
            v.resize(i + blk);
875
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
876
            i += blk;
877
        }
878
43.7k
    } else {
879
43.7k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
880
43.7k
    }
881
43.7k
}
Unexecuted instantiation: _Z11UnserializeI8AutoFileSt4byteNSt3__19allocatorIS1_EEEvRT_RNS2_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI10DataStream9COutPointNSt3__19allocatorIS1_EEEvRT_RNS2_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI10SpanReaderNSt3__16vectorIhNS1_9allocatorIhEEEENS3_IS5_EEEvRT_RNS2_IT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEENS5_9allocatorIS9_EEEvRT_RNS5_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE5CTxInNSt3__19allocatorIS5_EEEvRT_RNS6_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE6CTxOutNSt3__19allocatorIS5_EEEvRT_RNS6_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsENSt3__16vectorIhNS5_9allocatorIhEEEENS7_IS9_EEEvRT_RNS6_IT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RNS5_6vectorIT0_T1_EE
882
883
884
/**
885
 * pair
886
 */
887
template<typename Stream, typename K, typename T>
888
void Serialize(Stream& os, const std::pair<K, T>& item)
889
36.6k
{
890
36.6k
    Serialize(os, item.first);
891
36.6k
    Serialize(os, item.second);
892
36.6k
}
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_EvRT_RKNS1_4pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE22transaction_identifierILb0EEEvRT_RKNS1_4pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_EvRT_RKNS1_4pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE7uint256EvRT_RKNS1_4pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE7CPubKeyEvRT_RKNS1_4pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__16vectorIh16secure_allocatorIhEEE7uint256EvRT_RKNS1_4pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__16vectorIhNS1_9allocatorIhEEEE7uint256EvRT_RKNS1_4pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEjEvRT_RKNS1_4pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE7uint160EvRT_RKNS1_4pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE7CScriptEvRT_RKNS1_4pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEExEvRT_RKNS1_4pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEhEvRT_RKNS1_4pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4pairI7uint2567CPubKeyEEEvRT_RKNS8_IT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStream7uint2567CPubKeyEvRT_RKNSt3__14pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__14pairINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE7uint256EENS2_IjjEEEvRT_RKNS2_IT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamjjEvRT_RKNSt3__14pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__14pairINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE7uint256EEjEvRT_RKNS2_IT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4pairI22transaction_identifierILb0EEjEEEvRT_RKNS8_IT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStream22transaction_identifierILb0EEjEvRT_RKNSt3__14pairIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4pairIS7_S7_EEEvRT_RKNS8_IT0_T1_EE
Unexecuted instantiation: blockfilterindex.cpp:_Z9SerializeI10DataStream7uint256N12_GLOBAL__N_15DBValEEvRT_RKNSt3__14pairIT0_T1_EE
Unexecuted instantiation: coinstatsindex.cpp:_Z9SerializeI10DataStream7uint256N12_GLOBAL__N_15DBValEEvRT_RKNSt3__14pairIT0_T1_EE
_Z9SerializeI10DataStreamh7uint256EvRT_RKNSt3__14pairIT0_T1_EE
Line
Count
Source
889
14.7k
{
890
14.7k
    Serialize(os, item.first);
891
14.7k
    Serialize(os, item.second);
892
14.7k
}
_Z9SerializeI10DataStreamhiEvRT_RKNSt3__14pairIT0_T1_EE
Line
Count
Source
889
14.6k
{
890
14.6k
    Serialize(os, item.first);
891
14.6k
    Serialize(os, item.second);
892
14.6k
}
_Z9SerializeI10DataStreamhNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEvRT_RKNS1_4pairIT0_T1_EE
Line
Count
Source
889
7.28k
{
890
7.28k
    Serialize(os, item.first);
891
7.28k
    Serialize(os, item.second);
892
7.28k
}
Unexecuted instantiation: _Z9SerializeI8AutoFileK7uint256xEvRT_RKNSt3__14pairIT0_T1_EE
893
894
template<typename Stream, typename K, typename T>
895
void Unserialize(Stream& is, std::pair<K, T>& item)
896
1.47M
{
897
1.47M
    Unserialize(is, item.first);
898
1.47M
    Unserialize(is, item.second);
899
1.47M
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_EvRT_RNS1_4pairIT0_T1_EE
Unexecuted instantiation: blockfilterindex.cpp:_Z11UnserializeI10DataStream7uint256N12_GLOBAL__N_15DBValEEvRT_RNSt3__14pairIT0_T1_EE
Unexecuted instantiation: coinstatsindex.cpp:_Z11UnserializeI10DataStream7uint256N12_GLOBAL__N_15DBValEEvRT_RNSt3__14pairIT0_T1_EE
_Z11UnserializeI10DataStreamh7uint256EvRT_RNSt3__14pairIT0_T1_EE
Line
Count
Source
896
1.47M
{
897
1.47M
    Unserialize(is, item.first);
898
1.47M
    Unserialize(is, item.second);
899
1.47M
}
Unexecuted instantiation: _Z11UnserializeI8AutoFile7uint256xEvRT_RNSt3__14pairIT0_T1_EE
900
901
902
903
/**
904
 * map
905
 */
906
template<typename Stream, typename K, typename T, typename Pred, typename A>
907
void Serialize(Stream& os, const std::map<K, T, Pred, A>& m)
908
0
{
909
0
    WriteCompactSize(os, m.size());
910
0
    for (const auto& entry : m)
911
0
        Serialize(os, entry);
912
0
}
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_NS1_4lessIS7_EENS5_INS1_4pairIKS7_S7_EEEEEvRT_RKNS1_3mapIT0_T1_T2_T3_EE
Unexecuted instantiation: _Z9SerializeI8AutoFile7uint256xNSt3__14lessIS1_EENS2_9allocatorINS2_4pairIKS1_xEEEEEvRT_RKNS2_3mapIT0_T1_T2_T3_EE
913
914
template<typename Stream, typename K, typename T, typename Pred, typename A>
915
void Unserialize(Stream& is, std::map<K, T, Pred, A>& m)
916
0
{
917
0
    m.clear();
918
0
    unsigned int nSize = ReadCompactSize(is);
919
0
    typename std::map<K, T, Pred, A>::iterator mi = m.begin();
920
0
    for (unsigned int i = 0; i < nSize; i++)
921
0
    {
922
0
        std::pair<K, T> item;
923
0
        Unserialize(is, item);
924
0
        mi = m.insert(mi, item);
925
0
    }
926
0
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_NS1_4lessIS7_EENS5_INS1_4pairIKS7_S7_EEEEEvRT_RNS1_3mapIT0_T1_T2_T3_EE
Unexecuted instantiation: _Z11UnserializeI8AutoFile7uint256xNSt3__14lessIS1_EENS2_9allocatorINS2_4pairIKS1_xEEEEEvRT_RNS2_3mapIT0_T1_T2_T3_EE
927
928
929
930
/**
931
 * set
932
 */
933
template<typename Stream, typename K, typename Pred, typename A>
934
void Serialize(Stream& os, const std::set<K, Pred, A>& m)
935
0
{
936
0
    WriteCompactSize(os, m.size());
937
0
    for (typename std::set<K, Pred, A>::const_iterator it = m.begin(); it != m.end(); ++it)
938
0
        Serialize(os, (*it));
939
0
}
Unexecuted instantiation: _Z9SerializeI12VectorWriter7uint256NSt3__14lessIS1_EENS2_9allocatorIS1_EEEvRT_RKNS2_3setIT0_T1_T2_EE
Unexecuted instantiation: _Z9SerializeI8AutoFile7uint256NSt3__14lessIS1_EENS2_9allocatorIS1_EEEvRT_RKNS2_3setIT0_T1_T2_EE
940
941
template<typename Stream, typename K, typename Pred, typename A>
942
void Unserialize(Stream& is, std::set<K, Pred, A>& m)
943
0
{
944
0
    m.clear();
945
0
    unsigned int nSize = ReadCompactSize(is);
946
0
    typename std::set<K, Pred, A>::iterator it = m.begin();
947
0
    for (unsigned int i = 0; i < nSize; i++)
948
0
    {
949
0
        K key;
950
0
        Unserialize(is, key);
951
0
        it = m.insert(it, key);
952
0
    }
953
0
}
Unexecuted instantiation: _Z11UnserializeI10DataStream7uint256NSt3__14lessIS1_EENS2_9allocatorIS1_EEEvRT_RNS2_3setIT0_T1_T2_EE
Unexecuted instantiation: _Z11UnserializeI8AutoFile7uint256NSt3__14lessIS1_EENS2_9allocatorIS1_EEEvRT_RNS2_3setIT0_T1_T2_EE
954
955
956
957
/**
958
 * unique_ptr
959
 */
960
template<typename Stream, typename T> void
961
Serialize(Stream& os, const std::unique_ptr<const T>& p)
962
{
963
    Serialize(os, *p);
964
}
965
966
template<typename Stream, typename T>
967
void Unserialize(Stream& is, std::unique_ptr<const T>& p)
968
{
969
    p.reset(new T(deserialize, is));
970
}
971
972
973
974
/**
975
 * shared_ptr
976
 */
977
template<typename Stream, typename T> void
978
Serialize(Stream& os, const std::shared_ptr<const T>& p)
979
735k
{
980
735k
    Serialize(os, *p);
981
735k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE12CTransactionEvRT_RKNSt3__110shared_ptrIKT0_EE
Line
Count
Source
979
53.6k
{
980
53.6k
    Serialize(os, *p);
981
53.6k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE12CTransactionEvRT_RKNSt3__110shared_ptrIKT0_EE
Line
Count
Source
979
679k
{
980
679k
    Serialize(os, *p);
981
679k
}
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE12CTransactionEvRT_RKNSt3__110shared_ptrIKT0_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E12CTransactionEvRT_RKNSt3__110shared_ptrIKT0_EE
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE12CTransactionEvRT_RKNSt3__110shared_ptrIKT0_EE
Line
Count
Source
979
2.46k
{
980
2.46k
    Serialize(os, *p);
981
2.46k
}
982
983
template<typename Stream, typename T>
984
void Unserialize(Stream& is, std::shared_ptr<const T>& p)
985
158k
{
986
158k
    p = std::make_shared<const T>(deserialize, is);
987
158k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE12CTransactionEvRT_RNSt3__110shared_ptrIKT0_EE
Line
Count
Source
985
114k
{
986
114k
    p = std::make_shared<const T>(deserialize, is);
987
114k
}
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE12CTransactionEvRT_RNSt3__110shared_ptrIKT0_EE
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE12CTransactionEvRT_RNSt3__110shared_ptrIKT0_EE
Line
Count
Source
985
43.7k
{
986
43.7k
    p = std::make_shared<const T>(deserialize, is);
987
43.7k
}
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE12CTransactionEvRT_RNSt3__110shared_ptrIKT0_EE
988
989
/**
990
 * Support for (un)serializing many things at once
991
 */
992
993
template <typename Stream, typename... Args>
994
void SerializeMany(Stream& s, const Args&... args)
995
18.7M
{
996
18.7M
    (::Serialize(s, args), ...);
997
18.7M
}
_Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_
Line
Count
Source
995
177k
{
996
177k
    (::Serialize(s, args), ...);
997
177k
}
_Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ9prevectorILj28EhjiEEEvRT_DpRKT0_
Line
Count
Source
995
447k
{
996
447k
    (::Serialize(s, args), ...);
997
447k
}
_Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Line
Count
Source
995
177k
{
996
177k
    (::Serialize(s, args), ...);
997
177k
}
_Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJx7CScriptEEvRT_DpRKT0_
Line
Count
Source
995
270k
{
996
270k
    (::Serialize(s, args), ...);
997
270k
}
_Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS6_10shared_ptrIK12CTransactionEENS6_9allocatorISB_EEEEEEvRT_DpRKT0_
Line
Count
Source
995
48.1k
{
996
48.1k
    (::Serialize(s, args), ...);
997
48.1k
}
_Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJi7uint256S5_jjjEEvRT_DpRKT0_
Line
Count
Source
995
48.1k
{
996
48.1k
    (::Serialize(s, args), ...);
997
48.1k
}
_Z13SerializeManyI12VectorWriterJ25CBlockHeaderAndShortTxIDsEEvRT_DpRKT0_
Line
Count
Source
995
134k
{
996
134k
    (::Serialize(s, args), ...);
997
134k
}
_Z13SerializeManyI12VectorWriterJ12CBlockHeadery7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS7_9allocatorIyEEEEENS8_I20PrefilledTransactionNS9_ISF_EEEEEEvRT_DpRKT0_
Line
Count
Source
995
134k
{
996
134k
    (::Serialize(s, args), ...);
997
134k
}
_Z13SerializeManyI12VectorWriterJi7uint256S1_jjjEEvRT_DpRKT0_
Line
Count
Source
995
134k
{
996
134k
    (::Serialize(s, args), ...);
997
134k
}
_Z13SerializeManyI12VectorWriterJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS1_I16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEEEvRT_DpRKT0_
Line
Count
Source
995
137k
{
996
137k
    (::Serialize(s, args), ...);
997
137k
}
_Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_
Line
Count
Source
995
852k
{
996
852k
    (::Serialize(s, args), ...);
997
852k
}
_Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Line
Count
Source
995
852k
{
996
852k
    (::Serialize(s, args), ...);
997
852k
}
_Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ9prevectorILj28EhjiEEEvRT_DpRKT0_
Line
Count
Source
995
2.09M
{
996
2.09M
    (::Serialize(s, args), ...);
997
2.09M
}
_Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJx7CScriptEEvRT_DpRKT0_
Line
Count
Source
995
1.24M
{
996
1.24M
    (::Serialize(s, args), ...);
997
1.24M
}
_Z13SerializeManyI12VectorWriterJ17BlockTransactionsEEvRT_DpRKT0_
Line
Count
Source
995
320k
{
996
320k
    (::Serialize(s, args), ...);
997
320k
}
_Z13SerializeManyI12VectorWriterJ7uint25613ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEEEvRT_DpRKT0_
Line
Count
Source
995
320k
{
996
320k
    (::Serialize(s, args), ...);
997
320k
}
_Z13SerializeManyI12VectorWriterJ13ParamsWrapperI20TransactionSerParamsNSt3__16vectorI6CBlockNS3_9allocatorIS5_EEEEEEEvRT_DpRKT0_
Line
Count
Source
995
258k
{
996
258k
    (::Serialize(s, args), ...);
997
258k
}
_Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS6_10shared_ptrIK12CTransactionEENS6_9allocatorISB_EEEEEEvRT_DpRKT0_
Line
Count
Source
995
258k
{
996
258k
    (::Serialize(s, args), ...);
997
258k
}
_Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJi7uint256S5_jjjEEvRT_DpRKT0_
Line
Count
Source
995
258k
{
996
258k
    (::Serialize(s, args), ...);
997
258k
}
_Z13SerializeManyI12VectorWriterJbyEEvRT_DpRKT0_
Line
Count
Source
995
105k
{
996
105k
    (::Serialize(s, args), ...);
997
105k
}
_Z13SerializeManyI12VectorWriterJ13ParamsWrapperI20TransactionSerParamsK12CTransactionEEEvRT_DpRKT0_
Line
Count
Source
995
173k
{
996
173k
    (::Serialize(s, args), ...);
997
173k
}
_Z13SerializeManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEEEvRT_DpRKT0_
Line
Count
Source
995
611
{
996
611
    (::Serialize(s, args), ...);
997
611
}
_Z13SerializeManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERKyEEEvRT_DpRKT0_
Line
Count
Source
995
72
{
996
72
    (::Serialize(s, args), ...);
997
72
}
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ12CBlockHeadery7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS7_9allocatorIyEEEEENS8_I20PrefilledTransactionNS9_ISF_EEEEEEvRT_DpRKT0_
_Z13SerializeManyI10DataStreamJi7uint256S1_jjjEEvRT_DpRKT0_
Line
Count
Source
995
196k
{
996
196k
    (::Serialize(s, args), ...);
997
196k
}
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS1_I16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ9prevectorILj28EhjiEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJx7CScriptEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJxEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ12CBlockHeader18CPartialMerkleTreeEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJjNSt3__16vectorI7uint256NS1_9allocatorIS3_EEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJNSt3__16vectorIhNS1_9allocatorIhEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ9prevectorILj28EhjiEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ9COutPoint7CScriptjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERKiES1_IS2_ILS3_0EERKjEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJA4_hNSt3__16vectorIjNS2_9allocatorIjEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ17CompactSizeWriterEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ17CompactSizeWriterEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ13ParamsWrapperI20TransactionSerParamsK19CMutableTransactionEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ13ParamsWrapperI20TransactionSerParamsK19CMutableTransactionEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJhA78_hEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJhA78_hEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJjEEvRT_DpRKT0_
_Z13SerializeManyI10DataStreamJjEEvRT_DpRKT0_
Line
Count
Source
995
558
{
996
558
    (::Serialize(s, args), ...);
997
558
}
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ13ParamsWrapperI20TransactionSerParamsKNSt3__110shared_ptrIK12CTransactionEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ13ParamsWrapperI20TransactionSerParamsKNSt3__110shared_ptrIK12CTransactionEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ6CTxOutEEvRT_DpRKT0_
_Z13SerializeManyI12SizeComputerJx7CScriptEEvRT_DpRKT0_
Line
Count
Source
995
35.4k
{
996
35.4k
    (::Serialize(s, args), ...);
997
35.4k
}
_Z13SerializeManyI12SizeComputerJ9prevectorILj28EhjiEEEvRT_DpRKT0_
Line
Count
Source
995
35.4k
{
996
35.4k
    (::Serialize(s, args), ...);
997
35.4k
}
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ6CTxOutEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJx7CScriptEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ17CompactSizeWriterNSt3__14spanIKhLm18446744073709551615EEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ17CompactSizeWriterNSt3__14spanIKhLm18446744073709551615EEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJiEEvRT_DpRKT0_
_Z13SerializeManyI10DataStreamJiEEvRT_DpRKT0_
Line
Count
Source
995
186
{
996
186
    (::Serialize(s, args), ...);
997
186
}
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJhEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJhEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJh11XOnlyPubKey7uint256EEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ7uint256EEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJh11XOnlyPubKey7uint256EEvRT_DpRKT0_
_Z13SerializeManyI10DataStreamJ7uint256EEvRT_DpRKT0_
Line
Count
Source
995
372
{
996
372
    (::Serialize(s, args), ...);
997
372
}
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJhNSt3__14spanIKhLm18446744073709551615EEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJhNSt3__14spanIKhLm18446744073709551615EEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJh11XOnlyPubKeyEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJh11XOnlyPubKeyEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ17CompactSizeWriterNSt3__14spanIKhLm18446744073709551615EEES5_EEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ17CompactSizeWriterNSt3__14spanIKhLm18446744073709551615EEES5_EEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ17CompactSizeWriterNSt3__14spanIKhLm18446744073709551615EEES5_7uint256EEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ17CompactSizeWriterNSt3__14spanIKhLm18446744073709551615EEES5_7uint256EEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJNSt3__16vectorINS2_IhNS1_9allocatorIhEEEENS3_IS5_EEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJNSt3__16vectorINS2_IhNS1_9allocatorIhEEEENS3_IS5_EEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS6_10shared_ptrIK12CTransactionEENS6_9allocatorISB_EEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJi7uint256S5_jjjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJNSt3__16vectorI7uint256NS1_9allocatorIS3_EEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS5_9allocatorIS7_EEEEEEEvRT_DpRKT0_
_Z13SerializeManyI10DataStreamJ7WrapperI17AmountCompressionRKxES1_I17ScriptCompressionRK7CScriptEEEvRT_DpRKT0_
Line
Count
Source
995
30
{
996
30
    (::Serialize(s, args), ...);
997
30
}
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJNSt3__16vectorI7CTxUndoNS1_9allocatorIS3_EEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEJS3_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJNSt3__15arrayIhLm4EEEA12_cjA4_hEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNSA_8durationIxNS9_5ratioILl1ELl1EEEEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERyEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJS7_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJj7uint256EEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJNSt3__16vectorIhNS1_9allocatorIhEEEEjjhEEvRT_DpRKT0_
_Z13SerializeManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERiEEEvRT_DpRKT0_
Line
Count
Source
995
186
{
996
186
    (::Serialize(s, args), ...);
997
186
}
_Z13SerializeManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERKiEEEvRT_DpRKT0_
Line
Count
Source
995
227
{
996
227
    (::Serialize(s, args), ...);
997
227
}
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7uint25613ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7uint2567WrapperI15VectorFormatterI19DifferenceFormatterERKNSt3__16vectorItNS6_9allocatorItEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ13ParamsWrapperI20TransactionSerParams25CBlockHeaderAndShortTxIDsEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ12CBlockHeadery7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNSB_9allocatorIyEEEEENSC_I20PrefilledTransactionNSD_ISJ_EEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperIS3_S5_I16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EJ9COutPoint7CScriptjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EJ9prevectorILj28EhjiEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EJx7CScriptEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ13ParamsWrapperI20TransactionSerParams6CBlockEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJNSt3__14spanISt4byteLm18446744073709551615EEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI8AutoFileJ7WrapperI17AmountCompressionRKxES1_I17ScriptCompressionRK7CScriptEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE7uint256EEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJixEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE6CKeyIDEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ13KeyOriginInfoEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJbEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJNSt3__16vectorIhNS1_9allocatorIhEEEES5_jjS5_EEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEyiiiEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJij6CKeyIDEEvRT_DpRKT0_
_Z13SerializeManyI12VectorWriterJi7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsExx13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceExSB_yNSt3__112basic_stringIcNSC_11char_traitsIcEENSC_9allocatorIcEEEEibEEvRT_DpRKT0_
Line
Count
Source
995
21.8k
{
996
21.8k
    (::Serialize(s, args), ...);
997
21.8k
}
_Z13SerializeManyI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEJS3_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEvRT_DpRKT0_
Line
Count
Source
995
87.2k
{
996
87.2k
    (::Serialize(s, args), ...);
997
87.2k
}
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNSC_8durationIxNSB_5ratioILl1ELl1EEEEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERyEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJS9_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJS5_8CNetAddr7WrapperI15ChronoFormatterIxLb0EERKNSt3__16chrono10time_pointI9NodeClockNSD_8durationIxNSC_5ratioILl1ELl1EEEEEEEEiEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJS3_8CNetAddr7WrapperI15ChronoFormatterIxLb0EERKNSt3__16chrono10time_pointI9NodeClockNSB_8durationIxNSA_5ratioILl1ELl1EEEEEEEEiEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ12CBlockHeadery7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS7_9allocatorIyEEEEENS8_I20PrefilledTransactionNS9_ISF_EEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJi7uint256S1_jjjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS1_I16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7uint256S1_11FlatFilePosEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJyEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7Num3072EEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ11FlatFilePos7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEEEvRT_DpRKT0_
_Z13SerializeManyI10HashWriterJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Line
Count
Source
995
11.4k
{
996
11.4k
    (::Serialize(s, args), ...);
997
11.4k
}
_Z13SerializeManyI10HashWriterJx7CScriptEEvRT_DpRKT0_
Line
Count
Source
995
11.4k
{
996
11.4k
    (::Serialize(s, args), ...);
997
11.4k
}
_Z13SerializeManyI10HashWriterJ9prevectorILj28EhjiEEEvRT_DpRKT0_
Line
Count
Source
995
11.4k
{
996
11.4k
    (::Serialize(s, args), ...);
997
11.4k
}
_Z13SerializeManyI12VectorWriterJ14CMessageHeaderEEvRT_DpRKT0_
Line
Count
Source
995
1.11M
{
996
1.11M
    (::Serialize(s, args), ...);
997
1.11M
}
_Z13SerializeManyI12VectorWriterJNSt3__15arrayIhLm4EEEA12_cjA4_hEEvRT_DpRKT0_
Line
Count
Source
995
1.11M
{
996
1.11M
    (::Serialize(s, args), ...);
997
1.11M
}
_Z13SerializeManyI12VectorWriterJNSt3__16vectorI4CInvNS1_9allocatorIS3_EEEEEEvRT_DpRKT0_
Line
Count
Source
995
4.65k
{
996
4.65k
    (::Serialize(s, args), ...);
997
4.65k
}
_Z13SerializeManyI12VectorWriterJj7uint256EEvRT_DpRKT0_
Line
Count
Source
995
5.66k
{
996
5.66k
    (::Serialize(s, args), ...);
997
5.66k
}
_Z13SerializeManyI12VectorWriterJiyxy13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEyS5_yNSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEibEEvRT_DpRKT0_
Line
Count
Source
995
21.7k
{
996
21.7k
    (::Serialize(s, args), ...);
997
21.7k
}
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJjyEEvRT_DpRKT0_
_Z13SerializeManyI12VectorWriterJNSt3__15arrayISt4byteLm168EEEEEvRT_DpRKT0_
Line
Count
Source
995
2.21k
{
996
2.21k
    (::Serialize(s, args), ...);
997
2.21k
}
_Z13SerializeManyI12VectorWriterJ13CBlockLocator7uint256EEvRT_DpRKT0_
Line
Count
Source
995
5.42k
{
996
5.42k
    (::Serialize(s, args), ...);
997
5.42k
}
_Z13SerializeManyI12VectorWriterJiEEvRT_DpRKT0_
Line
Count
Source
995
5.42k
{
996
5.42k
    (::Serialize(s, args), ...);
997
5.42k
}
_Z13SerializeManyI12VectorWriterJNSt3__16vectorI7uint256NS1_9allocatorIS3_EEEEEEvRT_DpRKT0_
Line
Count
Source
995
5.42k
{
996
5.42k
    (::Serialize(s, args), ...);
997
5.42k
}
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJNSt3__14spanIhLm18446744073709551615EEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ13ParamsWrapperI20TransactionSerParamsK6CBlockEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ12CMerkleBlockEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ12CBlockHeader18CPartialMerkleTreeEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJjNSt3__16vectorI7uint256NS1_9allocatorIS3_EEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJNSt3__16vectorIhNS1_9allocatorIhEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJNSt3__16vectorI12CBlockHeaderNS1_9allocatorIS3_EEEEEEvRT_DpRKT0_
_Z13SerializeManyI12VectorWriterJ24BlockTransactionsRequestEEvRT_DpRKT0_
Line
Count
Source
995
2.53k
{
996
2.53k
    (::Serialize(s, args), ...);
997
2.53k
}
_Z13SerializeManyI12VectorWriterJ7uint2567WrapperI15VectorFormatterI19DifferenceFormatterERKNSt3__16vectorItNS6_9allocatorItEEEEEEEvRT_DpRKT0_
Line
Count
Source
995
2.53k
{
996
2.53k
    (::Serialize(s, args), ...);
997
2.53k
}
_Z13SerializeManyI12VectorWriterJyEEvRT_DpRKT0_
Line
Count
Source
995
7.98k
{
996
7.98k
    (::Serialize(s, args), ...);
997
7.98k
}
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ11BlockFilterEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJh7uint256S1_NSt3__16vectorIS1_NS2_9allocatorIS1_EEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJh7uint256NSt3__16vectorIS1_NS2_9allocatorIS1_EEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJ13ParamsWrapperIN8CAddress9SerParamsENSt3__16vectorIS2_NS4_9allocatorIS2_EEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNSA_8durationIxNS9_5ratioILl1ELl1EEEEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERyEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJS7_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEvRT_DpRKT0_
_Z13SerializeManyI12VectorWriterJxEEvRT_DpRKT0_
Line
Count
Source
995
5.49k
{
996
5.49k
    (::Serialize(s, args), ...);
997
5.49k
}
_Z13SerializeManyI12SizeComputerJNSt3__16vectorI7CTxUndoNS1_9allocatorIS3_EEEEEEvRT_DpRKT0_
Line
Count
Source
995
782
{
996
782
    (::Serialize(s, args), ...);
997
782
}
_Z13SerializeManyI12SizeComputerJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS5_9allocatorIS7_EEEEEEEvRT_DpRKT0_
Line
Count
Source
995
749
{
996
749
    (::Serialize(s, args), ...);
997
749
}
_Z13SerializeManyI12SizeComputerJ7WrapperI17AmountCompressionRKxES1_I17ScriptCompressionRK7CScriptEEEvRT_DpRKT0_
Line
Count
Source
995
749
{
996
749
    (::Serialize(s, args), ...);
997
749
}
_Z13SerializeManyI10HashWriterJNSt3__16vectorI7CTxUndoNS1_9allocatorIS3_EEEEEEvRT_DpRKT0_
Line
Count
Source
995
782
{
996
782
    (::Serialize(s, args), ...);
997
782
}
_Z13SerializeManyI10HashWriterJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS5_9allocatorIS7_EEEEEEEvRT_DpRKT0_
Line
Count
Source
995
749
{
996
749
    (::Serialize(s, args), ...);
997
749
}
_Z13SerializeManyI10HashWriterJ7WrapperI17AmountCompressionRKxES1_I17ScriptCompressionRK7CScriptEEEvRT_DpRKT0_
Line
Count
Source
995
749
{
996
749
    (::Serialize(s, args), ...);
997
749
}
_Z13SerializeManyI14BufferedWriterI8AutoFileEJNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEEEvRT_DpRKT0_
Line
Count
Source
995
782
{
996
782
    (::Serialize(s, args), ...);
997
782
}
_Z13SerializeManyI14BufferedWriterI8AutoFileEJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS7_9allocatorIS9_EEEEEEEvRT_DpRKT0_
Line
Count
Source
995
749
{
996
749
    (::Serialize(s, args), ...);
997
749
}
_Z13SerializeManyI14BufferedWriterI8AutoFileEJ7WrapperI17AmountCompressionRKxES3_I17ScriptCompressionRK7CScriptEEEvRT_DpRKT0_
Line
Count
Source
995
749
{
996
749
    (::Serialize(s, args), ...);
997
749
}
_Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEvRT_DpRKT0_
Line
Count
Source
995
1.11k
{
996
1.11k
    (::Serialize(s, args), ...);
997
1.11k
}
_Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJi7uint256S7_jjjEEvRT_DpRKT0_
Line
Count
Source
995
1.11k
{
996
1.11k
    (::Serialize(s, args), ...);
997
1.11k
}
_Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_
Line
Count
Source
995
2.46k
{
996
2.46k
    (::Serialize(s, args), ...);
997
2.46k
}
_Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Line
Count
Source
995
2.46k
{
996
2.46k
    (::Serialize(s, args), ...);
997
2.46k
}
_Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ9prevectorILj28EhjiEEEvRT_DpRKT0_
Line
Count
Source
995
6.03k
{
996
6.03k
    (::Serialize(s, args), ...);
997
6.03k
}
_Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJx7CScriptEEvRT_DpRKT0_
Line
Count
Source
995
3.57k
{
996
3.57k
    (::Serialize(s, args), ...);
997
3.57k
}
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ9prevectorILj28EhjiEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJx7CScriptEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJjj6CTxOutEEvRT_DpRKT0_
_Z13SerializeManyI10DataStreamJh22transaction_identifierILb0EE7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEvRT_DpRKT0_
Line
Count
Source
995
177k
{
996
177k
    (::Serialize(s, args), ...);
997
177k
}
_Z13SerializeManyI10HashWriterJi7uint256S1_jjjEEvRT_DpRKT0_
Line
Count
Source
995
2.37M
{
996
2.37M
    (::Serialize(s, args), ...);
997
2.37M
}
_Z13SerializeManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_
Line
Count
Source
995
878k
{
996
878k
    (::Serialize(s, args), ...);
997
878k
}
_Z13SerializeManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Line
Count
Source
995
878k
{
996
878k
    (::Serialize(s, args), ...);
997
878k
}
_Z13SerializeManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ9prevectorILj28EhjiEEEvRT_DpRKT0_
Line
Count
Source
995
2.05M
{
996
2.05M
    (::Serialize(s, args), ...);
997
2.05M
}
_Z13SerializeManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJx7CScriptEEvRT_DpRKT0_
Line
Count
Source
995
1.17M
{
996
1.17M
    (::Serialize(s, args), ...);
997
1.17M
}
998
999
template <typename Stream, typename... Args>
1000
inline void UnserializeMany(Stream& s, Args&&... args)
1001
21.8M
{
1002
21.8M
    (::Unserialize(s, args), ...);
1003
21.8M
}
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR12CBlockHeaderRNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJRiR7uint256S7_RjS8_S8_EEvRT_DpOT0_
_Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR9COutPointR7CScriptRjEEvRT_DpOT0_
Line
Count
Source
1001
114k
{
1002
114k
    (::Unserialize(s, args), ...);
1003
114k
}
_Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR22transaction_identifierILb0EERjEEvRT_DpOT0_
Line
Count
Source
1001
114k
{
1002
114k
    (::Unserialize(s, args), ...);
1003
114k
}
_Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR9prevectorILj28EhjiEEEvRT_DpOT0_
Line
Count
Source
1001
290k
{
1002
290k
    (::Unserialize(s, args), ...);
1003
290k
}
_Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJRxR7CScriptEEvRT_DpOT0_
Line
Count
Source
1001
175k
{
1002
175k
    (::Unserialize(s, args), ...);
1003
175k
}
_Z15UnserializeManyI10DataStreamJRiR7uint256S3_RjS4_S4_EEvRT_DpOT0_
Line
Count
Source
1001
181k
{
1002
181k
    (::Unserialize(s, args), ...);
1003
181k
}
_Z15UnserializeManyI10DataStreamJRiEEvRT_DpOT0_
Line
Count
Source
1001
1.46M
{
1002
1.46M
    (::Unserialize(s, args), ...);
1003
1.46M
}
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRNSt3__16vectorI7uint256NS1_9allocatorIS3_EEEEEEvRT_DpOT0_
_Z15UnserializeManyI10DataStreamJR7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEvRT_DpOT0_
Line
Count
Source
1001
5.88M
{
1002
5.88M
    (::Unserialize(s, args), ...);
1003
5.88M
}
_Z15UnserializeManyI10DataStreamJR7WrapperI15VarIntFormatterIL10VarIntMode0EERyEEEvRT_DpOT0_
Line
Count
Source
1001
14.5k
{
1002
14.5k
    (::Unserialize(s, args), ...);
1003
14.5k
}
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR22transaction_identifierILb0EERjEEvRT_DpOT0_
_Z15UnserializeManyI10DataStreamJR7WrapperI15VarIntFormatterIL10VarIntMode1EERiEEEvRT_DpOT0_
Line
Count
Source
1001
4.39M
{
1002
4.39M
    (::Unserialize(s, args), ...);
1003
4.39M
}
_Z15UnserializeManyI10DataStreamJR7uint256EEvRT_DpOT0_
Line
Count
Source
1001
2.92M
{
1002
2.92M
    (::Unserialize(s, args), ...);
1003
2.92M
}
_Z15UnserializeManyI10DataStreamJRjEEvRT_DpOT0_
Line
Count
Source
1001
4.39M
{
1002
4.39M
    (::Unserialize(s, args), ...);
1003
4.39M
}
_Z15UnserializeManyI10DataStreamJR7WrapperI17AmountCompressionRxERS1_I17ScriptCompressionR7CScriptEEEvRT_DpOT0_
Line
Count
Source
1001
173k
{
1002
173k
    (::Unserialize(s, args), ...);
1003
173k
}
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJRS3_R8CNetAddrR7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNSD_8durationIxNSC_5ratioILl1ELl1EEEEEEEERiEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJRjEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJR7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNSA_8durationIxNS9_5ratioILl1ELl1EEEEEEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJR7WrapperI20CompactSizeFormatterILb0EERyEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJR7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJR13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRS7_R7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_
_Z15UnserializeManyI10DataStreamJR12CBlockHeaderRyR7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERNSt3__16vectorIyNS9_9allocatorIyEEEEERNSA_I20PrefilledTransactionNSB_ISH_EEEEEEvRT_DpOT0_
Line
Count
Source
1001
61.0k
{
1002
61.0k
    (::Unserialize(s, args), ...);
1003
61.0k
}
_Z15UnserializeManyI10DataStreamJR7WrapperI20CompactSizeFormatterILb1EERtER13ParamsWrapperI20TransactionSerParamsS1_I16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEEEEvRT_DpOT0_
Line
Count
Source
1001
62.2k
{
1002
62.2k
    (::Unserialize(s, args), ...);
1003
62.2k
}
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRxEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR12CBlockHeaderR18CPartialMerkleTreeEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRjRNSt3__16vectorI7uint256NS2_9allocatorIS4_EEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRNSt3__16vectorIhNS1_9allocatorIhEEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR9prevectorILj28EhjiEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR9COutPointR7CScriptRjEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7WrapperI15VarIntFormatterIL10VarIntMode1EERiERS1_IS2_ILS3_0EERjEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRA4_hRNSt3__16vectorIjNS3_9allocatorIjEEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR13ParamsWrapperI20TransactionSerParams19CMutableTransactionEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR13ParamsWrapperI20TransactionSerParamsNSt3__110shared_ptrIK12CTransactionEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR6CTxOutEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRxR7CScriptEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRNSt3__16vectorINS2_IhNS1_9allocatorIhEEEENS3_IS5_EEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR7uint256EEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR11XOnlyPubKeyEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7WrapperI15VectorFormatterI17TxInUndoFormatterERNSt3__16vectorI4CoinNS5_9allocatorIS7_EEEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRNSt3__16vectorI7CTxUndoNS1_9allocatorIS3_EEEEEEvRT_DpOT0_
_Z15UnserializeManyI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEJRS3_R7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_
Line
Count
Source
1001
20.9k
{
1002
20.9k
    (::Unserialize(s, args), ...);
1003
20.9k
}
_Z15UnserializeManyI10DataStreamJRNSt3__15arrayIhLm4EEERA12_cRjRA4_hEEvRT_DpOT0_
Line
Count
Source
1001
1.01M
{
1002
1.01M
    (::Unserialize(s, args), ...);
1003
1.01M
}
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRjR7uint256EEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRNSt3__16vectorIhNS1_9allocatorIhEEEERjS7_RhEEvRT_DpOT0_
_Z15UnserializeManyI10DataStreamJR7uint256R13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEEEEvRT_DpOT0_
Line
Count
Source
1001
111k
{
1002
111k
    (::Unserialize(s, args), ...);
1003
111k
}
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7uint256R7WrapperI15VectorFormatterI19DifferenceFormatterERNSt3__16vectorItNS7_9allocatorItEEEEEEEvRT_DpOT0_
_Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR9COutPointR7CScriptRjEEvRT_DpOT0_
Line
Count
Source
1001
43.7k
{
1002
43.7k
    (::Unserialize(s, args), ...);
1003
43.7k
}
_Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR22transaction_identifierILb0EERjEEvRT_DpOT0_
Line
Count
Source
1001
43.7k
{
1002
43.7k
    (::Unserialize(s, args), ...);
1003
43.7k
}
_Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR9prevectorILj28EhjiEEEvRT_DpOT0_
Line
Count
Source
1001
131k
{
1002
131k
    (::Unserialize(s, args), ...);
1003
131k
}
_Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJRxR7CScriptEEvRT_DpOT0_
Line
Count
Source
1001
87.4k
{
1002
87.4k
    (::Unserialize(s, args), ...);
1003
87.4k
}
Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRxR7CScriptEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR9prevectorILj28EhjiEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRiRxEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEER6CKeyIDEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR13KeyOriginInfoEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRbEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERyRiSA_SA_EEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRNSt3__16vectorIhNS1_9allocatorIhEEEES6_RjS7_S6_EEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRiRjR6CKeyIDEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJRjEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJR7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNSC_8durationIxNSB_5ratioILl1ELl1EEEEEEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJR7WrapperI20CompactSizeFormatterILb0EERyEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJR7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJR13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRS9_R7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJRS3_R8CNetAddrR7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNSD_8durationIxNSC_5ratioILl1ELl1EEEEEEEERiEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJRjEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJR7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNSA_8durationIxNS9_5ratioILl1ELl1EEEEEEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJR7WrapperI20CompactSizeFormatterILb0EERyEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJR7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJR13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRS7_R7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJRS5_R8CNetAddrR7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNSF_8durationIxNSE_5ratioILl1ELl1EEEEEEEERiEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJRS5_R8CNetAddrR7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNSF_8durationIxNSE_5ratioILl1ELl1EEEEEEEERiEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJRjEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJR7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNSC_8durationIxNSB_5ratioILl1ELl1EEEEEEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJR7WrapperI20CompactSizeFormatterILb0EERyEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJR7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJR13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRS9_R7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7uint256S2_R11FlatFilePosEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRyEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7Num3072EEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR11FlatFilePosR7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI8AutoFileJRiR7uint256S3_RjS4_S4_EEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJR9COutPointR7CScriptRjEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJR22transaction_identifierILb0EERjEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJR9prevectorILj28EhjiEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJRxR7CScriptEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamI10DataStreamN8CAddress9SerParamsEEJR8CNetAddrR7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_
_Z15UnserializeManyI12HashVerifierI14BufferedReaderI8AutoFileEEJRNSt3__16vectorI7CTxUndoNS5_9allocatorIS7_EEEEEEvRT_DpOT0_
Line
Count
Source
1001
87.4k
{
1002
87.4k
    (::Unserialize(s, args), ...);
1003
87.4k
}
Unexecuted instantiation: _Z15UnserializeManyI12HashVerifierI14BufferedReaderI8AutoFileEEJR7WrapperI15VectorFormatterI17TxInUndoFormatterERNSt3__16vectorI4CoinNS9_9allocatorISB_EEEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12HashVerifierI14BufferedReaderI8AutoFileEEJR7WrapperI17AmountCompressionRxERS5_I17ScriptCompressionR7CScriptEEEvRT_DpOT0_
_Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR12CBlockHeaderRNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEvRT_DpOT0_
Line
Count
Source
1001
43.7k
{
1002
43.7k
    (::Unserialize(s, args), ...);
1003
43.7k
}
_Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJRiR7uint256S7_RjS8_S8_EEvRT_DpOT0_
Line
Count
Source
1001
43.7k
{
1002
43.7k
    (::Unserialize(s, args), ...);
1003
43.7k
}
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRhR22transaction_identifierILb0EER7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12BufferedFileJRiR7uint256S3_RjS4_S4_EEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR12CBlockHeaderRNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJRiR7uint256S7_RjS8_S8_EEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR9COutPointR7CScriptRjEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR22transaction_identifierILb0EERjEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR9prevectorILj28EhjiEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJRxR7CScriptEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI8AutoFileJR7WrapperI17AmountCompressionRxERS1_I17ScriptCompressionR7CScriptEEEvRT_DpOT0_
1004
1005
/**
1006
 * Support for all macros providing or using the ser_action parameter of the SerializationOps method.
1007
 */
1008
struct ActionSerialize {
1009
0
    static constexpr bool ForRead() { return false; }
1010
1011
    template<typename Stream, typename... Args>
1012
    static void SerReadWriteMany(Stream& s, const Args&... args)
1013
16.5M
    {
1014
16.5M
        ::SerializeMany(s, args...);
1015
16.5M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Line
Count
Source
1013
177k
    {
1014
177k
        ::SerializeMany(s, args...);
1015
177k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ9prevectorILj28EhjiEEEEvRT_DpRKT0_
Line
Count
Source
1013
447k
    {
1014
447k
        ::SerializeMany(s, args...);
1015
447k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Line
Count
Source
1013
177k
    {
1014
177k
        ::SerializeMany(s, args...);
1015
177k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJx7CScriptEEEvRT_DpRKT0_
Line
Count
Source
1013
270k
    {
1014
270k
        ::SerializeMany(s, args...);
1015
270k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1013
48.1k
    {
1014
48.1k
        ::SerializeMany(s, args...);
1015
48.1k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJi7uint256S6_jjjEEEvRT_DpRKT0_
Line
Count
Source
1013
48.1k
    {
1014
48.1k
        ::SerializeMany(s, args...);
1015
48.1k
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ12CBlockHeadery7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS8_9allocatorIyEEEEENS9_I20PrefilledTransactionNSA_ISG_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1013
134k
    {
1014
134k
        ::SerializeMany(s, args...);
1015
134k
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJi7uint256S2_jjjEEEvRT_DpRKT0_
Line
Count
Source
1013
134k
    {
1014
134k
        ::SerializeMany(s, args...);
1015
134k
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS2_I16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEEEEvRT_DpRKT0_
Line
Count
Source
1013
137k
    {
1014
137k
        ::SerializeMany(s, args...);
1015
137k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Line
Count
Source
1013
852k
    {
1014
852k
        ::SerializeMany(s, args...);
1015
852k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Line
Count
Source
1013
852k
    {
1014
852k
        ::SerializeMany(s, args...);
1015
852k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ9prevectorILj28EhjiEEEEvRT_DpRKT0_
Line
Count
Source
1013
2.09M
    {
1014
2.09M
        ::SerializeMany(s, args...);
1015
2.09M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJx7CScriptEEEvRT_DpRKT0_
Line
Count
Source
1013
1.24M
    {
1014
1.24M
        ::SerializeMany(s, args...);
1015
1.24M
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ7uint25613ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEEEEEvRT_DpRKT0_
Line
Count
Source
1013
320k
    {
1014
320k
        ::SerializeMany(s, args...);
1015
320k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1013
258k
    {
1014
258k
        ::SerializeMany(s, args...);
1015
258k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJi7uint256S6_jjjEEEvRT_DpRKT0_
Line
Count
Source
1013
258k
    {
1014
258k
        ::SerializeMany(s, args...);
1015
258k
    }
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEEEEvRT_DpRKT0_
Line
Count
Source
1013
611
    {
1014
611
        ::SerializeMany(s, args...);
1015
611
    }
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERKyEEEEvRT_DpRKT0_
Line
Count
Source
1013
72
    {
1014
72
        ::SerializeMany(s, args...);
1015
72
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ12CBlockHeadery7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS8_9allocatorIyEEEEENS9_I20PrefilledTransactionNSA_ISG_EEEEEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJi7uint256S2_jjjEEEvRT_DpRKT0_
Line
Count
Source
1013
196k
    {
1014
196k
        ::SerializeMany(s, args...);
1015
196k
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS2_I16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ9prevectorILj28EhjiEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJx7CScriptEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJxEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ12CBlockHeader18CPartialMerkleTreeEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJjNSt3__16vectorI7uint256NS2_9allocatorIS4_EEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJNSt3__16vectorIhNS2_9allocatorIhEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ9prevectorILj28EhjiEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERKiES2_IS3_ILS4_0EERKjEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJA4_hNSt3__16vectorIjNS3_9allocatorIjEEEEEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJx7CScriptEEEvRT_DpRKT0_
Line
Count
Source
1013
35.4k
    {
1014
35.4k
        ::SerializeMany(s, args...);
1015
35.4k
    }
_ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ9prevectorILj28EhjiEEEEvRT_DpRKT0_
Line
Count
Source
1013
35.4k
    {
1014
35.4k
        ::SerializeMany(s, args...);
1015
35.4k
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJx7CScriptEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ7uint256EEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7uint256EEEvRT_DpRKT0_
Line
Count
Source
1013
372
    {
1014
372
        ::SerializeMany(s, args...);
1015
372
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJi7uint256S6_jjjEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJiEEEvRT_DpRKT0_
Line
Count
Source
1013
186
    {
1014
186
        ::SerializeMany(s, args...);
1015
186
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJNSt3__16vectorI7uint256NS2_9allocatorIS4_EEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS6_9allocatorIS8_EEEEEEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI17AmountCompressionRKxES2_I17ScriptCompressionRK7CScriptEEEEvRT_DpRKT0_
Line
Count
Source
1013
30
    {
1014
30
        ::SerializeMany(s, args...);
1015
30
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJNSt3__16vectorI7CTxUndoNS2_9allocatorIS4_EEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEJS4_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJNSt3__15arrayIhLm4EEEA12_cjA4_hEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNSB_8durationIxNSA_5ratioILl1ELl1EEEEEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERyEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIRS1_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJS8_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJj7uint256EEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJNSt3__16vectorIhNS2_9allocatorIhEEEEjjhEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERiEEEEvRT_DpRKT0_
Line
Count
Source
1013
186
    {
1014
186
        ::SerializeMany(s, args...);
1015
186
    }
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERKiEEEEvRT_DpRKT0_
Line
Count
Source
1013
227
    {
1014
227
        ::SerializeMany(s, args...);
1015
227
    }
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJjEEEvRT_DpRKT0_
Line
Count
Source
1013
558
    {
1014
558
        ::SerializeMany(s, args...);
1015
558
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7uint25613ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7uint2567WrapperI15VectorFormatterI19DifferenceFormatterERKNSt3__16vectorItNS7_9allocatorItEEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ12CBlockHeadery7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNSC_9allocatorIyEEEEENSD_I20PrefilledTransactionNSE_ISK_EEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperIS4_S6_I16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EJ9prevectorILj28EhjiEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIRS1_IR12VectorWriter20TransactionSerParamsES4_EJx7CScriptEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI8AutoFileJ7WrapperI17AmountCompressionRKxES2_I17ScriptCompressionRK7CScriptEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJixEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE6CKeyIDEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ13KeyOriginInfoEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJbEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJNSt3__16vectorIhNS2_9allocatorIhEEEES6_jjS6_EEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEyiiiEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJij6CKeyIDEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEJS4_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEEvRT_DpRKT0_
Line
Count
Source
1013
87.2k
    {
1014
87.2k
        ::SerializeMany(s, args...);
1015
87.2k
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNSD_8durationIxNSC_5ratioILl1ELl1EEEEEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERyEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIRS1_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJSA_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEJS6_8CNetAddr7WrapperI15ChronoFormatterIxLb0EERKNSt3__16chrono10time_pointI9NodeClockNSE_8durationIxNSD_5ratioILl1ELl1EEEEEEEEiEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJS4_8CNetAddr7WrapperI15ChronoFormatterIxLb0EERKNSt3__16chrono10time_pointI9NodeClockNSC_8durationIxNSB_5ratioILl1ELl1EEEEEEEEiEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ12CBlockHeadery7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS8_9allocatorIyEEEEENS9_I20PrefilledTransactionNSA_ISG_EEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJi7uint256S2_jjjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS2_I16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJhEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7uint256S2_11FlatFilePosEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJyEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7Num3072EEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ11FlatFilePos7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI10HashWriterJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Line
Count
Source
1013
11.4k
    {
1014
11.4k
        ::SerializeMany(s, args...);
1015
11.4k
    }
_ZN15ActionSerialize16SerReadWriteManyI10HashWriterJx7CScriptEEEvRT_DpRKT0_
Line
Count
Source
1013
11.4k
    {
1014
11.4k
        ::SerializeMany(s, args...);
1015
11.4k
    }
_ZN15ActionSerialize16SerReadWriteManyI10HashWriterJ9prevectorILj28EhjiEEEEvRT_DpRKT0_
Line
Count
Source
1013
11.4k
    {
1014
11.4k
        ::SerializeMany(s, args...);
1015
11.4k
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJNSt3__15arrayIhLm4EEEA12_cjA4_hEEEvRT_DpRKT0_
Line
Count
Source
1013
1.11M
    {
1014
1.11M
        ::SerializeMany(s, args...);
1015
1.11M
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJj7uint256EEEvRT_DpRKT0_
Line
Count
Source
1013
5.66k
    {
1014
5.66k
        ::SerializeMany(s, args...);
1015
5.66k
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJiEEEvRT_DpRKT0_
Line
Count
Source
1013
5.42k
    {
1014
5.42k
        ::SerializeMany(s, args...);
1015
5.42k
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJNSt3__16vectorI7uint256NS2_9allocatorIS4_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1013
5.42k
    {
1014
5.42k
        ::SerializeMany(s, args...);
1015
5.42k
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ12CBlockHeader18CPartialMerkleTreeEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJjNSt3__16vectorI7uint256NS2_9allocatorIS4_EEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJNSt3__16vectorIhNS2_9allocatorIhEEEEEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ7uint2567WrapperI15VectorFormatterI19DifferenceFormatterERKNSt3__16vectorItNS7_9allocatorItEEEEEEEEvRT_DpRKT0_
Line
Count
Source
1013
2.53k
    {
1014
2.53k
        ::SerializeMany(s, args...);
1015
2.53k
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERKNSt3__16chrono10time_pointI9NodeClockNSB_8durationIxNSA_5ratioILl1ELl1EEEEEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERyEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EERK12ServiceFlagsEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIRS1_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJS8_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJNSt3__16vectorI7CTxUndoNS2_9allocatorIS4_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1013
782
    {
1014
782
        ::SerializeMany(s, args...);
1015
782
    }
_ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS6_9allocatorIS8_EEEEEEEEvRT_DpRKT0_
Line
Count
Source
1013
749
    {
1014
749
        ::SerializeMany(s, args...);
1015
749
    }
_ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ7WrapperI17AmountCompressionRKxES2_I17ScriptCompressionRK7CScriptEEEEvRT_DpRKT0_
Line
Count
Source
1013
749
    {
1014
749
        ::SerializeMany(s, args...);
1015
749
    }
_ZN15ActionSerialize16SerReadWriteManyI10HashWriterJNSt3__16vectorI7CTxUndoNS2_9allocatorIS4_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1013
782
    {
1014
782
        ::SerializeMany(s, args...);
1015
782
    }
_ZN15ActionSerialize16SerReadWriteManyI10HashWriterJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS6_9allocatorIS8_EEEEEEEEvRT_DpRKT0_
Line
Count
Source
1013
749
    {
1014
749
        ::SerializeMany(s, args...);
1015
749
    }
_ZN15ActionSerialize16SerReadWriteManyI10HashWriterJ7WrapperI17AmountCompressionRKxES2_I17ScriptCompressionRK7CScriptEEEEvRT_DpRKT0_
Line
Count
Source
1013
749
    {
1014
749
        ::SerializeMany(s, args...);
1015
749
    }
_ZN15ActionSerialize16SerReadWriteManyI14BufferedWriterI8AutoFileEJNSt3__16vectorI7CTxUndoNS4_9allocatorIS6_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1013
782
    {
1014
782
        ::SerializeMany(s, args...);
1015
782
    }
_ZN15ActionSerialize16SerReadWriteManyI14BufferedWriterI8AutoFileEJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS8_9allocatorISA_EEEEEEEEvRT_DpRKT0_
Line
Count
Source
1013
749
    {
1014
749
        ::SerializeMany(s, args...);
1015
749
    }
_ZN15ActionSerialize16SerReadWriteManyI14BufferedWriterI8AutoFileEJ7WrapperI17AmountCompressionRKxES4_I17ScriptCompressionRK7CScriptEEEEvRT_DpRKT0_
Line
Count
Source
1013
749
    {
1014
749
        ::SerializeMany(s, args...);
1015
749
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1013
1.11k
    {
1014
1.11k
        ::SerializeMany(s, args...);
1015
1.11k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJi7uint256S8_jjjEEEvRT_DpRKT0_
Line
Count
Source
1013
1.11k
    {
1014
1.11k
        ::SerializeMany(s, args...);
1015
1.11k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Line
Count
Source
1013
2.46k
    {
1014
2.46k
        ::SerializeMany(s, args...);
1015
2.46k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Line
Count
Source
1013
2.46k
    {
1014
2.46k
        ::SerializeMany(s, args...);
1015
2.46k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ9prevectorILj28EhjiEEEEvRT_DpRKT0_
Line
Count
Source
1013
6.03k
    {
1014
6.03k
        ::SerializeMany(s, args...);
1015
6.03k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJx7CScriptEEEvRT_DpRKT0_
Line
Count
Source
1013
3.57k
    {
1014
3.57k
        ::SerializeMany(s, args...);
1015
3.57k
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ9prevectorILj28EhjiEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJx7CScriptEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJjj6CTxOutEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJh22transaction_identifierILb0EE7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEEvRT_DpRKT0_
Line
Count
Source
1013
177k
    {
1014
177k
        ::SerializeMany(s, args...);
1015
177k
    }
_ZN15ActionSerialize16SerReadWriteManyI10HashWriterJi7uint256S2_jjjEEEvRT_DpRKT0_
Line
Count
Source
1013
2.37M
    {
1014
2.37M
        ::SerializeMany(s, args...);
1015
2.37M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Line
Count
Source
1013
878k
    {
1014
878k
        ::SerializeMany(s, args...);
1015
878k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Line
Count
Source
1013
878k
    {
1014
878k
        ::SerializeMany(s, args...);
1015
878k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ9prevectorILj28EhjiEEEEvRT_DpRKT0_
Line
Count
Source
1013
2.05M
    {
1014
2.05M
        ::SerializeMany(s, args...);
1015
2.05M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJx7CScriptEEEvRT_DpRKT0_
Line
Count
Source
1013
1.17M
    {
1014
1.17M
        ::SerializeMany(s, args...);
1015
1.17M
    }
1016
1017
    template<typename Stream, typename Type, typename Fn>
1018
    static void SerRead(Stream& s, Type&&, Fn&&)
1019
0
    {
1020
0
    }
Unexecuted instantiation: _ZN15ActionSerialize7SerReadI10DataStreamRK18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RS2_E_EEvS9_OS6_OSA_
Unexecuted instantiation: _ZN15ActionSerialize7SerReadI10DataStreamRK18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RS2_E0_EEvS9_OS6_OSA_
Unexecuted instantiation: _ZN15ActionSerialize7SerReadI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEERKS4_ZNS4_16SerializationOpsIS6_S7_S_EEvRT0_RT_T1_EUlRS6_RS4_E_EEvSD_OSA_OSE_
Unexecuted instantiation: _ZN15ActionSerialize7SerReadI10DataStreamRKN6wallet16WalletDescriptorEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_RS3_E_EEvSA_OS7_OSB_
Unexecuted instantiation: _ZN15ActionSerialize7SerReadI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEERKS6_ZNS6_16SerializationOpsIS8_S9_S_EEvRT0_RT_T1_EUlRS8_RS6_E_EEvSF_OSC_OSG_
Unexecuted instantiation: _ZN15ActionSerialize7SerReadI12VectorWriterRK18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RS2_E_EEvS9_OS6_OSA_
Unexecuted instantiation: _ZN15ActionSerialize7SerReadI12VectorWriterRK18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RS2_E0_EEvS9_OS6_OSA_
Unexecuted instantiation: _ZN15ActionSerialize7SerReadI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEERKS4_ZNS4_16SerializationOpsIS6_S7_S_EEvRT0_RT_T1_EUlRS6_RS4_E_EEvSD_OSA_OSE_
1021
1022
    template<typename Stream, typename Type, typename Fn>
1023
    static void SerWrite(Stream& s, Type&& obj, Fn&& fn)
1024
0
    {
1025
0
        fn(s, std::forward<Type>(obj));
1026
0
    }
Unexecuted instantiation: _ZN15ActionSerialize8SerWriteI10DataStreamRK18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E_EEvS9_OS6_OSA_
Unexecuted instantiation: _ZN15ActionSerialize8SerWriteI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEERKS4_ZNS4_16SerializationOpsIS6_S7_S_EEvRT0_RT_T1_EUlRS6_S8_E_EEvSD_OSA_OSE_
Unexecuted instantiation: _ZN15ActionSerialize8SerWriteI10DataStreamRKN6wallet16WalletDescriptorEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_S5_E_EEvSA_OS7_OSB_
Unexecuted instantiation: _ZN15ActionSerialize8SerWriteI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEERKS6_ZNS6_16SerializationOpsIS8_S9_S_EEvRT0_RT_T1_EUlRS8_SA_E_EEvSF_OSC_OSG_
Unexecuted instantiation: _ZN15ActionSerialize8SerWriteI12VectorWriterRK18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E_EEvS9_OS6_OSA_
Unexecuted instantiation: _ZN15ActionSerialize8SerWriteI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEERKS4_ZNS4_16SerializationOpsIS6_S7_S_EEvRT0_RT_T1_EUlRS6_S8_E_EEvSD_OSA_OSE_
1027
};
1028
struct ActionUnserialize {
1029
0
    static constexpr bool ForRead() { return true; }
1030
1031
    template<typename Stream, typename... Args>
1032
    static void SerReadWriteMany(Stream& s, Args&&... args)
1033
21.8M
    {
1034
21.8M
        ::UnserializeMany(s, args...);
1035
21.8M
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR12CBlockHeaderRNSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJRiR7uint256S8_RjS9_S9_EEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR9COutPointR7CScriptRjEEEvRT_DpOT0_
Line
Count
Source
1033
114k
    {
1034
114k
        ::UnserializeMany(s, args...);
1035
114k
    }
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR22transaction_identifierILb0EERjEEEvRT_DpOT0_
Line
Count
Source
1033
114k
    {
1034
114k
        ::UnserializeMany(s, args...);
1035
114k
    }
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR9prevectorILj28EhjiEEEEvRT_DpOT0_
Line
Count
Source
1033
290k
    {
1034
290k
        ::UnserializeMany(s, args...);
1035
290k
    }
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJRxR7CScriptEEEvRT_DpOT0_
Line
Count
Source
1033
175k
    {
1034
175k
        ::UnserializeMany(s, args...);
1035
175k
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRiR7uint256S4_RjS5_S5_EEEvRT_DpOT0_
Line
Count
Source
1033
181k
    {
1034
181k
        ::UnserializeMany(s, args...);
1035
181k
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRiEEEvRT_DpOT0_
Line
Count
Source
1033
1.46M
    {
1034
1.46M
        ::UnserializeMany(s, args...);
1035
1.46M
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRNSt3__16vectorI7uint256NS2_9allocatorIS4_EEEEEEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEEvRT_DpOT0_
Line
Count
Source
1033
5.88M
    {
1034
5.88M
        ::UnserializeMany(s, args...);
1035
5.88M
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERyEEEEvRT_DpOT0_
Line
Count
Source
1033
14.5k
    {
1034
14.5k
        ::UnserializeMany(s, args...);
1035
14.5k
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR22transaction_identifierILb0EERjEEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERiEEEEvRT_DpOT0_
Line
Count
Source
1033
4.39M
    {
1034
4.39M
        ::UnserializeMany(s, args...);
1035
4.39M
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR7uint256EEEvRT_DpOT0_
Line
Count
Source
1033
2.92M
    {
1034
2.92M
        ::UnserializeMany(s, args...);
1035
2.92M
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRjEEEvRT_DpOT0_
Line
Count
Source
1033
4.39M
    {
1034
4.39M
        ::UnserializeMany(s, args...);
1035
4.39M
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI17AmountCompressionRxES2_I17ScriptCompressionR7CScriptEEEEvRT_DpOT0_
Line
Count
Source
1033
173k
    {
1034
173k
        ::UnserializeMany(s, args...);
1035
173k
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJRS4_R8CNetAddr7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNSE_8durationIxNSD_5ratioILl1ELl1EEEEEEEERiEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJRjEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNSB_8durationIxNSA_5ratioILl1ELl1EEEEEEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERyEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIRS1_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRS8_7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR12CBlockHeaderRy7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERNSt3__16vectorIyNSA_9allocatorIyEEEEERNSB_I20PrefilledTransactionNSC_ISH_EEEEEEEvRT_DpOT0_
Line
Count
Source
1033
61.0k
    {
1034
61.0k
        ::UnserializeMany(s, args...);
1035
61.0k
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI20CompactSizeFormatterILb1EERtE13ParamsWrapperI20TransactionSerParamsS2_I16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEEEEEvRT_DpOT0_
Line
Count
Source
1033
62.2k
    {
1034
62.2k
        ::UnserializeMany(s, args...);
1035
62.2k
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRxEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR12CBlockHeaderR18CPartialMerkleTreeEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRjRNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRNSt3__16vectorIhNS2_9allocatorIhEEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR9prevectorILj28EhjiEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR9COutPointR7CScriptRjEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERiES2_IS3_ILS4_0EERjEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRA4_hRNSt3__16vectorIjNS4_9allocatorIjEEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRxR7CScriptEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR7uint256EEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI15VectorFormatterI17TxInUndoFormatterERNSt3__16vectorI4CoinNS6_9allocatorIS8_EEEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRNSt3__16vectorI7CTxUndoNS2_9allocatorIS4_EEEEEEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEJRS4_7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_
Line
Count
Source
1033
20.9k
    {
1034
20.9k
        ::UnserializeMany(s, args...);
1035
20.9k
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRNSt3__15arrayIhLm4EEERA12_cRjRA4_hEEEvRT_DpOT0_
Line
Count
Source
1033
1.01M
    {
1034
1.01M
        ::UnserializeMany(s, args...);
1035
1.01M
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRjR7uint256EEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRNSt3__16vectorIhNS2_9allocatorIhEEEERjS8_RhEEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR7uint25613ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINSA_10shared_ptrIK12CTransactionEENSA_9allocatorISF_EEEEEEEEEvRT_DpOT0_
Line
Count
Source
1033
111k
    {
1034
111k
        ::UnserializeMany(s, args...);
1035
111k
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR7uint2567WrapperI15VectorFormatterI19DifferenceFormatterERNSt3__16vectorItNS8_9allocatorItEEEEEEEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR9COutPointR7CScriptRjEEEvRT_DpOT0_
Line
Count
Source
1033
43.7k
    {
1034
43.7k
        ::UnserializeMany(s, args...);
1035
43.7k
    }
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR22transaction_identifierILb0EERjEEEvRT_DpOT0_
Line
Count
Source
1033
43.7k
    {
1034
43.7k
        ::UnserializeMany(s, args...);
1035
43.7k
    }
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR9prevectorILj28EhjiEEEEvRT_DpOT0_
Line
Count
Source
1033
131k
    {
1034
131k
        ::UnserializeMany(s, args...);
1035
131k
    }
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJRxR7CScriptEEEvRT_DpOT0_
Line
Count
Source
1033
87.4k
    {
1034
87.4k
        ::UnserializeMany(s, args...);
1035
87.4k
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRxR7CScriptEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR9prevectorILj28EhjiEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRiRxEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEER6CKeyIDEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR13KeyOriginInfoEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRbEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERyRiSB_SB_EEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRNSt3__16vectorIhNS2_9allocatorIhEEEES7_RjS8_S7_EEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRiRjR6CKeyIDEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJRjEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNSD_8durationIxNSC_5ratioILl1ELl1EEEEEEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERyEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIRS1_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRSA_7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJRS4_R8CNetAddr7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNSE_8durationIxNSD_5ratioILl1ELl1EEEEEEEERiEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJRjEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNSB_8durationIxNSA_5ratioILl1ELl1EEEEEEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERyEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIRS1_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRS8_7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEJRS6_R8CNetAddr7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNSG_8durationIxNSF_5ratioILl1ELl1EEEEEEEERiEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJRS6_R8CNetAddr7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNSG_8durationIxNSF_5ratioILl1ELl1EEEEEEEERiEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJRjEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJ7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNSD_8durationIxNSC_5ratioILl1ELl1EEEEEEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJ7WrapperI20CompactSizeFormatterILb0EERyEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJ7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEJ13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIRS1_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEJRSA_7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR7uint256S3_R11FlatFilePosEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRyEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR7Num3072EEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR11FlatFilePos7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI8AutoFileJRiR7uint256S4_RjS5_S5_EEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJR9COutPointR7CScriptRjEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJR22transaction_identifierILb0EERjEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJR9prevectorILj28EhjiEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJRxR7CScriptEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamI10DataStreamN8CAddress9SerParamsEEJR8CNetAddr7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI12HashVerifierI14BufferedReaderI8AutoFileEEJRNSt3__16vectorI7CTxUndoNS6_9allocatorIS8_EEEEEEEvRT_DpOT0_
Line
Count
Source
1033
87.4k
    {
1034
87.4k
        ::UnserializeMany(s, args...);
1035
87.4k
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12HashVerifierI14BufferedReaderI8AutoFileEEJ7WrapperI15VectorFormatterI17TxInUndoFormatterERNSt3__16vectorI4CoinNSA_9allocatorISC_EEEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12HashVerifierI14BufferedReaderI8AutoFileEEJ7WrapperI17AmountCompressionRxES6_I17ScriptCompressionR7CScriptEEEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR12CBlockHeaderRNSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEEvRT_DpOT0_
Line
Count
Source
1033
43.7k
    {
1034
43.7k
        ::UnserializeMany(s, args...);
1035
43.7k
    }
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJRiR7uint256S8_RjS9_S9_EEEvRT_DpOT0_
Line
Count
Source
1033
43.7k
    {
1034
43.7k
        ::UnserializeMany(s, args...);
1035
43.7k
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRhR22transaction_identifierILb0EE7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12BufferedFileJRiR7uint256S4_RjS5_S5_EEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR12CBlockHeaderRNSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJRiR7uint256S8_RjS9_S9_EEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR9COutPointR7CScriptRjEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR22transaction_identifierILb0EERjEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR9prevectorILj28EhjiEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJRxR7CScriptEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI8AutoFileJ7WrapperI17AmountCompressionRxES2_I17ScriptCompressionR7CScriptEEEEvRT_DpOT0_
1036
1037
    template<typename Stream, typename Type, typename Fn>
1038
    static void SerRead(Stream& s, Type&& obj, Fn&& fn)
1039
0
    {
1040
0
        fn(s, std::forward<Type>(obj));
1041
0
    }
Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEERS4_ZNS4_16SerializationOpsIS6_S4_S_EEvRT0_RT_T1_EUlRS6_S7_E_EEvSC_OS9_OSD_
Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI10DataStreamR18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S2_S_EEvRT0_RT_T1_EUlRS1_S3_E_EEvS8_OS5_OS9_
Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI10DataStreamR18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S2_S_EEvRT0_RT_T1_EUlRS1_S3_E0_EEvS8_OS5_OS9_
Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI10DataStreamRN6wallet16WalletDescriptorEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E_EEvS9_OS6_OSA_
Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEERS6_ZNS6_16SerializationOpsIS8_S6_S_EEvRT0_RT_T1_EUlRS8_S9_E_EEvSE_OSB_OSF_
Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEERS4_ZNS4_16SerializationOpsIS6_S4_S_EEvRT0_RT_T1_EUlRS6_S7_E_EEvSC_OS9_OSD_
Unexecuted instantiation: _ZN17ActionUnserialize7SerReadI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEERS6_ZNS6_16SerializationOpsIS8_S6_S_EEvRT0_RT_T1_EUlRS8_S9_E_EEvSE_OSB_OSF_
1042
1043
    template<typename Stream, typename Type, typename Fn>
1044
    static void SerWrite(Stream& s, Type&&, Fn&&)
1045
0
    {
1046
0
    }
Unexecuted instantiation: _ZN17ActionUnserialize8SerWriteI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEERS4_ZNS4_16SerializationOpsIS6_S4_S_EEvRT0_RT_T1_EUlRS6_RKS4_E_EEvSC_OS9_OSD_
Unexecuted instantiation: _ZN17ActionUnserialize8SerWriteI10DataStreamR18CPartialMerkleTreeZNS2_16SerializationOpsIS1_S2_S_EEvRT0_RT_T1_EUlRS1_RKS2_E_EEvS8_OS5_OS9_
Unexecuted instantiation: _ZN17ActionUnserialize8SerWriteI10DataStreamRN6wallet16WalletDescriptorEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RKS3_E_EEvS9_OS6_OSA_
Unexecuted instantiation: _ZN17ActionUnserialize8SerWriteI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEERS6_ZNS6_16SerializationOpsIS8_S6_S_EEvRT0_RT_T1_EUlRS8_RKS6_E_EEvSE_OSB_OSF_
Unexecuted instantiation: _ZN17ActionUnserialize8SerWriteI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEERS4_ZNS4_16SerializationOpsIS6_S4_S_EEvRT0_RT_T1_EUlRS6_RKS4_E_EEvSC_OS9_OSD_
Unexecuted instantiation: _ZN17ActionUnserialize8SerWriteI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEERS6_ZNS6_16SerializationOpsIS8_S6_S_EEvRT0_RT_T1_EUlRS8_RKS6_E_EEvSE_OSB_OSF_
1047
};
1048
1049
/* ::GetSerializeSize implementations
1050
 *
1051
 * Computing the serialized size of objects is done through a special stream
1052
 * object of type SizeComputer, which only records the number of bytes written
1053
 * to it.
1054
 *
1055
 * If your Serialize or SerializationOp method has non-trivial overhead for
1056
 * serialization, it may be worthwhile to implement a specialized version for
1057
 * SizeComputer, which uses the s.seek() method to record bytes that would
1058
 * be written instead.
1059
 */
1060
class SizeComputer
1061
{
1062
protected:
1063
    size_t nSize{0};
1064
1065
public:
1066
208k
    SizeComputer() = default;
1067
1068
    void write(std::span<const std::byte> src)
1069
2.88M
    {
1070
2.88M
        this->nSize += src.size();
1071
2.88M
    }
1072
1073
    /** Pretend _nSize bytes are written, without specifying them. */
1074
    void seek(size_t _nSize)
1075
37.0k
    {
1076
37.0k
        this->nSize += _nSize;
1077
37.0k
    }
1078
1079
    template<typename T>
1080
    SizeComputer& operator<<(const T& obj)
1081
210k
    {
1082
210k
        ::Serialize(*this, obj);
1083
210k
        return (*this);
1084
210k
    }
_ZN12SizeComputerlsI13ParamsWrapperI20TransactionSerParamsK12CTransactionEEERS_RKT_
Line
Count
Source
1081
123k
    {
1082
123k
        ::Serialize(*this, obj);
1083
123k
        return (*this);
1084
123k
    }
_ZN12SizeComputerlsI13ParamsWrapperI20TransactionSerParamsK6CBlockEEERS_RKT_
Line
Count
Source
1081
48.1k
    {
1082
48.1k
        ::Serialize(*this, obj);
1083
48.1k
        return (*this);
1084
48.1k
    }
Unexecuted instantiation: _ZN12SizeComputerlsI13ParamsWrapperI20TransactionSerParamsK5CTxInEEERS_RKT_
Unexecuted instantiation: _ZN12SizeComputerlsINSt3__16vectorINS2_IhNS1_9allocatorIhEEEENS3_IS5_EEEEEERS_RKT_
Unexecuted instantiation: _ZN12SizeComputerlsINSt3__14spanIKhLm32EEEEERS_RKT_
_ZN12SizeComputerlsI6CTxOutEERS_RKT_
Line
Count
Source
1081
35.4k
    {
1082
35.4k
        ::Serialize(*this, obj);
1083
35.4k
        return (*this);
1084
35.4k
    }
Unexecuted instantiation: _ZN12SizeComputerlsI25CBlockHeaderAndShortTxIDsEERS_RKT_
Unexecuted instantiation: _ZN12SizeComputerlsI7uint256EERS_RKT_
Unexecuted instantiation: _ZN12SizeComputerlsINSt3__16vectorIhNS1_9allocatorIhEEEEEERS_RKT_
_ZN12SizeComputerlsI10CBlockUndoEERS_RKT_
Line
Count
Source
1081
782
    {
1082
782
        ::Serialize(*this, obj);
1083
782
        return (*this);
1084
782
    }
_ZN12SizeComputerlsI7WrapperI15VarIntFormatterIL10VarIntMode0EERyEEERS_RKT_
Line
Count
Source
1081
749
    {
1082
749
        ::Serialize(*this, obj);
1083
749
        return (*this);
1084
749
    }
Unexecuted instantiation: _ZN12SizeComputerlsINSt3__14spanIhLm18446744073709551615EEEEERS_RKT_
_ZN12SizeComputerlsI7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEERS_RKT_
Line
Count
Source
1081
749
    {
1082
749
        ::Serialize(*this, obj);
1083
749
        return (*this);
1084
749
    }
_ZN12SizeComputerlsINSt3__14spanIKhLm18446744073709551615EEEEERS_RKT_
Line
Count
Source
1081
749
    {
1082
749
        ::Serialize(*this, obj);
1083
749
        return (*this);
1084
749
    }
Unexecuted instantiation: _ZN12SizeComputerlsI13ParamsWrapperI20TransactionSerParamsKNSt3__110shared_ptrIK12CTransactionEEEEERS_RKT_
1085
1086
208k
    size_t size() const {
1087
208k
        return nSize;
1088
208k
    }
1089
};
1090
1091
template<typename I>
1092
inline void WriteVarInt(SizeComputer &s, I n)
1093
{
1094
    s.seek(GetSizeOfVarInt<I>(n));
1095
}
1096
1097
inline void WriteCompactSize(SizeComputer &s, uint64_t nSize)
1098
37.0k
{
1099
37.0k
    s.seek(GetSizeOfCompactSize(nSize));
1100
37.0k
}
1101
1102
template <typename T>
1103
size_t GetSerializeSize(const T& t)
1104
208k
{
1105
208k
    return (SizeComputer() << t).size();
1106
208k
}
_Z16GetSerializeSizeI13ParamsWrapperI20TransactionSerParamsK12CTransactionEEmRKT_
Line
Count
Source
1104
123k
{
1105
123k
    return (SizeComputer() << t).size();
1106
123k
}
_Z16GetSerializeSizeI13ParamsWrapperI20TransactionSerParamsK6CBlockEEmRKT_
Line
Count
Source
1104
48.1k
{
1105
48.1k
    return (SizeComputer() << t).size();
1106
48.1k
}
Unexecuted instantiation: _Z16GetSerializeSizeI13ParamsWrapperI20TransactionSerParamsK5CTxInEEmRKT_
Unexecuted instantiation: _Z16GetSerializeSizeINSt3__16vectorINS1_IhNS0_9allocatorIhEEEENS2_IS4_EEEEEmRKT_
_Z16GetSerializeSizeI6CTxOutEmRKT_
Line
Count
Source
1104
35.4k
{
1105
35.4k
    return (SizeComputer() << t).size();
1106
35.4k
}
Unexecuted instantiation: _Z16GetSerializeSizeI25CBlockHeaderAndShortTxIDsEmRKT_
Unexecuted instantiation: _Z16GetSerializeSizeI7uint256EmRKT_
Unexecuted instantiation: _Z16GetSerializeSizeINSt3__16vectorIhNS0_9allocatorIhEEEEEmRKT_
_Z16GetSerializeSizeI10CBlockUndoEmRKT_
Line
Count
Source
1104
782
{
1105
782
    return (SizeComputer() << t).size();
1106
782
}
Unexecuted instantiation: _Z16GetSerializeSizeI13ParamsWrapperI20TransactionSerParamsKNSt3__110shared_ptrIK12CTransactionEEEEmRKT_
1107
1108
//! Check if type contains a stream by seeing if has a GetStream() method.
1109
template<typename T>
1110
concept ContainsStream = requires(T t) { t.GetStream(); };
1111
1112
/** Wrapper that overrides the GetParams() function of a stream. */
1113
template <typename SubStream, typename Params>
1114
class ParamsStream
1115
{
1116
    const Params& m_params;
1117
    // If ParamsStream constructor is passed an lvalue argument, Substream will
1118
    // be a reference type, and m_substream will reference that argument.
1119
    // Otherwise m_substream will be a substream instance and move from the
1120
    // argument. Letting ParamsStream contain a substream instance instead of
1121
    // just a reference is useful to make the ParamsStream object self contained
1122
    // and let it do cleanup when destroyed, for example by closing files if
1123
    // SubStream is a file stream.
1124
    SubStream m_substream;
1125
1126
public:
1127
2.35M
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, 
m_substream0
{std::forward<SubStream>(substream)} {}
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsEC2ES1_RKS2_
Line
Count
Source
1127
172k
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsEC2ES1_RKS2_
Line
Count
Source
1127
225k
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsEC2ES1_RKS2_
Line
Count
Source
1127
889k
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}
_ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEC2ES1_RKS3_
Line
Count
Source
1127
38.1k
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEC2ES5_RKS7_
_ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEC2ES1_RKS3_
Line
Count
Source
1127
20.9k
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_EC2ES4_RKS2_
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsEC2ES1_RKS2_
Line
Count
Source
1127
43.7k
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}
_ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEC2ES1_RKS3_
Line
Count
Source
1127
87.2k
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}
Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEC2ES3_RKS5_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEC2ES7_RKS9_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEC2ES3_RKS5_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEC2ES7_RKS9_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEC2ES1_RKS3_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEC2ES5_RKS7_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEC2ES3_RKS5_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEC2ES7_RKS9_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsEC2ES1_RKS2_
Unexecuted instantiation: _ZN12ParamsStreamI10DataStreamN8CAddress9SerParamsEEC2EOS0_RKS2_
Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEC2ES1_RKS3_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEC2ES5_RKS7_
_ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEC2ES3_RKS4_
Line
Count
Source
1127
1.11k
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}
Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsEC2ES1_RKS2_
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsEC2ES1_RKS2_
Line
Count
Source
1127
878k
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}
1128
1129
    template <typename NestedSubstream, typename Params1, typename Params2, typename... NestedParams>
1130
    ParamsStream(NestedSubstream&& s, const Params1& params1 LIFETIMEBOUND, const Params2& params2 LIFETIMEBOUND, const NestedParams&... params LIFETIMEBOUND)
1131
        : ParamsStream{::ParamsStream{std::forward<NestedSubstream>(s), params2, params...}, params1} {}
1132
1133
14.0M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsIjEERS3_RKT_
Line
Count
Source
1133
354k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsINSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEERS3_RKT_
Line
Count
Source
1133
207k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsINSt3__14spanIKhLm32EEEEERS3_RKT_
Line
Count
Source
1133
273k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsIhEERS3_RKT_
Line
Count
Source
1133
30.5k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsINSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEERS3_RKT_
Line
Count
Source
1133
177k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsINSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEERS3_RKT_
Line
Count
Source
1133
30.5k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsIjEERS3_RKT_
Line
Count
Source
1133
1.70M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsINSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEERS3_RKT_
Line
Count
Source
1133
1.70M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsINSt3__14spanIKhLm32EEEEERS3_RKT_
Line
Count
Source
1133
1.36M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsIhEERS3_RKT_
Line
Count
Source
1133
852k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsINSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEERS3_RKT_
Line
Count
Source
1133
852k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsINSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEERS3_RKT_
Line
Count
Source
1133
852k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsElsIjEERS3_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsElsINSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEERS3_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsElsINSt3__14spanIKhLm32EEEEERS3_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsElsIhEERS3_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsElsINSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEERS3_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsElsINSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEERS3_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEElsIhEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEElsI7WrapperI20CompactSizeFormatterILb1EERKmEEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEElsI9prevectorILj16EhjiEEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEElsIA16_hEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsIjEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsIhEERS8_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsI7WrapperI20CompactSizeFormatterILb1EERKmEEERS8_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsI9prevectorILj16EhjiEEERS8_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsIA16_hEERS8_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_ElsIjEERS5_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_ElsINSt3__16vectorI5CTxInNS7_9allocatorIS9_EEEEEERS5_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_ElsINSt3__14spanIKhLm32EEEEERS5_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_ElsIhEERS5_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_ElsINSt3__16vectorI6CTxOutNS7_9allocatorIS9_EEEEEERS5_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_ElsINSt3__16vectorINS8_IhNS7_9allocatorIhEEEENS9_ISB_EEEEEERS5_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEElsIhEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEElsI7WrapperI20CompactSizeFormatterILb1EERKmEEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEElsI9prevectorILj16EhjiEEERS4_RKT_
_ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEElsIA16_hEERS4_RKT_
Line
Count
Source
1133
87.2k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsIjEERS6_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsIhEERSA_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsI7WrapperI20CompactSizeFormatterILb1EERKmEEERSA_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsI9prevectorILj16EhjiEEERSA_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsIA16_hEERSA_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsIhEERS6_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsI7uint256EERS6_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsINSt3__14spanIKhLm32EEEEERS6_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsIiEERS6_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsI8AddrInfoEERS6_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsI7WrapperI20CompactSizeFormatterILb1EERKmEEERS6_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsI9prevectorILj16EhjiEEERS6_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsIA16_hEERS6_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEElsIxEERS6_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsIhEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsI7uint256EERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsINSt3__14spanIKhLm32EEEEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsIiEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsI8AddrInfoEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsI7WrapperI20CompactSizeFormatterILb1EERKmEEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsI9prevectorILj16EhjiEEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsIA16_hEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEElsIxEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEElsIjEERS4_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsIhEERS8_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsI7WrapperI20CompactSizeFormatterILb1EERKmEEERS8_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsI9prevectorILj16EhjiEEERS8_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEElsIA16_hEERS8_RKT_
_ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsINSt3__14spanIKhLm32EEEEERS5_RKT_
Line
Count
Source
1133
4.68k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsIjEERS5_RKT_
Line
Count
Source
1133
4.92k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsINSt3__16vectorI5CTxInNS7_9allocatorIS9_EEEEEERS5_RKT_
Line
Count
Source
1133
4.92k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsIhEERS5_RKT_
Line
Count
Source
1133
2.46k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsINSt3__16vectorI6CTxOutNS7_9allocatorIS9_EEEEEERS5_RKT_
Line
Count
Source
1133
2.46k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsINSt3__16vectorINS8_IhNS7_9allocatorIhEEEENS9_ISB_EEEEEERS5_RKT_
Line
Count
Source
1133
2.46k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsElsIjEERS3_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsElsINSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEERS3_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsElsINSt3__14spanIKhLm32EEEEERS3_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsElsIhEERS3_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsElsINSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEERS3_RKT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsElsINSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEERS3_RKT_
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsIjEERS3_RKT_
Line
Count
Source
1133
1.75M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsINSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEERS3_RKT_
Line
Count
Source
1133
1.26M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsINSt3__14spanIKhLm32EEEEERS3_RKT_
Line
Count
Source
1133
878k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsIhEERS3_RKT_
Line
Count
Source
1133
387k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsINSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEERS3_RKT_
Line
Count
Source
1133
878k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsINSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEERS3_RKT_
Line
Count
Source
1133
387k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
1134
1.24M
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRjEERS3_OT_
Line
Count
Source
1134
229k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRNSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEERS3_OT_
Line
Count
Source
1134
229k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRhEERS3_OT_
Line
Count
Source
1134
114k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRNSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEERS3_OT_
Line
Count
Source
1134
114k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRNSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEERS3_OT_
Line
Count
Source
1134
114k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsIRjEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRhEERS8_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS8_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsINSt3__14spanIhLm18446744073709551615EEEEERS8_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRA16_hEERS8_OT_
_ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsIRhEERS4_OT_
Line
Count
Source
1134
38.1k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS4_OT_
Line
Count
Source
1134
38.1k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsINSt3__14spanIhLm18446744073709551615EEEEERS4_OT_
Line
Count
Source
1134
38.1k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsIRA16_hEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsIRxEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEErsIRhEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEErsINSt3__14spanIhLm18446744073709551615EEEEERS4_OT_
_ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEErsIRA16_hEERS4_OT_
Line
Count
Source
1134
20.9k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRjEERS3_OT_
Line
Count
Source
1134
87.4k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRNSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEERS3_OT_
Line
Count
Source
1134
87.4k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRhEERS3_OT_
Line
Count
Source
1134
43.7k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRNSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEERS3_OT_
Line
Count
Source
1134
43.7k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRNSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEERS3_OT_
Line
Count
Source
1134
43.7k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsIRjEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRhEERSA_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERSA_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsINSt3__14spanIhLm18446744073709551615EEEEERSA_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRA16_hEERSA_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsIRhEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsIR7uint256EERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsIRiEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsIR8AddrInfoEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsIRjEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRhEERS8_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS8_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsINSt3__14spanIhLm18446744073709551615EEEEERS8_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRA16_hEERS8_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsINSt3__14spanIhLm18446744073709551615EEEEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsIRA16_hEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEErsIRxEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsIRhEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsIR7uint256EERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsIRiEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsIR8AddrInfoEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsINSt3__14spanIhLm18446744073709551615EEEEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsIRA16_hEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEErsIRxEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsIR7uint256EERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsIRiEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsIR8AddrInfoEERS4_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsIRhEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsIR7uint256EERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsIRiEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsIR8AddrInfoEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsIRjEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRhEERSA_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERSA_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsINSt3__14spanIhLm18446744073709551615EEEEERSA_OT_
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEErsIRA16_hEERSA_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsINSt3__14spanIhLm18446744073709551615EEEEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsIRA16_hEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEErsIRxEERS6_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsErsIRjEERS3_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsErsIRNSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEERS3_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsErsIRhEERS3_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsErsIRNSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEERS3_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsErsIRNSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEERS3_OT_
Unexecuted instantiation: _ZN12ParamsStreamI10DataStreamN8CAddress9SerParamsEErsIR8CServiceEERS3_OT_
Unexecuted instantiation: _ZN12ParamsStreamI10DataStreamN8CAddress9SerParamsEErsIRhEERS3_OT_
Unexecuted instantiation: _ZN12ParamsStreamI10DataStreamN8CAddress9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS3_OT_
Unexecuted instantiation: _ZN12ParamsStreamI10DataStreamN8CAddress9SerParamsEErsINSt3__14spanIhLm18446744073709551615EEEEERS3_OT_
Unexecuted instantiation: _ZN12ParamsStreamI10DataStreamN8CAddress9SerParamsEErsIRA16_hEERS3_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsErsIRjEERS3_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsErsIRNSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEERS3_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsErsIRhEERS3_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsErsIRNSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEERS3_OT_
Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsErsIRNSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEERS3_OT_
1135
33.5M
    void write(std::span<const std::byte> src) { GetStream().write(src); }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Line
Count
Source
1135
2.81M
    void write(std::span<const std::byte> src) { GetStream().write(src); }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Line
Count
Source
1135
17.6M
    void write(std::span<const std::byte> src) { GetStream().write(src); }
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStream20TransactionSerParamsE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_E5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
_ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Line
Count
Source
1135
174k
    void write(std::span<const std::byte> src) { GetStream().write(src); }
Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
_ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Line
Count
Source
1135
51.5k
    void write(std::span<const std::byte> src) { GetStream().write(src); }
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Line
Count
Source
1135
12.8M
    void write(std::span<const std::byte> src) { GetStream().write(src); }
1136
3.52M
    void read(std::span<std::byte> dst) { GetStream().read(dst); }
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Line
Count
Source
1136
2.19M
    void read(std::span<std::byte> dst) { GetStream().read(dst); }
_ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Line
Count
Source
1136
114k
    void read(std::span<std::byte> dst) { GetStream().read(dst); }
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE4readENSt3__14spanISt4byteLm18446744073709551615EEE
_ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Line
Count
Source
1136
41.9k
    void read(std::span<std::byte> dst) { GetStream().read(dst); }
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Line
Count
Source
1136
1.18M
    void read(std::span<std::byte> dst) { GetStream().read(dst); }
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamI10DataStreamN8CAddress9SerParamsEE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsE4readENSt3__14spanISt4byteLm18446744073709551615EEE
1137
0
    void ignore(size_t num) { GetStream().ignore(num); }
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE6ignoreEm
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE6ignoreEm
Unexecuted instantiation: _ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE6ignoreEm
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE6ignoreEm
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE6ignoreEm
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEE6ignoreEm
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEE6ignoreEm
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE6ignoreEm
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEE6ignoreEm
Unexecuted instantiation: _ZN12ParamsStreamI10DataStreamN8CAddress9SerParamsEE6ignoreEm
1138
0
    bool eof() const { return GetStream().eof(); }
1139
    size_t size() const { return GetStream().size(); }
1140
1141
    //! Get reference to stream parameters.
1142
    template <typename P>
1143
    const auto& GetParams() const
1144
2.21M
    {
1145
2.21M
        if constexpr (std::is_convertible_v<Params, P>) {
1146
2.21M
            return m_params;
1147
        } else {
1148
            return m_substream.template GetParams<P>();
1149
        }
1150
2.21M
    }
_ZNK12ParamsStreamIR12SizeComputer20TransactionSerParamsE9GetParamsIS2_EERKDav
Line
Count
Source
1144
177k
    {
1145
177k
        if constexpr (std::is_convertible_v<Params, P>) {
1146
177k
            return m_params;
1147
        } else {
1148
            return m_substream.template GetParams<P>();
1149
        }
1150
177k
    }
_ZNK12ParamsStreamIR10DataStream20TransactionSerParamsE9GetParamsIS2_EERKDav
Line
Count
Source
1144
114k
    {
1145
114k
        if constexpr (std::is_convertible_v<Params, P>) {
1146
114k
            return m_params;
1147
        } else {
1148
            return m_substream.template GetParams<P>();
1149
        }
1150
114k
    }
_ZNK12ParamsStreamIR12VectorWriter20TransactionSerParamsE9GetParamsIS2_EERKDav
Line
Count
Source
1144
852k
    {
1145
852k
        if constexpr (std::is_convertible_v<Params, P>) {
1146
852k
            return m_params;
1147
        } else {
1148
            return m_substream.template GetParams<P>();
1149
        }
1150
852k
    }
Unexecuted instantiation: _ZNK12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE9GetParamsIS3_EERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetParamsIS7_EERKDav
_ZNK12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE9GetParamsIN8CNetAddr9SerParamsEEERKDav
Line
Count
Source
1144
38.1k
    {
1145
38.1k
        if constexpr (std::is_convertible_v<Params, P>) {
1146
38.1k
            return m_params;
1147
        } else {
1148
            return m_substream.template GetParams<P>();
1149
        }
1150
38.1k
    }
_ZNK12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE9GetParamsIS3_EERKDav
Line
Count
Source
1144
20.9k
    {
1145
20.9k
        if constexpr (std::is_convertible_v<Params, P>) {
1146
20.9k
            return m_params;
1147
        } else {
1148
            return m_substream.template GetParams<P>();
1149
        }
1150
20.9k
    }
Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_E9GetParamsIS2_EERKDav
_ZNK12ParamsStreamIR10SpanReader20TransactionSerParamsE9GetParamsIS2_EERKDav
Line
Count
Source
1144
43.7k
    {
1145
43.7k
        if constexpr (std::is_convertible_v<Params, P>) {
1146
43.7k
            return m_params;
1147
        } else {
1148
            return m_substream.template GetParams<P>();
1149
        }
1150
43.7k
    }
_ZNK12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE9GetParamsIS3_EERKDav
Line
Count
Source
1144
87.2k
    {
1145
87.2k
        if constexpr (std::is_convertible_v<Params, P>) {
1146
87.2k
            return m_params;
1147
        } else {
1148
            return m_substream.template GetParams<P>();
1149
        }
1150
87.2k
    }
Unexecuted instantiation: _ZNK12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE9GetParamsIS5_EERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetParamsIS9_EERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEE9GetParamsIS5_EERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetParamsIS9_EERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE9GetParamsIN8CNetAddr9SerParamsEEERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIR8AutoFileN8CAddress9SerParamsEE9GetParamsIS3_EERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetParamsIS7_EERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIR8AutoFileN8CAddress9SerParamsEE9GetParamsIN8CNetAddr9SerParamsEEERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEE9GetParamsIN8CNetAddr9SerParamsEEERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEE9GetParamsIS5_EERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetParamsIS9_EERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEE9GetParamsIN8CNetAddr9SerParamsEEERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIR8AutoFile20TransactionSerParamsE9GetParamsIS2_EERKDav
Unexecuted instantiation: _ZNK12ParamsStreamI10DataStreamN8CAddress9SerParamsEE9GetParamsIN8CNetAddr9SerParamsEEERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE9GetParamsIS3_EERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetParamsIS7_EERKDav
_ZNK12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE9GetParamsIS4_EERKDav
Line
Count
Source
1144
2.46k
    {
1145
2.46k
        if constexpr (std::is_convertible_v<Params, P>) {
1146
2.46k
            return m_params;
1147
        } else {
1148
            return m_substream.template GetParams<P>();
1149
        }
1150
2.46k
    }
Unexecuted instantiation: _ZNK12ParamsStreamIR12BufferedFile20TransactionSerParamsE9GetParamsIS2_EERKDav
_ZNK12ParamsStreamIR10HashWriter20TransactionSerParamsE9GetParamsIS2_EERKDav
Line
Count
Source
1144
878k
    {
1145
878k
        if constexpr (std::is_convertible_v<Params, P>) {
1146
878k
            return m_params;
1147
        } else {
1148
            return m_substream.template GetParams<P>();
1149
        }
1150
878k
    }
1151
1152
    //! Get reference to underlying stream.
1153
    auto& GetStream()
1154
37.0M
    {
1155
37.0M
        if constexpr (ContainsStream<SubStream>) {
1156
0
            return m_substream.GetStream();
1157
37.0M
        } else {
1158
37.0M
            return m_substream;
1159
37.0M
        }
1160
37.0M
    }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsE9GetStreamEv
Line
Count
Source
1154
2.81M
    {
1155
        if constexpr (ContainsStream<SubStream>) {
1156
            return m_substream.GetStream();
1157
2.81M
        } else {
1158
2.81M
            return m_substream;
1159
2.81M
        }
1160
2.81M
    }
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsE9GetStreamEv
Line
Count
Source
1154
2.19M
    {
1155
        if constexpr (ContainsStream<SubStream>) {
1156
            return m_substream.GetStream();
1157
2.19M
        } else {
1158
2.19M
            return m_substream;
1159
2.19M
        }
1160
2.19M
    }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsE9GetStreamEv
Line
Count
Source
1154
17.6M
    {
1155
        if constexpr (ContainsStream<SubStream>) {
1156
            return m_substream.GetStream();
1157
17.6M
        } else {
1158
17.6M
            return m_substream;
1159
17.6M
        }
1160
17.6M
    }
_ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE9GetStreamEv
Line
Count
Source
1154
114k
    {
1155
        if constexpr (ContainsStream<SubStream>) {
1156
            return m_substream.GetStream();
1157
114k
        } else {
1158
114k
            return m_substream;
1159
114k
        }
1160
114k
    }
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetStreamEv
_ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE9GetStreamEv
Line
Count
Source
1154
41.9k
    {
1155
        if constexpr (ContainsStream<SubStream>) {
1156
            return m_substream.GetStream();
1157
41.9k
        } else {
1158
41.9k
            return m_substream;
1159
41.9k
        }
1160
41.9k
    }
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_E9GetStreamEv
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsE9GetStreamEv
Line
Count
Source
1154
1.18M
    {
1155
        if constexpr (ContainsStream<SubStream>) {
1156
            return m_substream.GetStream();
1157
1.18M
        } else {
1158
1.18M
            return m_substream;
1159
1.18M
        }
1160
1.18M
    }
_ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE9GetStreamEv
Line
Count
Source
1154
174k
    {
1155
        if constexpr (ContainsStream<SubStream>) {
1156
            return m_substream.GetStream();
1157
174k
        } else {
1158
174k
            return m_substream;
1159
174k
        }
1160
174k
    }
Unexecuted instantiation: _ZN12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE9GetStreamEv
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetStreamEv
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEE9GetStreamEv
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetStreamEv
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFileN8CAddress9SerParamsEE9GetStreamEv
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetStreamEv
Unexecuted instantiation: _ZN12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEE9GetStreamEv
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetStreamEv
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsE9GetStreamEv
Unexecuted instantiation: _ZN12ParamsStreamI10DataStreamN8CAddress9SerParamsEE9GetStreamEv
Unexecuted instantiation: _ZN12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE9GetStreamEv
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetStreamEv
_ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE9GetStreamEv
Line
Count
Source
1154
51.5k
    {
1155
        if constexpr (ContainsStream<SubStream>) {
1156
            return m_substream.GetStream();
1157
51.5k
        } else {
1158
51.5k
            return m_substream;
1159
51.5k
        }
1160
51.5k
    }
Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsE9GetStreamEv
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsE9GetStreamEv
Line
Count
Source
1154
12.8M
    {
1155
        if constexpr (ContainsStream<SubStream>) {
1156
            return m_substream.GetStream();
1157
12.8M
        } else {
1158
12.8M
            return m_substream;
1159
12.8M
        }
1160
12.8M
    }
1161
    const auto& GetStream() const
1162
0
    {
1163
        if constexpr (ContainsStream<SubStream>) {
1164
            return m_substream.GetStream();
1165
0
        } else {
1166
0
            return m_substream;
1167
0
        }
1168
0
    }
1169
};
1170
1171
/**
1172
 * Explicit template deduction guide is required for single-parameter
1173
 * constructor so Substream&& is treated as a forwarding reference, and
1174
 * SubStream is deduced as reference type for lvalue arguments.
1175
 */
1176
template <typename Substream, typename Params>
1177
ParamsStream(Substream&&, const Params&) -> ParamsStream<Substream, Params>;
1178
1179
/**
1180
 * Template deduction guide for multiple params arguments that creates a nested
1181
 * ParamsStream.
1182
 */
1183
template <typename Substream, typename Params1, typename Params2, typename... Params>
1184
ParamsStream(Substream&& s, const Params1& params1, const Params2& params2, const Params&... params) ->
1185
    ParamsStream<decltype(ParamsStream{std::forward<Substream>(s), params2, params...}), Params1>;
1186
1187
/** Wrapper that serializes objects with the specified parameters. */
1188
template <typename Params, typename T>
1189
class ParamsWrapper
1190
{
1191
    const Params& m_params;
1192
    T& m_object;
1193
1194
public:
1195
2.35M
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
_ZN13ParamsWrapperI20TransactionSerParams6CBlockEC2ERKS0_RS1_
Line
Count
Source
1195
43.7k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
_ZN13ParamsWrapperI20TransactionSerParamsK6CBlockEC2ERKS0_RS2_
Line
Count
Source
1195
49.3k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams19CMutableTransactionEC2ERKS0_RS1_
_ZN13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEC2ERKS0_RSA_
Line
Count
Source
1195
137k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
_ZN13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS5_10shared_ptrIK12CTransactionEENS5_9allocatorISA_EEEEEEC2ERKS0_RSG_
Line
Count
Source
1195
320k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
_ZN13ParamsWrapperI20TransactionSerParamsNSt3__16vectorI6CBlockNS1_9allocatorIS3_EEEEEC2ERKS0_RS6_
Line
Count
Source
1195
258k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
_ZN13ParamsWrapperI20TransactionSerParamsK12CTransactionEC2ERKS0_RS2_
Line
Count
Source
1195
1.17M
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
_ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEC2ERKS1_RS2_
Line
Count
Source
1195
108k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsE8AddrInfoEC2ERKS1_RS2_
_ZN13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEEC2ERKS0_RS9_
Line
Count
Source
1195
62.2k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
_ZN13ParamsWrapperI20TransactionSerParamsNSt3__110shared_ptrIK12CTransactionEEEC2ERKS0_RS5_
Line
Count
Source
1195
51.9k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParamsK19CMutableTransactionEC2ERKS0_RS2_
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParamsKNSt3__110shared_ptrIK12CTransactionEEEC2ERKS0_RS6_
Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsES0_EC2ERKS1_RS0_
Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsEKS0_EC2ERKS1_RS2_
Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceEC2ERKS1_RS3_
Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsES0_EC2ERKS1_RS0_
Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsEKS0_EC2ERKS1_RS2_
_ZN13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS5_10shared_ptrIK12CTransactionEENS5_9allocatorISA_EEEEEEC2ERKS0_RSF_
Line
Count
Source
1195
111k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams25CBlockHeaderAndShortTxIDsEC2ERKS0_RS1_
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParamsK5CTxInEC2ERKS0_RS2_
_ZN13ParamsWrapperIN8CAddress9SerParamsE8CNetAddrEC2ERKS1_RS2_
Line
Count
Source
1195
38.1k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsEKNSt3__16vectorIS0_NS2_9allocatorIS0_EEEEEC2ERKS1_RS7_
Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsENSt3__16vectorIS0_NS2_9allocatorIS0_EEEEEC2ERKS1_RS6_
1196
1197
    template <typename Stream>
1198
    void Serialize(Stream& s) const
1199
2.02M
    {
1200
2.02M
        ParamsStream ss{s, m_params};
1201
2.02M
        ::Serialize(ss, m_object);
1202
2.02M
    }
_ZNK13ParamsWrapperI20TransactionSerParamsK12CTransactionE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
1199
123k
    {
1200
123k
        ParamsStream ss{s, m_params};
1201
123k
        ::Serialize(ss, m_object);
1202
123k
    }
_ZNK13ParamsWrapperI20TransactionSerParamsK6CBlockE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
1199
48.1k
    {
1200
48.1k
        ParamsStream ss{s, m_params};
1201
48.1k
        ::Serialize(ss, m_object);
1202
48.1k
    }
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK5CTxInE9SerializeI12SizeComputerEEvRT_
_ZNK13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
1199
137k
    {
1200
137k
        ParamsStream ss{s, m_params};
1201
137k
        ::Serialize(ss, m_object);
1202
137k
    }
_ZNK13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS5_10shared_ptrIK12CTransactionEENS5_9allocatorISA_EEEEEE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
1199
320k
    {
1200
320k
        ParamsStream ss{s, m_params};
1201
320k
        ::Serialize(ss, m_object);
1202
320k
    }
_ZNK13ParamsWrapperI20TransactionSerParamsNSt3__16vectorI6CBlockNS1_9allocatorIS3_EEEEE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
1199
258k
    {
1200
258k
        ParamsStream ss{s, m_params};
1201
258k
        ::Serialize(ss, m_object);
1202
258k
    }
_ZNK13ParamsWrapperI20TransactionSerParamsK12CTransactionE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
1199
173k
    {
1200
173k
        ParamsStream ss{s, m_params};
1201
173k
        ::Serialize(ss, m_object);
1202
173k
    }
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK19CMutableTransactionE9SerializeI12SizeComputerEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK19CMutableTransactionE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsKNSt3__110shared_ptrIK12CTransactionEEE9SerializeI12SizeComputerEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsKNSt3__110shared_ptrIK12CTransactionEEE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams6CBlockE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperIN8CNetAddr9SerParamsEKS0_E9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperIN8CAddress9SerParamsEKS0_E9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceE9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS5_10shared_ptrIK12CTransactionEENS5_9allocatorISA_EEEEEE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams25CBlockHeaderAndShortTxIDsE9SerializeI12VectorWriterEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEE9SerializeI12ParamsStreamIR12VectorWriterS0_EEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams6CBlockE9SerializeI12VectorWriterEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams19CMutableTransactionE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK12CTransactionE9SerializeI10DataStreamEEvRT_
_ZNK13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
1199
87.2k
    {
1200
87.2k
        ParamsStream ss{s, m_params};
1201
87.2k
        ::Serialize(ss, m_object);
1202
87.2k
    }
Unexecuted instantiation: _ZNK13ParamsWrapperIN8CAddress9SerParamsEKNSt3__16vectorIS0_NS2_9allocatorIS0_EEEEE9SerializeI18HashedSourceWriterI8AutoFileEEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceE9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEE9SerializeI12SizeComputerEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK6CBlockE9SerializeI12VectorWriterEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperIN8CAddress9SerParamsENSt3__16vectorIS0_NS2_9allocatorIS0_EEEEE9SerializeI12VectorWriterEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperIN8CNetAddr9SerParamsEK8CServiceE9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEEvRT_
_ZNK13ParamsWrapperI20TransactionSerParamsK6CBlockE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
1199
1.11k
    {
1200
1.11k
        ParamsStream ss{s, m_params};
1201
1.11k
        ::Serialize(ss, m_object);
1202
1.11k
    }
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK12CTransactionE9SerializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK6CBlockE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK19CMutableTransactionE9SerializeI10HashWriterEEvRT_
_ZNK13ParamsWrapperI20TransactionSerParamsK12CTransactionE9SerializeI10HashWriterEEvRT_
Line
Count
Source
1199
878k
    {
1200
878k
        ParamsStream ss{s, m_params};
1201
878k
        ::Serialize(ss, m_object);
1202
878k
    }
1203
    template <typename Stream>
1204
    void Unserialize(Stream& s)
1205
328k
    {
1206
328k
        ParamsStream ss{s, m_params};
1207
328k
        ::Unserialize(ss, m_object);
1208
328k
    }
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams6CBlockE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams19CMutableTransactionE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsE8AddrInfoE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
_ZN13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
1205
62.2k
    {
1206
62.2k
        ParamsStream ss{s, m_params};
1207
62.2k
        ::Unserialize(ss, m_object);
1208
62.2k
    }
_ZN13ParamsWrapperI20TransactionSerParamsNSt3__110shared_ptrIK12CTransactionEEE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
1205
51.9k
    {
1206
51.9k
        ParamsStream ss{s, m_params};
1207
51.9k
        ::Unserialize(ss, m_object);
1208
51.9k
    }
Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsES0_E11UnserializeI10DataStreamEEvRT_
_ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
1205
20.9k
    {
1206
20.9k
        ParamsStream ss{s, m_params};
1207
20.9k
        ::Unserialize(ss, m_object);
1208
20.9k
    }
Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsES0_E11UnserializeI10DataStreamEEvRT_
_ZN13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS5_10shared_ptrIK12CTransactionEENS5_9allocatorISA_EEEEEE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
1205
111k
    {
1206
111k
        ParamsStream ss{s, m_params};
1207
111k
        ::Unserialize(ss, m_object);
1208
111k
    }
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams19CMutableTransactionE11UnserializeI10SpanReaderEEvRT_
_ZN13ParamsWrapperIN8CAddress9SerParamsE8CNetAddrE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
1205
38.1k
    {
1206
38.1k
        ParamsStream ss{s, m_params};
1207
38.1k
        ::Unserialize(ss, m_object);
1208
38.1k
    }
Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsENSt3__16vectorIS0_NS2_9allocatorIS0_EEEEE11UnserializeI12HashVerifierI8AutoFileEEEvRT_
Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParamsNSt3__110shared_ptrIK12CTransactionEEE11UnserializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsENSt3__16vectorIS0_NS2_9allocatorIS0_EEEEE11UnserializeI10DataStreamEEvRT_
_ZN13ParamsWrapperI20TransactionSerParams6CBlockE11UnserializeI10SpanReaderEEvRT_
Line
Count
Source
1205
43.7k
    {
1206
43.7k
        ParamsStream ss{s, m_params};
1207
43.7k
        ::Unserialize(ss, m_object);
1208
43.7k
    }
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams6CBlockE11UnserializeI12BufferedFileEEvRT_
1209
};
1210
1211
/**
1212
 * Helper macro for SerParams structs
1213
 *
1214
 * Allows you define SerParams instances and then apply them directly
1215
 * to an object via function call syntax, eg:
1216
 *
1217
 *   constexpr SerParams FOO{....};
1218
 *   ss << FOO(obj);
1219
 */
1220
#define SER_PARAMS_OPFUNC                                                                \
1221
    /**                                                                                  \
1222
     * Return a wrapper around t that (de)serializes it with specified parameter params. \
1223
     *                                                                                   \
1224
     * See SER_PARAMS for more information on serialization parameters.                  \
1225
     */                                                                                  \
1226
    template <typename T>                                                                \
1227
    auto operator()(T&& t) const                                                         \
1228
2.35M
    {                                                                                    \
1229
2.35M
        return ParamsWrapper{*this, t};                                                  \
1230
2.35M
    }
_ZNK20TransactionSerParamsclIRK12CTransactionEEDaOT_
Line
Count
Source
1228
1.17M
    {                                                                                    \
1229
1.17M
        return ParamsWrapper{*this, t};                                                  \
1230
1.17M
    }
_ZNK20TransactionSerParamsclIRK6CBlockEEDaOT_
Line
Count
Source
1228
49.3k
    {                                                                                    \
1229
49.3k
        return ParamsWrapper{*this, t};                                                  \
1230
49.3k
    }
Unexecuted instantiation: _ZNK20TransactionSerParamsclIRK5CTxInEEDaOT_
Unexecuted instantiation: _ZNK20TransactionSerParamsclIRKNSt3__110shared_ptrIK12CTransactionEEEEDaOT_
_ZNK20TransactionSerParamsclIRNSt3__110shared_ptrIK12CTransactionEEEEDaOT_
Line
Count
Source
1228
51.9k
    {                                                                                    \
1229
51.9k
        return ParamsWrapper{*this, t};                                                  \
1230
51.9k
    }
Unexecuted instantiation: _ZNK20TransactionSerParamsclIRK19CMutableTransactionEEDaOT_
Unexecuted instantiation: _ZNK20TransactionSerParamsclIR19CMutableTransactionEEDaOT_
_ZNK20TransactionSerParamsclIR6CBlockEEDaOT_
Line
Count
Source
1228
43.7k
    {                                                                                    \
1229
43.7k
        return ParamsWrapper{*this, t};                                                  \
1230
43.7k
    }
_ZNK20TransactionSerParamsclI7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEEDaOT_
Line
Count
Source
1228
137k
    {                                                                                    \
1229
137k
        return ParamsWrapper{*this, t};                                                  \
1230
137k
    }
_ZNK20TransactionSerParamsclI7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS5_10shared_ptrIK12CTransactionEENS5_9allocatorISA_EEEEEEEDaOT_
Line
Count
Source
1228
320k
    {                                                                                    \
1229
320k
        return ParamsWrapper{*this, t};                                                  \
1230
320k
    }
_ZNK20TransactionSerParamsclIRNSt3__16vectorI6CBlockNS1_9allocatorIS3_EEEEEEDaOT_
Line
Count
Source
1228
258k
    {                                                                                    \
1229
258k
        return ParamsWrapper{*this, t};                                                  \
1230
258k
    }
_ZNK8CNetAddr9SerParamsclIR8CServiceEEDaOT_
Line
Count
Source
1228
42.6k
    {                                                                                    \
1229
42.6k
        return ParamsWrapper{*this, t};                                                  \
1230
42.6k
    }
Unexecuted instantiation: _ZNK8CAddress9SerParamsclIR8AddrInfoEEDaOT_
_ZNK20TransactionSerParamsclI7WrapperI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEEEDaOT_
Line
Count
Source
1228
62.2k
    {                                                                                    \
1229
62.2k
        return ParamsWrapper{*this, t};                                                  \
1230
62.2k
    }
Unexecuted instantiation: _ZNK8CNetAddr9SerParamsclIRS_EEDaOT_
Unexecuted instantiation: _ZNK8CNetAddr9SerParamsclIRKS_EEDaOT_
Unexecuted instantiation: _ZNK8CNetAddr9SerParamsclIRK8CServiceEEDaOT_
Unexecuted instantiation: _ZNK8CAddress9SerParamsclIRS_EEDaOT_
Unexecuted instantiation: _ZNK8CAddress9SerParamsclIRKS_EEDaOT_
_ZNK20TransactionSerParamsclI7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS5_10shared_ptrIK12CTransactionEENS5_9allocatorISA_EEEEEEEDaOT_
Line
Count
Source
1228
111k
    {                                                                                    \
1229
111k
        return ParamsWrapper{*this, t};                                                  \
1230
111k
    }
Unexecuted instantiation: _ZNK20TransactionSerParamsclIR25CBlockHeaderAndShortTxIDsEEDaOT_
_ZNK8CAddress9SerParamsclIR8CNetAddrEEDaOT_
Line
Count
Source
1228
38.1k
    {                                                                                    \
1229
38.1k
        return ParamsWrapper{*this, t};                                                  \
1230
38.1k
    }
_ZNK8CNetAddr9SerParamsclI8CServiceEEDaOT_
Line
Count
Source
1228
65.4k
    {                                                                                    \
1229
65.4k
        return ParamsWrapper{*this, t};                                                  \
1230
65.4k
    }
Unexecuted instantiation: _ZNK8CAddress9SerParamsclIRKNSt3__16vectorIS_NS2_9allocatorIS_EEEEEEDaOT_
Unexecuted instantiation: _ZNK8CAddress9SerParamsclIRNSt3__16vectorIS_NS2_9allocatorIS_EEEEEEDaOT_
1231
1232
#endif // BITCOIN_SERIALIZE_H