fuzz coverage

Coverage Report

Created: 2025-10-29 15:27

/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
278M
{
56
278M
    s.write(std::as_bytes(std::span{&obj, 1}));
57
278M
}
_Z14ser_writedata8I12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_h
Line
Count
Source
55
30.3M
{
56
30.3M
    s.write(std::as_bytes(std::span{&obj, 1}));
57
30.3M
}
Unexecuted instantiation: _Z14ser_writedata8I8AutoFileEvRT_h
_Z14ser_writedata8I12VectorWriterEvRT_h
Line
Count
Source
55
6.50M
{
56
6.50M
    s.write(std::as_bytes(std::span{&obj, 1}));
57
6.50M
}
_Z14ser_writedata8I12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_h
Line
Count
Source
55
46.7M
{
56
46.7M
    s.write(std::as_bytes(std::span{&obj, 1}));
57
46.7M
}
_Z14ser_writedata8I10DataStreamEvRT_h
Line
Count
Source
55
4.75M
{
56
4.75M
    s.write(std::as_bytes(std::span{&obj, 1}));
57
4.75M
}
Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_h
_Z14ser_writedata8I12SizeComputerEvRT_h
Line
Count
Source
55
663k
{
56
663k
    s.write(std::as_bytes(std::span{&obj, 1}));
57
663k
}
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
1.34M
{
56
1.34M
    s.write(std::as_bytes(std::span{&obj, 1}));
57
1.34M
}
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
790k
{
56
790k
    s.write(std::as_bytes(std::span{&obj, 1}));
57
790k
}
_Z14ser_writedata8I12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_h
Line
Count
Source
55
1.35M
{
56
1.35M
    s.write(std::as_bytes(std::span{&obj, 1}));
57
1.35M
}
Unexecuted instantiation: _Z14ser_writedata8I12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_h
_Z14ser_writedata8I12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_h
Line
Count
Source
55
185M
{
56
185M
    s.write(std::as_bytes(std::span{&obj, 1}));
57
185M
}
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_writedata32(Stream &s, uint32_t obj)
64
300M
{
65
300M
    obj = htole32_internal(obj);
66
300M
    s.write(std::as_bytes(std::span{&obj, 1}));
67
300M
}
_Z15ser_writedata32I12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_j
Line
Count
Source
64
24.1M
{
65
24.1M
    obj = htole32_internal(obj);
66
24.1M
    s.write(std::as_bytes(std::span{&obj, 1}));
67
24.1M
}
Unexecuted instantiation: _Z15ser_writedata32I8AutoFileEvRT_j
_Z15ser_writedata32I12VectorWriterEvRT_j
Line
Count
Source
64
15.8M
{
65
15.8M
    obj = htole32_internal(obj);
66
15.8M
    s.write(std::as_bytes(std::span{&obj, 1}));
67
15.8M
}
_Z15ser_writedata32I12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_j
Line
Count
Source
64
25.1M
{
65
25.1M
    obj = htole32_internal(obj);
66
25.1M
    s.write(std::as_bytes(std::span{&obj, 1}));
67
25.1M
}
_Z15ser_writedata32I10DataStreamEvRT_j
Line
Count
Source
64
12.0M
{
65
12.0M
    obj = htole32_internal(obj);
66
12.0M
    s.write(std::as_bytes(std::span{&obj, 1}));
67
12.0M
}
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
64
99.3M
{
65
99.3M
    obj = htole32_internal(obj);
66
99.3M
    s.write(std::as_bytes(std::span{&obj, 1}));
67
99.3M
}
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
64
50.0k
{
65
50.0k
    obj = htole32_internal(obj);
66
50.0k
    s.write(std::as_bytes(std::span{&obj, 1}));
67
50.0k
}
_Z15ser_writedata32I12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_j
Line
Count
Source
64
762k
{
65
762k
    obj = htole32_internal(obj);
66
762k
    s.write(std::as_bytes(std::span{&obj, 1}));
67
762k
}
Unexecuted instantiation: _Z15ser_writedata32I12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_j
_Z15ser_writedata32I12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_j
Line
Count
Source
64
123M
{
65
123M
    obj = htole32_internal(obj);
66
123M
    s.write(std::as_bytes(std::span{&obj, 1}));
67
123M
}
68
template<typename Stream> inline void ser_writedata32be(Stream &s, uint32_t obj)
69
0
{
70
0
    obj = htobe32_internal(obj);
71
0
    s.write(std::as_bytes(std::span{&obj, 1}));
72
0
}
73
template<typename Stream> inline void ser_writedata64(Stream &s, uint64_t obj)
74
62.7M
{
75
62.7M
    obj = htole64_internal(obj);
76
62.7M
    s.write(std::as_bytes(std::span{&obj, 1}));
77
62.7M
}
_Z15ser_writedata64I12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_y
Line
Count
Source
74
6.36M
{
75
6.36M
    obj = htole64_internal(obj);
76
6.36M
    s.write(std::as_bytes(std::span{&obj, 1}));
77
6.36M
}
Unexecuted instantiation: _Z15ser_writedata64I8AutoFileEvRT_y
_Z15ser_writedata64I12VectorWriterEvRT_y
Line
Count
Source
74
3.68M
{
75
3.68M
    obj = htole64_internal(obj);
76
3.68M
    s.write(std::as_bytes(std::span{&obj, 1}));
77
3.68M
}
_Z15ser_writedata64I12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_y
Line
Count
Source
74
6.97M
{
75
6.97M
    obj = htole64_internal(obj);
76
6.97M
    s.write(std::as_bytes(std::span{&obj, 1}));
77
6.97M
}
_Z15ser_writedata64I10DataStreamEvRT_y
Line
Count
Source
74
2.96M
{
75
2.96M
    obj = htole64_internal(obj);
76
2.96M
    s.write(std::as_bytes(std::span{&obj, 1}));
77
2.96M
}
Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_y
_Z15ser_writedata64I12SizeComputerEvRT_y
Line
Count
Source
74
1.82M
{
75
1.82M
    obj = htole64_internal(obj);
76
1.82M
    s.write(std::as_bytes(std::span{&obj, 1}));
77
1.82M
}
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
74
504k
{
75
504k
    obj = htole64_internal(obj);
76
504k
    s.write(std::as_bytes(std::span{&obj, 1}));
77
504k
}
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
74
190k
{
75
190k
    obj = htole64_internal(obj);
76
190k
    s.write(std::as_bytes(std::span{&obj, 1}));
77
190k
}
Unexecuted instantiation: _Z15ser_writedata64I12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_y
_Z15ser_writedata64I12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_y
Line
Count
Source
74
40.2M
{
75
40.2M
    obj = htole64_internal(obj);
76
40.2M
    s.write(std::as_bytes(std::span{&obj, 1}));
77
40.2M
}
78
template<typename Stream> inline uint8_t ser_readdata8(Stream &s)
79
202M
{
80
202M
    uint8_t obj;
81
202M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
82
202M
    return obj;
83
202M
}
Unexecuted instantiation: _Z13ser_readdata8I8AutoFileEhRT_
_Z13ser_readdata8I12ParamsStreamIR10DataStream20TransactionSerParamsEEhRT_
Line
Count
Source
79
41.3M
{
80
41.3M
    uint8_t obj;
81
41.3M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
82
41.3M
    return obj;
83
41.3M
}
_Z13ser_readdata8I10DataStreamEhRT_
Line
Count
Source
79
156M
{
80
156M
    uint8_t obj;
81
156M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
82
156M
    return obj;
83
156M
}
Unexecuted instantiation: _Z13ser_readdata8I12BufferedFileEhRT_
Unexecuted instantiation: _Z13ser_readdata8I10SpanReaderEhRT_
_Z13ser_readdata8I12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEhRT_
Line
Count
Source
79
764k
{
80
764k
    uint8_t obj;
81
764k
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
82
764k
    return obj;
83
764k
}
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEhRT_
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEhRT_
_Z13ser_readdata8I12ParamsStreamIR10SpanReader20TransactionSerParamsEEhRT_
Line
Count
Source
79
3.10M
{
80
3.10M
    uint8_t obj;
81
3.10M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
82
3.10M
    return obj;
83
3.10M
}
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
79
615k
{
80
615k
    uint8_t obj;
81
615k
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
82
615k
    return obj;
83
615k
}
Unexecuted instantiation: _Z13ser_readdata8I12ParamsStreamIR12BufferedFile20TransactionSerParamsEEhRT_
84
template<typename Stream> inline uint16_t ser_readdata16(Stream &s)
85
0
{
86
0
    uint16_t obj;
87
0
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
88
0
    return le16toh_internal(obj);
89
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_
90
template<typename Stream> inline uint32_t ser_readdata32(Stream &s)
91
79.4M
{
92
79.4M
    uint32_t obj;
93
79.4M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
94
79.4M
    return le32toh_internal(obj);
95
79.4M
}
_Z14ser_readdata32I8AutoFileEjRT_
Line
Count
Source
91
308k
{
92
308k
    uint32_t obj;
93
308k
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
94
308k
    return le32toh_internal(obj);
95
308k
}
_Z14ser_readdata32I12ParamsStreamIR10DataStream20TransactionSerParamsEEjRT_
Line
Count
Source
91
19.8M
{
92
19.8M
    uint32_t obj;
93
19.8M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
94
19.8M
    return le32toh_internal(obj);
95
19.8M
}
_Z14ser_readdata32I10DataStreamEjRT_
Line
Count
Source
91
56.8M
{
92
56.8M
    uint32_t obj;
93
56.8M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
94
56.8M
    return le32toh_internal(obj);
95
56.8M
}
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
91
2.47M
{
92
2.47M
    uint32_t obj;
93
2.47M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
94
2.47M
    return le32toh_internal(obj);
95
2.47M
}
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_
96
template<typename Stream> inline uint32_t ser_readdata32be(Stream &s)
97
0
{
98
0
    uint32_t obj;
99
0
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
100
0
    return be32toh_internal(obj);
101
0
}
102
template<typename Stream> inline uint64_t ser_readdata64(Stream &s)
103
8.75M
{
104
8.75M
    uint64_t obj;
105
8.75M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
106
8.75M
    return le64toh_internal(obj);
107
8.75M
}
Unexecuted instantiation: _Z14ser_readdata64I8AutoFileEyRT_
_Z14ser_readdata64I12ParamsStreamIR10DataStream20TransactionSerParamsEEyRT_
Line
Count
Source
103
6.32M
{
104
6.32M
    uint64_t obj;
105
6.32M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
106
6.32M
    return le64toh_internal(obj);
107
6.32M
}
_Z14ser_readdata64I10DataStreamEyRT_
Line
Count
Source
103
1.80M
{
104
1.80M
    uint64_t obj;
105
1.80M
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
106
1.80M
    return le64toh_internal(obj);
107
1.80M
}
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
103
619k
{
104
619k
    uint64_t obj;
105
619k
    s.read(std::as_writable_bytes(std::span{&obj, 1}));
106
619k
    return le64toh_internal(obj);
107
619k
}
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_
108
109
110
class SizeComputer;
111
112
/**
113
 * Convert any argument to a reference to X, maintaining constness.
114
 *
115
 * This can be used in serialization code to invoke a base class's
116
 * serialization routines.
117
 *
118
 * Example use:
119
 *   class Base { ... };
120
 *   class Child : public Base {
121
 *     int m_data;
122
 *   public:
123
 *     SERIALIZE_METHODS(Child, obj) {
124
 *       READWRITE(AsBase<Base>(obj), obj.m_data);
125
 *     }
126
 *   };
127
 *
128
 * static_cast cannot easily be used here, as the type of Obj will be const Child&
129
 * during serialization and Child& during deserialization. AsBase will convert to
130
 * const Base& and Base& appropriately.
131
 */
132
template <class Out, class In>
133
Out& AsBase(In& x)
134
12.7M
{
135
12.7M
    static_assert(std::is_base_of_v<Out, In>);
136
12.7M
    return x;
137
12.7M
}
_Z6AsBaseI9prevectorILj36EhjiE7CScriptERT_RT0_
Line
Count
Source
134
12.2M
{
135
12.2M
    static_assert(std::is_base_of_v<Out, In>);
136
12.2M
    return x;
137
12.2M
}
_Z6AsBaseI12CBlockHeader6CBlockERT_RT0_
Line
Count
Source
134
308k
{
135
308k
    static_assert(std::is_base_of_v<Out, In>);
136
308k
    return x;
137
308k
}
_Z6AsBaseI8CNetAddr8CServiceERT_RT0_
Line
Count
Source
134
191k
{
135
191k
    static_assert(std::is_base_of_v<Out, In>);
136
191k
    return x;
137
191k
}
Unexecuted instantiation: _Z6AsBaseI8CService8CAddressERT_RT0_
Unexecuted instantiation: _Z6AsBaseI8CAddress8AddrInfoERT_RT0_
Unexecuted instantiation: _Z6AsBaseI11FlatFilePos10CDiskTxPosERT_RT0_
138
template <class Out, class In>
139
const Out& AsBase(const In& x)
140
100M
{
141
100M
    static_assert(std::is_base_of_v<Out, In>);
142
100M
    return x;
143
100M
}
_Z6AsBaseI9prevectorILj36EhjiE7CScriptERKT_RKT0_
Line
Count
Source
140
98.0M
{
141
98.0M
    static_assert(std::is_base_of_v<Out, In>);
142
98.0M
    return x;
143
98.0M
}
_Z6AsBaseI12CBlockHeader6CBlockERKT_RKT0_
Line
Count
Source
140
1.36M
{
141
1.36M
    static_assert(std::is_base_of_v<Out, In>);
142
1.36M
    return x;
143
1.36M
}
_Z6AsBaseI8CNetAddr8CServiceERKT_RKT0_
Line
Count
Source
140
769k
{
141
769k
    static_assert(std::is_base_of_v<Out, In>);
142
769k
    return x;
143
769k
}
Unexecuted instantiation: _Z6AsBaseI8CService8CAddressERKT_RKT0_
Unexecuted instantiation: _Z6AsBaseI8CAddress8AddrInfoERKT_RKT0_
Unexecuted instantiation: _Z6AsBaseI11FlatFilePos10CDiskTxPosERKT_RKT0_
144
145
464M
#define READWRITE(...) (ser_action.SerReadWriteMany(s, __VA_ARGS__))
146
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_
Unexecuted instantiation: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10DataStreamS0_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS2_RS0_E_clES9_SA_
Unexecuted instantiation: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10DataStreamS0_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS2_RS0_E0_clES9_SA_
Unexecuted instantiation: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10DataStreamS0_17ActionUnserializeEEvRT0_RT_T1_ENKUlRS2_RS0_E1_clES9_SA_
147
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: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10DataStreamKS0_15ActionSerializeEEvRT0_RT_T1_ENKUlRS2_RS3_E_clESA_SB_
Unexecuted instantiation: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10DataStreamKS0_15ActionSerializeEEvRT0_RT_T1_ENKUlRS2_RS3_E0_clESA_SB_
Unexecuted instantiation: coinstatsindex.cpp:_ZZN12_GLOBAL__N_15DBVal16SerializationOpsI10DataStreamKS0_15ActionSerializeEEvRT0_RT_T1_ENKUlRS2_RS3_E1_clESA_SB_
Unexecuted instantiation: _ZZN18CPartialMerkleTree16SerializationOpsI12VectorWriterKS_15ActionSerializeEEvRT0_RT_T1_ENKUlRS1_RS2_E_clES9_SA_
Unexecuted instantiation: _ZZN8CAddress16SerializationOpsI12ParamsStreamIR12VectorWriterNS_9SerParamsEEKS_15ActionSerializeEEvRT0_RT_T1_ENKUlRS5_RS6_E_clESD_SE_
148
149
/**
150
 * Implement the Ser and Unser methods needed for implementing a formatter (see Using below).
151
 *
152
 * Both Ser and Unser are delegated to a single static method SerializationOps, which is polymorphic
153
 * in the serialized/deserialized type (allowing it to be const when serializing, and non-const when
154
 * deserializing).
155
 *
156
 * Example use:
157
 *   struct FooFormatter {
158
 *     FORMATTER_METHODS(Class, obj) { READWRITE(obj.val1, VARINT(obj.val2)); }
159
 *   }
160
 *   would define a class FooFormatter that defines a serialization of Class objects consisting
161
 *   of serializing its val1 member using the default serialization, and its val2 member using
162
 *   VARINT serialization. That FooFormatter can then be used in statements like
163
 *   READWRITE(Using<FooFormatter>(obj.bla)).
164
 */
165
#define FORMATTER_METHODS(cls, obj) \
166
    template<typename Stream> \
167
285M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN5CTxIn3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
5.60M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CScript3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
11.9M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN9COutPoint3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
5.60M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CTxOut3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
6.36M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CBlock3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
422k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN12CBlockHeader3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
422k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN25CBlockHeaderAndShortTxIDs3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
167
1.59M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN12CBlockHeader3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
167
1.59M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN20PrefilledTransaction3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
167
1.66M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN5CTxIn3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
5.37M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN9COutPoint3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
5.37M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CScript3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
12.3M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CTxOut3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
6.97M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN17BlockTransactions3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
167
276k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CBlock3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
916k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN12CBlockHeader3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
916k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN14CBlockFileInfo3SerI10DataStreamEEvRT_RKS_
Line
Count
Source
167
1.89k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
Unexecuted instantiation: _ZN25CBlockHeaderAndShortTxIDs3SerI10DataStreamEEvRT_RKS_
_ZN12CBlockHeader3SerI10DataStreamEEvRT_RKS_
Line
Count
Source
167
2.96M
    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
167
1.82M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CScript3SerI12SizeComputerEEvRT_RKS_
Line
Count
Source
167
1.82M
    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
167
10.1k
    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
167
10.4k
    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_
_ZN8CService3SerI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEEvRT_RKS_
Line
Count
Source
167
769k
    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
167
504k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CTxOut3SerI10HashWriterEEvRT_RKS_
Line
Count
Source
167
504k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CScript3SerI10HashWriterEEvRT_RKS_
Line
Count
Source
167
504k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN14CMessageHeader3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
167
8.05M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN4CInv3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
167
534k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN13CBlockLocator3SerI12VectorWriterEEvRT_RKS_
Line
Count
Source
167
71.6k
    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
167
16.5k
    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
167
21.7k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CTxUndo3SerI12SizeComputerEEvRT_RKS_
Line
Count
Source
167
104k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN16TxOutCompression3SerI12SizeComputerEEvRT_RK6CTxOut
Line
Count
Source
167
104k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN10CBlockUndo3SerI10HashWriterEEvRT_RKS_
Line
Count
Source
167
21.7k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CTxUndo3SerI10HashWriterEEvRT_RKS_
Line
Count
Source
167
104k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN16TxOutCompression3SerI10HashWriterEEvRT_RK6CTxOut
Line
Count
Source
167
104k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN10CBlockUndo3SerI14BufferedWriterI8AutoFileEEEvRT_RKS_
Line
Count
Source
167
21.7k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CTxUndo3SerI14BufferedWriterI8AutoFileEEEvRT_RKS_
Line
Count
Source
167
104k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN16TxOutCompression3SerI14BufferedWriterI8AutoFileEEEvRT_RK6CTxOut
Line
Count
Source
167
104k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CBlock3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
28.2k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN12CBlockHeader3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
28.2k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN5CTxIn3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
162k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN9COutPoint3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
162k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CScript3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
352k
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CTxOut3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
190k
    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
167
1.54M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN12CBlockHeader3SerI10HashWriterEEvRT_RKS_
Line
Count
Source
167
24.5M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN5CTxIn3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
30.8M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN9COutPoint3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
30.8M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN7CScript3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
71.1M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
_ZN6CTxOut3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_RKS_
Line
Count
Source
167
40.2M
    static void Ser(Stream& s, const cls& obj) { SerializationOps(obj, s, ActionSerialize{}); } \
168
    template<typename Stream> \
169
54.7M
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN6CBlock5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_
Unexecuted instantiation: _ZN12CBlockHeader5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_
_ZN5CTxIn5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
169
4.97M
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN9COutPoint5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
169
4.97M
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN7CScript5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
169
11.3M
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN6CTxOut5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
169
6.32M
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN12CBlockHeader5UnserI10DataStreamEEvRT_RS_
Line
Count
Source
169
2.07M
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN13CBlockLocator5UnserI10DataStreamEEvRT_RS_
_ZN14CBlockFileInfo5UnserI10DataStreamEEvRT_RS_
Line
Count
Source
169
51.2k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN9COutPoint5UnserI10DataStreamEEvRT_RS_
_ZN15CDiskBlockIndex5UnserI10DataStreamEEvRT_RS_
Line
Count
Source
169
10.3M
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN16TxOutCompression5UnserI10DataStreamEEvRT_R6CTxOut
Line
Count
Source
169
1.34M
    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
169
1.35M
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN20PrefilledTransaction5UnserI10DataStreamEEvRT_RS_
Line
Count
Source
169
1.41M
    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
169
191k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN14CMessageHeader5UnserI10DataStreamEEvRT_RS_
Line
Count
Source
169
6.84M
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN4CInv5UnserI10DataStreamEEvRT_RS_
Unexecuted instantiation: _ZN12CBloomFilter5UnserI10DataStreamEEvRT_RS_
_ZN17BlockTransactions5UnserI10DataStreamEEvRT_RS_
Line
Count
Source
169
186k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN24BlockTransactionsRequest5UnserI10DataStreamEEvRT_RS_
_ZN5CTxIn5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
169
311k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN9COutPoint5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
169
311k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN7CScript5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
169
931k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN6CTxOut5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
169
619k
    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
169
615k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
Unexecuted instantiation: _ZN7CTxUndo5UnserI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_RS_
Unexecuted instantiation: _ZN16TxOutCompression5UnserI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_R6CTxOut
_ZN6CBlock5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
169
308k
    static void Unser(Stream& s, cls& obj) { SerializationOps(obj, s, ActionUnserialize{}); } \
_ZN12CBlockHeader5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_RS_
Line
Count
Source
169
308k
    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
170
    template<typename Stream, typename Type, typename Operation> \
171
    static void SerializationOps(Type& obj, Stream& s, Operation ser_action)
172
173
/**
174
 * Formatter methods can retrieve parameters attached to a stream using the
175
 * SER_PARAMS(type) macro as long as the stream is created directly or
176
 * indirectly with a parameter of that type. This permits making serialization
177
 * depend on run-time context in a type-safe way.
178
 *
179
 * Example use:
180
 *   struct BarParameter { bool fancy; ... };
181
 *   struct Bar { ... };
182
 *   struct FooFormatter {
183
 *     FORMATTER_METHODS(Bar, obj) {
184
 *       auto& param = SER_PARAMS(BarParameter);
185
 *       if (param.fancy) {
186
 *         READWRITE(VARINT(obj.value));
187
 *       } else {
188
 *         READWRITE(obj.value);
189
 *       }
190
 *     }
191
 *   };
192
 * which would then be invoked as
193
 *   READWRITE(BarParameter{...}(Using<FooFormatter>(obj.foo)))
194
 *
195
 * parameter(obj) can be invoked anywhere in the call stack; it is
196
 * passed down recursively into all serialization code, until another
197
 * serialization parameter overrides it.
198
 *
199
 * Parameters will be implicitly converted where appropriate. This means that
200
 * "parent" serialization code can use a parameter that derives from, or is
201
 * convertible to, a "child" formatter's parameter type.
202
 *
203
 * Compilation will fail in any context where serialization is invoked but
204
 * no parameter of a type convertible to BarParameter is provided.
205
 */
206
0
#define SER_PARAMS(type) (s.template GetParams<type>())
207
208
#define BASE_SERIALIZE_METHODS(cls)                                                                 \
209
    template <typename Stream>                                                                      \
210
    void Serialize(Stream& s) const                                                                 \
211
285M
    {                                                                                               \
212
285M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
285M
        Ser(s, *this);                                                                              \
214
285M
    }                                                                                               \
_ZNK5CTxIn9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
211
5.60M
    {                                                                                               \
212
5.60M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
5.60M
        Ser(s, *this);                                                                              \
214
5.60M
    }                                                                                               \
_ZNK7CScript9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
211
11.9M
    {                                                                                               \
212
11.9M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
11.9M
        Ser(s, *this);                                                                              \
214
11.9M
    }                                                                                               \
_ZNK9COutPoint9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
211
5.60M
    {                                                                                               \
212
5.60M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
5.60M
        Ser(s, *this);                                                                              \
214
5.60M
    }                                                                                               \
_ZNK6CTxOut9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
211
6.36M
    {                                                                                               \
212
6.36M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
6.36M
        Ser(s, *this);                                                                              \
214
6.36M
    }                                                                                               \
_ZNK6CBlock9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
211
422k
    {                                                                                               \
212
422k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
422k
        Ser(s, *this);                                                                              \
214
422k
    }                                                                                               \
_ZNK12CBlockHeader9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
211
422k
    {                                                                                               \
212
422k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
422k
        Ser(s, *this);                                                                              \
214
422k
    }                                                                                               \
_ZNK25CBlockHeaderAndShortTxIDs9SerializeI12VectorWriterEEvRT_
Line
Count
Source
211
1.59M
    {                                                                                               \
212
1.59M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
1.59M
        Ser(s, *this);                                                                              \
214
1.59M
    }                                                                                               \
_ZNK12CBlockHeader9SerializeI12VectorWriterEEvRT_
Line
Count
Source
211
1.59M
    {                                                                                               \
212
1.59M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
1.59M
        Ser(s, *this);                                                                              \
214
1.59M
    }                                                                                               \
_ZNK20PrefilledTransaction9SerializeI12VectorWriterEEvRT_
Line
Count
Source
211
1.66M
    {                                                                                               \
212
1.66M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
1.66M
        Ser(s, *this);                                                                              \
214
1.66M
    }                                                                                               \
_ZNK5CTxIn9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
211
5.37M
    {                                                                                               \
212
5.37M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
5.37M
        Ser(s, *this);                                                                              \
214
5.37M
    }                                                                                               \
_ZNK9COutPoint9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
211
5.37M
    {                                                                                               \
212
5.37M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
5.37M
        Ser(s, *this);                                                                              \
214
5.37M
    }                                                                                               \
_ZNK7CScript9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
211
12.3M
    {                                                                                               \
212
12.3M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
12.3M
        Ser(s, *this);                                                                              \
214
12.3M
    }                                                                                               \
_ZNK6CTxOut9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
211
6.97M
    {                                                                                               \
212
6.97M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
6.97M
        Ser(s, *this);                                                                              \
214
6.97M
    }                                                                                               \
_ZNK17BlockTransactions9SerializeI12VectorWriterEEvRT_
Line
Count
Source
211
276k
    {                                                                                               \
212
276k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
276k
        Ser(s, *this);                                                                              \
214
276k
    }                                                                                               \
_ZNK6CBlock9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
211
916k
    {                                                                                               \
212
916k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
916k
        Ser(s, *this);                                                                              \
214
916k
    }                                                                                               \
_ZNK12CBlockHeader9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
211
916k
    {                                                                                               \
212
916k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
916k
        Ser(s, *this);                                                                              \
214
916k
    }                                                                                               \
_ZNK14CBlockFileInfo9SerializeI10DataStreamEEvRT_
Line
Count
Source
211
1.89k
    {                                                                                               \
212
1.89k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
1.89k
        Ser(s, *this);                                                                              \
214
1.89k
    }                                                                                               \
Unexecuted instantiation: _ZNK25CBlockHeaderAndShortTxIDs9SerializeI10DataStreamEEvRT_
_ZNK12CBlockHeader9SerializeI10DataStreamEEvRT_
Line
Count
Source
211
2.96M
    {                                                                                               \
212
2.96M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
2.96M
        Ser(s, *this);                                                                              \
214
2.96M
    }                                                                                               \
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
211
1.82M
    {                                                                                               \
212
1.82M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
1.82M
        Ser(s, *this);                                                                              \
214
1.82M
    }                                                                                               \
_ZNK7CScript9SerializeI12SizeComputerEEvRT_
Line
Count
Source
211
1.82M
    {                                                                                               \
212
1.82M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
1.82M
        Ser(s, *this);                                                                              \
214
1.82M
    }                                                                                               \
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
211
10.4k
    {                                                                                               \
212
10.4k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
10.4k
        Ser(s, *this);                                                                              \
214
10.4k
    }                                                                                               \
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_
_ZNK8CService9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEEvRT_
Line
Count
Source
211
769k
    {                                                                                               \
212
769k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
769k
        Ser(s, *this);                                                                              \
214
769k
    }                                                                                               \
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
211
504k
    {                                                                                               \
212
504k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
504k
        Ser(s, *this);                                                                              \
214
504k
    }                                                                                               \
_ZNK6CTxOut9SerializeI10HashWriterEEvRT_
Line
Count
Source
211
504k
    {                                                                                               \
212
504k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
504k
        Ser(s, *this);                                                                              \
214
504k
    }                                                                                               \
_ZNK7CScript9SerializeI10HashWriterEEvRT_
Line
Count
Source
211
504k
    {                                                                                               \
212
504k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
504k
        Ser(s, *this);                                                                              \
214
504k
    }                                                                                               \
_ZNK14CMessageHeader9SerializeI12VectorWriterEEvRT_
Line
Count
Source
211
8.05M
    {                                                                                               \
212
8.05M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
8.05M
        Ser(s, *this);                                                                              \
214
8.05M
    }                                                                                               \
_ZNK4CInv9SerializeI12VectorWriterEEvRT_
Line
Count
Source
211
534k
    {                                                                                               \
212
534k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
534k
        Ser(s, *this);                                                                              \
214
534k
    }                                                                                               \
_ZNK13CBlockLocator9SerializeI12VectorWriterEEvRT_
Line
Count
Source
211
71.6k
    {                                                                                               \
212
71.6k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
71.6k
        Ser(s, *this);                                                                              \
214
71.6k
    }                                                                                               \
Unexecuted instantiation: _ZNK12CMerkleBlock9SerializeI12VectorWriterEEvRT_
Unexecuted instantiation: _ZNK18CPartialMerkleTree9SerializeI12VectorWriterEEvRT_
_ZNK24BlockTransactionsRequest9SerializeI12VectorWriterEEvRT_
Line
Count
Source
211
16.5k
    {                                                                                               \
212
16.5k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
16.5k
        Ser(s, *this);                                                                              \
214
16.5k
    }                                                                                               \
Unexecuted instantiation: _ZNK8CAddress9SerializeI12ParamsStreamIR12VectorWriterNS_9SerParamsEEEEvRT_
Unexecuted instantiation: _ZNK8CService9SerializeI12ParamsStreamIRS1_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
_ZNK10CBlockUndo9SerializeI12SizeComputerEEvRT_
Line
Count
Source
211
21.7k
    {                                                                                               \
212
21.7k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
21.7k
        Ser(s, *this);                                                                              \
214
21.7k
    }                                                                                               \
_ZNK7CTxUndo9SerializeI12SizeComputerEEvRT_
Line
Count
Source
211
104k
    {                                                                                               \
212
104k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
104k
        Ser(s, *this);                                                                              \
214
104k
    }                                                                                               \
_ZNK10CBlockUndo9SerializeI10HashWriterEEvRT_
Line
Count
Source
211
21.7k
    {                                                                                               \
212
21.7k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
21.7k
        Ser(s, *this);                                                                              \
214
21.7k
    }                                                                                               \
_ZNK7CTxUndo9SerializeI10HashWriterEEvRT_
Line
Count
Source
211
104k
    {                                                                                               \
212
104k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
104k
        Ser(s, *this);                                                                              \
214
104k
    }                                                                                               \
_ZNK10CBlockUndo9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
211
21.7k
    {                                                                                               \
212
21.7k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
21.7k
        Ser(s, *this);                                                                              \
214
21.7k
    }                                                                                               \
_ZNK7CTxUndo9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
211
104k
    {                                                                                               \
212
104k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
104k
        Ser(s, *this);                                                                              \
214
104k
    }                                                                                               \
_ZNK6CBlock9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
211
28.2k
    {                                                                                               \
212
28.2k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
28.2k
        Ser(s, *this);                                                                              \
214
28.2k
    }                                                                                               \
_ZNK12CBlockHeader9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
211
28.2k
    {                                                                                               \
212
28.2k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
28.2k
        Ser(s, *this);                                                                              \
214
28.2k
    }                                                                                               \
_ZNK5CTxIn9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
211
162k
    {                                                                                               \
212
162k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
162k
        Ser(s, *this);                                                                              \
214
162k
    }                                                                                               \
_ZNK9COutPoint9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
211
162k
    {                                                                                               \
212
162k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
162k
        Ser(s, *this);                                                                              \
214
162k
    }                                                                                               \
_ZNK7CScript9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
211
352k
    {                                                                                               \
212
352k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
352k
        Ser(s, *this);                                                                              \
214
352k
    }                                                                                               \
_ZNK6CTxOut9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
211
190k
    {                                                                                               \
212
190k
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
190k
        Ser(s, *this);                                                                              \
214
190k
    }                                                                                               \
Unexecuted instantiation: _ZNK5CTxIn9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK9COutPoint9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK7CScript9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK6CTxOut9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZNK5CCoin9SerializeI10DataStreamEEvRT_
txdb.cpp:_ZNK12_GLOBAL__N_19CoinEntry9SerializeI10DataStreamEEvRT_
Line
Count
Source
211
1.54M
    {                                                                                               \
212
1.54M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
1.54M
        Ser(s, *this);                                                                              \
214
1.54M
    }                                                                                               \
_ZNK12CBlockHeader9SerializeI10HashWriterEEvRT_
Line
Count
Source
211
24.5M
    {                                                                                               \
212
24.5M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
24.5M
        Ser(s, *this);                                                                              \
214
24.5M
    }                                                                                               \
_ZNK5CTxIn9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
211
30.8M
    {                                                                                               \
212
30.8M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
30.8M
        Ser(s, *this);                                                                              \
214
30.8M
    }                                                                                               \
_ZNK9COutPoint9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
211
30.8M
    {                                                                                               \
212
30.8M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
30.8M
        Ser(s, *this);                                                                              \
214
30.8M
    }                                                                                               \
_ZNK7CScript9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
211
71.1M
    {                                                                                               \
212
71.1M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
71.1M
        Ser(s, *this);                                                                              \
214
71.1M
    }                                                                                               \
_ZNK6CTxOut9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
211
40.2M
    {                                                                                               \
212
40.2M
        static_assert(std::is_same_v<const cls&, decltype(*this)>, "Serialize type mismatch");      \
213
40.2M
        Ser(s, *this);                                                                              \
214
40.2M
    }                                                                                               \
215
    template <typename Stream>                                                                      \
216
    void Unserialize(Stream& s)                                                                     \
217
53.4M
    {                                                                                               \
218
53.4M
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
53.4M
        Unser(s, *this);                                                                            \
220
53.4M
    }
Unexecuted instantiation: _ZN6CBlock11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Unexecuted instantiation: _ZN12CBlockHeader11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
_ZN5CTxIn11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
217
4.97M
    {                                                                                               \
218
4.97M
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
4.97M
        Unser(s, *this);                                                                            \
220
4.97M
    }
_ZN9COutPoint11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
217
4.97M
    {                                                                                               \
218
4.97M
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
4.97M
        Unser(s, *this);                                                                            \
220
4.97M
    }
_ZN7CScript11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
217
11.3M
    {                                                                                               \
218
11.3M
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
11.3M
        Unser(s, *this);                                                                            \
220
11.3M
    }
_ZN6CTxOut11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
217
6.32M
    {                                                                                               \
218
6.32M
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
6.32M
        Unser(s, *this);                                                                            \
220
6.32M
    }
_ZN12CBlockHeader11UnserializeI10DataStreamEEvRT_
Line
Count
Source
217
2.07M
    {                                                                                               \
218
2.07M
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
2.07M
        Unser(s, *this);                                                                            \
220
2.07M
    }
Unexecuted instantiation: _ZN13CBlockLocator11UnserializeI10DataStreamEEvRT_
_ZN14CBlockFileInfo11UnserializeI10DataStreamEEvRT_
Line
Count
Source
217
51.2k
    {                                                                                               \
218
51.2k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
51.2k
        Unser(s, *this);                                                                            \
220
51.2k
    }
Unexecuted instantiation: _ZN9COutPoint11UnserializeI10DataStreamEEvRT_
_ZN15CDiskBlockIndex11UnserializeI10DataStreamEEvRT_
Line
Count
Source
217
10.3M
    {                                                                                               \
218
10.3M
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
10.3M
        Unser(s, *this);                                                                            \
220
10.3M
    }
Unexecuted instantiation: _ZN8AddrInfo11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN8CAddress11UnserializeI12ParamsStreamIR10DataStreamNS_9SerParamsEEEEvRT_
Unexecuted instantiation: _ZN8CService11UnserializeI12ParamsStreamIRS1_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEEvRT_
_ZN25CBlockHeaderAndShortTxIDs11UnserializeI10DataStreamEEvRT_
Line
Count
Source
217
1.35M
    {                                                                                               \
218
1.35M
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
1.35M
        Unser(s, *this);                                                                            \
220
1.35M
    }
_ZN20PrefilledTransaction11UnserializeI10DataStreamEEvRT_
Line
Count
Source
217
1.41M
    {                                                                                               \
218
1.41M
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
1.41M
        Unser(s, *this);                                                                            \
220
1.41M
    }
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
217
191k
    {                                                                                               \
218
191k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
191k
        Unser(s, *this);                                                                            \
220
191k
    }
_ZN14CMessageHeader11UnserializeI10DataStreamEEvRT_
Line
Count
Source
217
6.84M
    {                                                                                               \
218
6.84M
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
6.84M
        Unser(s, *this);                                                                            \
220
6.84M
    }
Unexecuted instantiation: _ZN4CInv11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN12CBloomFilter11UnserializeI10DataStreamEEvRT_
_ZN17BlockTransactions11UnserializeI10DataStreamEEvRT_
Line
Count
Source
217
186k
    {                                                                                               \
218
186k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
186k
        Unser(s, *this);                                                                            \
220
186k
    }
Unexecuted instantiation: _ZN24BlockTransactionsRequest11UnserializeI10DataStreamEEvRT_
_ZN5CTxIn11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
217
311k
    {                                                                                               \
218
311k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
311k
        Unser(s, *this);                                                                            \
220
311k
    }
_ZN9COutPoint11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
217
311k
    {                                                                                               \
218
311k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
311k
        Unser(s, *this);                                                                            \
220
311k
    }
_ZN7CScript11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
217
931k
    {                                                                                               \
218
931k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
931k
        Unser(s, *this);                                                                            \
220
931k
    }
_ZN6CTxOut11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
217
619k
    {                                                                                               \
218
619k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
619k
        Unser(s, *this);                                                                            \
220
619k
    }
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
217
615k
    {                                                                                               \
218
615k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
615k
        Unser(s, *this);                                                                            \
220
615k
    }
Unexecuted instantiation: _ZN7CTxUndo11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEEEEvRT_
_ZN6CBlock11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
217
308k
    {                                                                                               \
218
308k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
308k
        Unser(s, *this);                                                                            \
220
308k
    }
_ZN12CBlockHeader11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
217
308k
    {                                                                                               \
218
308k
        static_assert(std::is_same_v<cls&, decltype(*this)>, "Unserialize type mismatch");          \
219
308k
        Unser(s, *this);                                                                            \
220
308k
    }
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_
221
222
/**
223
 * Implement the Serialize and Unserialize methods by delegating to a single templated
224
 * static method that takes the to-be-(de)serialized object as a parameter. This approach
225
 * has the advantage that the constness of the object becomes a template parameter, and
226
 * thus allows a single implementation that sees the object as const for serializing
227
 * and non-const for deserializing, without casts.
228
 */
229
#define SERIALIZE_METHODS(cls, obj) \
230
    BASE_SERIALIZE_METHODS(cls)     \
231
    FORMATTER_METHODS(cls, obj)
232
233
// Templates for serializing to anything that looks like a stream,
234
// i.e. anything that supports .read(std::span<std::byte>) and .write(std::span<const std::byte>)
235
//
236
237
// Typically int8_t and char are distinct types, but some systems may define int8_t
238
// in terms of char. Forbid serialization of char in the typical case, but allow it if
239
// it's the only way to describe an int8_t.
240
template<class T>
241
concept CharNotInt8 = std::same_as<T, char> && !std::same_as<T, int8_t>;
242
243
// clang-format off
244
template <typename Stream, CharNotInt8 V> void Serialize(Stream&, V) = delete; // char serialization forbidden. Use uint8_t or int8_t
245
template <typename Stream> void Serialize(Stream& s, std::byte a) { ser_writedata8(s, uint8_t(a)); }
246
0
template <typename Stream> void Serialize(Stream& s, int8_t a)    { ser_writedata8(s, uint8_t(a)); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_a
Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_a
247
23.2M
template <typename Stream> void Serialize(Stream& s, uint8_t a)   { ser_writedata8(s, a); }
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_h
Line
Count
Source
247
1.68M
template <typename Stream> void Serialize(Stream& s, uint8_t a)   { ser_writedata8(s, a); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_h
Unexecuted instantiation: _Z9SerializeI12VectorWriterEvRT_h
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_h
Line
Count
Source
247
5.37M
template <typename Stream> void Serialize(Stream& s, uint8_t a)   { ser_writedata8(s, a); }
_Z9SerializeI10DataStreamEvRT_h
Line
Count
Source
247
2.47M
template <typename Stream> void Serialize(Stream& s, uint8_t a)   { ser_writedata8(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_h
_Z9SerializeI12SizeComputerEvRT_h
Line
Count
Source
247
104k
template <typename Stream> 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
247
104k
template <typename Stream> 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
247
104k
template <typename Stream> void Serialize(Stream& s, uint8_t a)   { ser_writedata8(s, a); }
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_h
Line
Count
Source
247
162k
template <typename Stream> void Serialize(Stream& s, uint8_t a)   { ser_writedata8(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_h
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_h
Line
Count
Source
247
13.2M
template <typename Stream> void Serialize(Stream& s, uint8_t a)   { ser_writedata8(s, a); }
248
0
template <typename Stream> void Serialize(Stream& s, int16_t a)   { ser_writedata16(s, uint16_t(a)); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_s
Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_s
249
0
template <typename Stream> void Serialize(Stream& s, uint16_t a)  { ser_writedata16(s, a); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_t
Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_t
250
31.4M
template <typename Stream> void Serialize(Stream& s, int32_t a)   { ser_writedata32(s, uint32_t(a)); }
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_i
Line
Count
Source
250
422k
template <typename Stream> void Serialize(Stream& s, int32_t a)   { ser_writedata32(s, uint32_t(a)); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_i
_Z9SerializeI12VectorWriterEvRT_i
Line
Count
Source
250
2.43M
template <typename Stream> void Serialize(Stream& s, int32_t a)   { ser_writedata32(s, uint32_t(a)); }
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_i
Line
Count
Source
250
916k
template <typename Stream> void Serialize(Stream& s, int32_t a)   { ser_writedata32(s, uint32_t(a)); }
_Z9SerializeI10DataStreamEvRT_i
Line
Count
Source
250
3.08M
template <typename Stream> void Serialize(Stream& s, int32_t a)   { ser_writedata32(s, uint32_t(a)); }
Unexecuted instantiation: _Z9SerializeI12SizeComputerEvRT_i
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_i
_Z9SerializeI10HashWriterEvRT_i
Line
Count
Source
250
24.5M
template <typename Stream> void Serialize(Stream& s, int32_t a)   { ser_writedata32(s, uint32_t(a)); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_i
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_i
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_i
Line
Count
Source
250
28.2k
template <typename Stream> void Serialize(Stream& s, int32_t a)   { ser_writedata32(s, uint32_t(a)); }
251
269M
template <typename Stream> void Serialize(Stream& s, uint32_t a)  { ser_writedata32(s, a); }
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_j
Line
Count
Source
251
23.6M
template <typename Stream> void Serialize(Stream& s, uint32_t a)  { ser_writedata32(s, a); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_j
_Z9SerializeI12VectorWriterEvRT_j
Line
Count
Source
251
13.3M
template <typename Stream> void Serialize(Stream& s, uint32_t a)  { ser_writedata32(s, a); }
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_j
Line
Count
Source
251
24.2M
template <typename Stream> void Serialize(Stream& s, uint32_t a)  { ser_writedata32(s, a); }
_Z9SerializeI10DataStreamEvRT_j
Line
Count
Source
251
8.93M
template <typename Stream> 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
251
74.7M
template <typename Stream> void Serialize(Stream& s, uint32_t a)  { ser_writedata32(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_j
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEEEvRT_j
_Z9SerializeI14BufferedWriterI8AutoFileEEvRT_j
Line
Count
Source
251
50.0k
template <typename Stream> void Serialize(Stream& s, uint32_t a)  { ser_writedata32(s, a); }
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_j
Line
Count
Source
251
734k
template <typename Stream> void Serialize(Stream& s, uint32_t a)  { ser_writedata32(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_j
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_j
Line
Count
Source
251
123M
template <typename Stream> void Serialize(Stream& s, uint32_t a)  { ser_writedata32(s, a); }
252
56.9M
template <typename Stream> void Serialize(Stream& s, int64_t a)   { ser_writedata64(s, uint64_t(a)); }
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_x
Line
Count
Source
252
6.36M
template <typename Stream> void Serialize(Stream& s, int64_t a)   { ser_writedata64(s, uint64_t(a)); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_x
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_x
Line
Count
Source
252
6.97M
template <typename Stream> void Serialize(Stream& s, int64_t a)   { ser_writedata64(s, uint64_t(a)); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_x
Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_x
_Z9SerializeI12SizeComputerEvRT_x
Line
Count
Source
252
1.82M
template <typename Stream> void Serialize(Stream& s, int64_t a)   { ser_writedata64(s, uint64_t(a)); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_EEvRT_x
_Z9SerializeI12VectorWriterEvRT_x
Line
Count
Source
252
839k
template <typename Stream> void Serialize(Stream& s, int64_t a)   { ser_writedata64(s, uint64_t(a)); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEEvRT_x
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_x
_Z9SerializeI10HashWriterEvRT_x
Line
Count
Source
252
504k
template <typename Stream> void Serialize(Stream& s, int64_t a)   { ser_writedata64(s, uint64_t(a)); }
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_x
Line
Count
Source
252
190k
template <typename Stream> void Serialize(Stream& s, int64_t a)   { ser_writedata64(s, uint64_t(a)); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_x
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_x
Line
Count
Source
252
40.2M
template <typename Stream> void Serialize(Stream& s, int64_t a)   { ser_writedata64(s, uint64_t(a)); }
253
5.81M
template <typename Stream> void Serialize(Stream& s, uint64_t a)  { ser_writedata64(s, a); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_y
_Z9SerializeI12VectorWriterEvRT_y
Line
Count
Source
253
2.84M
template <typename Stream> void Serialize(Stream& s, uint64_t a)  { ser_writedata64(s, a); }
_Z9SerializeI10DataStreamEvRT_y
Line
Count
Source
253
2.96M
template <typename Stream> void Serialize(Stream& s, uint64_t a)  { ser_writedata64(s, a); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_y
Unexecuted instantiation: _Z9SerializeI10HashWriterEvRT_y
Unexecuted instantiation: _Z9SerializeI12SizeComputerEvRT_y
254
255
16.8M
template <typename Stream, BasicByte B, size_t N> void Serialize(Stream& s, const B (&a)[N])           { s.write(MakeByteSpan(a)); }
Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehLm4EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehLm5EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI12SizeComputerTk9BasicBytehLm78EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytehLm78EEvRT_RAT1__KT0_
_Z9SerializeI12VectorWriterTk9BasicBytehLm4EEvRT_RAT1__KT0_
Line
Count
Source
255
8.05M
template <typename Stream, BasicByte B, size_t N> void Serialize(Stream& s, const B (&a)[N])           { s.write(MakeByteSpan(a)); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI10DataStreamTk9BasicBytecLm12EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__KT0_
_Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__KT0_
Line
Count
Source
255
769k
template <typename Stream, BasicByte B, size_t N> void Serialize(Stream& s, const B (&a)[N])           { s.write(MakeByteSpan(a)); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__KT0_
_Z9SerializeI12VectorWriterTk9BasicBytecLm12EEvRT_RAT1__KT0_
Line
Count
Source
255
8.05M
template <typename Stream, BasicByte B, size_t N> void Serialize(Stream& s, const B (&a)[N])           { s.write(MakeByteSpan(a)); }
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__KT0_
Unexecuted instantiation: _Z9SerializeI10HashWriterTk9BasicBytehLm384EEvRT_RAT1__KT0_
256
8.11M
template <typename Stream, BasicByte B, 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
256
8.05M
template <typename Stream, BasicByte B, 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
256
5.66k
template <typename Stream, BasicByte B, 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
256
50.0k
template <typename Stream, BasicByte B, size_t N> void Serialize(Stream& s, const std::array<B, N>& a) { s.write(MakeByteSpan(a)); }
257
108M
template <typename Stream, BasicByte B, 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
257
6.44M
template <typename Stream, BasicByte B, 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
257
5.45M
template <typename Stream, BasicByte B, 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
257
7.20M
template <typename Stream, BasicByte B, 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
257
7.62M
template <typename Stream, BasicByte B, 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
257
50.3M
template <typename Stream, BasicByte B, 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
257
21.7k
template <typename Stream, BasicByte B, 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
257
218k
template <typename Stream, BasicByte B, 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
257
30.8M
template <typename Stream, BasicByte B, size_t N> void Serialize(Stream& s, std::span<B, N> span)      { s.write(std::as_bytes(span)); }
258
324k
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
258
10.1k
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
258
104k
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: _Z9SerializeI12SizeComputerTk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Unexecuted instantiation: _Z9SerializeI10HashWriterTk9BasicBytehEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
_Z9SerializeI10HashWriterTk9BasicByteKhEvRT_NSt3__14spanIT0_Lm18446744073709551615EEE
Line
Count
Source
258
104k
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
258
104k
template <typename Stream, BasicByte B>           void Serialize(Stream& s, std::span<B> span)         { s.write(std::as_bytes(span)); }
259
260
template <typename Stream, CharNotInt8 V> void Unserialize(Stream&, V) = delete; // char serialization forbidden. Use uint8_t or int8_t
261
0
template <typename Stream> void Unserialize(Stream& s, std::byte& a) { a = std::byte(ser_readdata8(s)); }
262
0
template <typename Stream> void Unserialize(Stream& s, int8_t& a)    { a = int8_t(ser_readdata8(s)); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Ra
Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Ra
Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Ra
263
16.0M
template <typename Stream> void Unserialize(Stream& s, uint8_t& a)   { a = ser_readdata8(s); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rh
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_Rh
Line
Count
Source
263
4.97M
template <typename Stream> void Unserialize(Stream& s, uint8_t& a)   { a = ser_readdata8(s); }
_Z11UnserializeI10DataStreamEvRT_Rh
Line
Count
Source
263
10.3M
template <typename Stream> 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
263
382k
template <typename Stream> void Unserialize(Stream& s, uint8_t& a)   { a = ser_readdata8(s); }
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEvRT_Rh
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEvRT_Rh
Line
Count
Source
263
311k
template <typename Stream> 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
264
0
template <typename Stream> void Unserialize(Stream& s, int16_t& a)   { a = int16_t(ser_readdata16(s)); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rs
Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rs
Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Rs
265
0
template <typename Stream> void Unserialize(Stream& s, uint16_t& a)  { a = ser_readdata16(s); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rt
Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rt
Unexecuted instantiation: _Z11UnserializeI10DataStreamEvRT_Rt
266
13.1M
template <typename Stream> void Unserialize(Stream& s, int32_t& a)   { a = int32_t(ser_readdata32(s)); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Ri
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_Ri
_Z11UnserializeI10DataStreamEvRT_Ri
Line
Count
Source
266
12.8M
template <typename Stream> void Unserialize(Stream& s, int32_t& a)   { a = int32_t(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
266
308k
template <typename Stream> void Unserialize(Stream& s, int32_t& a)   { a = int32_t(ser_readdata32(s)); }
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEvRT_Ri
267
66.3M
template <typename Stream> void Unserialize(Stream& s, uint32_t& a)  { a = ser_readdata32(s); }
_Z11UnserializeI8AutoFileEvRT_Rj
Line
Count
Source
267
308k
template <typename Stream> void Unserialize(Stream& s, uint32_t& a)  { a = ser_readdata32(s); }
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_Rj
Line
Count
Source
267
19.8M
template <typename Stream> void Unserialize(Stream& s, uint32_t& a)  { a = ser_readdata32(s); }
_Z11UnserializeI10DataStreamEvRT_Rj
Line
Count
Source
267
43.9M
template <typename Stream> void Unserialize(Stream& s, uint32_t& a)  { a = ser_readdata32(s); }
Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rj
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_Rj
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEvRT_Rj
Line
Count
Source
267
2.17M
template <typename Stream> 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
268
7.13M
template <typename Stream> void Unserialize(Stream& s, int64_t& a)   { a = int64_t(ser_readdata64(s)); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileEvRT_Rx
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEvRT_Rx
Line
Count
Source
268
6.32M
template <typename Stream> void Unserialize(Stream& s, int64_t& a)   { a = int64_t(ser_readdata64(s)); }
Unexecuted instantiation: _Z11UnserializeI12BufferedFileEvRT_Rx
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEvRT_Rx
_Z11UnserializeI10DataStreamEvRT_Rx
Line
Count
Source
268
191k
template <typename Stream> void Unserialize(Stream& s, int64_t& a)   { a = int64_t(ser_readdata64(s)); }
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEvRT_Rx
Line
Count
Source
268
619k
template <typename Stream> void Unserialize(Stream& s, int64_t& a)   { a = int64_t(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
269
1.61M
template <typename Stream> 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
269
1.61M
template <typename Stream> void Unserialize(Stream& s, uint64_t& a)  { a = ser_readdata64(s); }
270
271
13.8M
template <typename Stream, BasicByte B, size_t N> void Unserialize(Stream& s, B (&a)[N])            { s.read(MakeWritableByteSpan(a)); }
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_
_Z11UnserializeI10DataStreamTk9BasicBytehLm4EEvRT_RAT1__T0_
Line
Count
Source
271
6.84M
template <typename Stream, BasicByte B, size_t N> void Unserialize(Stream& s, B (&a)[N])            { s.read(MakeWritableByteSpan(a)); }
Unexecuted instantiation: _Z11UnserializeI10DataStreamTk9BasicBytehLm5EEvRT_RAT1__T0_
_Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_
Line
Count
Source
271
191k
template <typename Stream, BasicByte B, size_t N> void Unserialize(Stream& s, B (&a)[N])            { s.read(MakeWritableByteSpan(a)); }
_Z11UnserializeI10DataStreamTk9BasicBytecLm12EEvRT_RAT1__T0_
Line
Count
Source
271
6.84M
template <typename Stream, BasicByte B, size_t N> void Unserialize(Stream& s, B (&a)[N])            { s.read(MakeWritableByteSpan(a)); }
Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytecLm368EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytecLm12EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytehLm20EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI8AutoFileTk9BasicBytehLm16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR8AutoFileN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFileN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI8AutoFileEN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIRS0_IR12HashVerifierI10DataStreamEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12HashVerifierI10DataStreamEN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamI10DataStreamN8CAddress9SerParamsEETk9BasicBytehLm16EEvRT_RAT1__T0_
272
7.20M
template <typename Stream, BasicByte B, size_t N> void Unserialize(Stream& s, std::array<B, N>& a)  { s.read(MakeWritableByteSpan(a)); }
_Z11UnserializeI10DataStreamTk9BasicBytehLm4EEvRT_RNSt3__15arrayIT0_XT1_EEE
Line
Count
Source
272
6.84M
template <typename Stream, BasicByte B, 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
272
308k
template <typename Stream, BasicByte B, 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
272
51.2k
template <typename Stream, BasicByte B, size_t N> void Unserialize(Stream& s, std::array<B, N>& a)  { s.read(MakeWritableByteSpan(a)); }
Unexecuted instantiation: _Z11UnserializeI12BufferedFileTk9BasicBytehLm4EEvRT_RNSt3__15arrayIT0_XT1_EEE
273
0
template <typename Stream, BasicByte B, size_t N> void Unserialize(Stream& s, std::span<B, N> span) { s.read(std::as_writable_bytes(span)); }
274
1.72M
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
274
1.34M
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
274
382k
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
275
276
567k
template <typename Stream> void Serialize(Stream& s, bool a)    { uint8_t f = a; ser_writedata8(s, f); }
Unexecuted instantiation: _Z9SerializeI8AutoFileEvRT_b
_Z9SerializeI12VectorWriterEvRT_b
Line
Count
Source
276
567k
template <typename Stream> void Serialize(Stream& s, bool a)    { uint8_t f = a; ser_writedata8(s, f); }
Unexecuted instantiation: _Z9SerializeI10DataStreamEvRT_b
Unexecuted instantiation: _Z9SerializeI10HashWriterEvRT_b
277
264k
template <typename Stream> 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
277
264k
template <typename Stream> void Unserialize(Stream& s, bool& a) { uint8_t f = ser_readdata8(s); a = f; }
278
// clang-format on
279
280
281
/**
282
 * Compact Size
283
 * size <  253        -- 1 byte
284
 * size <= USHRT_MAX  -- 3 bytes  (253 + 2 bytes)
285
 * size <= UINT_MAX   -- 5 bytes  (254 + 4 bytes)
286
 * size >  UINT_MAX   -- 9 bytes  (255 + 8 bytes)
287
 */
288
constexpr inline unsigned int GetSizeOfCompactSize(uint64_t nSize)
289
1.94M
{
290
1.94M
    if (nSize < 253)             return sizeof(unsigned char);
291
0
    else if (nSize <= std::numeric_limits<uint16_t>::max()) return sizeof(unsigned char) + sizeof(uint16_t);
292
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())  return sizeof(unsigned char) + sizeof(unsigned int);
293
0
    else                         return sizeof(unsigned char) + sizeof(uint64_t);
294
1.94M
}
295
296
inline void WriteCompactSize(SizeComputer& os, uint64_t nSize);
297
298
template<typename Stream>
299
void WriteCompactSize(Stream& os, uint64_t nSize)
300
251M
{
301
251M
    if (nSize < 253)
302
251M
    {
303
251M
        ser_writedata8(os, nSize);
304
251M
    }
305
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
306
0
    {
307
0
        ser_writedata8(os, 253);
308
0
        ser_writedata16(os, nSize);
309
0
    }
310
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
311
0
    {
312
0
        ser_writedata8(os, 254);
313
0
        ser_writedata32(os, nSize);
314
0
    }
315
0
    else
316
0
    {
317
0
        ser_writedata8(os, 255);
318
0
        ser_writedata64(os, nSize);
319
0
    }
320
251M
    return;
321
251M
}
_Z16WriteCompactSizeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEvRT_y
Line
Count
Source
300
28.6M
{
301
28.6M
    if (nSize < 253)
302
28.6M
    {
303
28.6M
        ser_writedata8(os, nSize);
304
28.6M
    }
305
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
306
0
    {
307
0
        ser_writedata8(os, 253);
308
0
        ser_writedata16(os, nSize);
309
0
    }
310
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
311
0
    {
312
0
        ser_writedata8(os, 254);
313
0
        ser_writedata32(os, nSize);
314
0
    }
315
0
    else
316
0
    {
317
0
        ser_writedata8(os, 255);
318
0
        ser_writedata64(os, nSize);
319
0
    }
320
28.6M
    return;
321
28.6M
}
Unexecuted instantiation: _Z16WriteCompactSizeI8AutoFileEvRT_y
_Z16WriteCompactSizeI12VectorWriterEvRT_y
Line
Count
Source
300
5.93M
{
301
5.93M
    if (nSize < 253)
302
5.93M
    {
303
5.93M
        ser_writedata8(os, nSize);
304
5.93M
    }
305
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
306
0
    {
307
0
        ser_writedata8(os, 253);
308
0
        ser_writedata16(os, nSize);
309
0
    }
310
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
311
0
    {
312
0
        ser_writedata8(os, 254);
313
0
        ser_writedata32(os, nSize);
314
0
    }
315
0
    else
316
0
    {
317
0
        ser_writedata8(os, 255);
318
0
        ser_writedata64(os, nSize);
319
0
    }
320
5.93M
    return;
321
5.93M
}
_Z16WriteCompactSizeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEvRT_y
Line
Count
Source
300
41.3M
{
301
41.3M
    if (nSize < 253)
302
41.3M
    {
303
41.3M
        ser_writedata8(os, nSize);
304
41.3M
    }
305
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
306
0
    {
307
0
        ser_writedata8(os, 253);
308
0
        ser_writedata16(os, nSize);
309
0
    }
310
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
311
0
    {
312
0
        ser_writedata8(os, 254);
313
0
        ser_writedata32(os, nSize);
314
0
    }
315
0
    else
316
0
    {
317
0
        ser_writedata8(os, 255);
318
0
        ser_writedata64(os, nSize);
319
0
    }
320
41.3M
    return;
321
41.3M
}
_Z16WriteCompactSizeI10DataStreamEvRT_y
Line
Count
Source
300
540k
{
301
540k
    if (nSize < 253)
302
540k
    {
303
540k
        ser_writedata8(os, nSize);
304
540k
    }
305
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
306
0
    {
307
0
        ser_writedata8(os, 253);
308
0
        ser_writedata16(os, nSize);
309
0
    }
310
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
311
0
    {
312
0
        ser_writedata8(os, 254);
313
0
        ser_writedata32(os, nSize);
314
0
    }
315
0
    else
316
0
    {
317
0
        ser_writedata8(os, 255);
318
0
        ser_writedata64(os, nSize);
319
0
    }
320
540k
    return;
321
540k
}
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
300
682k
{
301
682k
    if (nSize < 253)
302
682k
    {
303
682k
        ser_writedata8(os, nSize);
304
682k
    }
305
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
306
0
    {
307
0
        ser_writedata8(os, 253);
308
0
        ser_writedata16(os, nSize);
309
0
    }
310
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
311
0
    {
312
0
        ser_writedata8(os, 254);
313
0
        ser_writedata32(os, nSize);
314
0
    }
315
0
    else
316
0
    {
317
0
        ser_writedata8(os, 255);
318
0
        ser_writedata64(os, nSize);
319
0
    }
320
682k
    return;
321
682k
}
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
300
126k
{
301
126k
    if (nSize < 253)
302
126k
    {
303
126k
        ser_writedata8(os, nSize);
304
126k
    }
305
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
306
0
    {
307
0
        ser_writedata8(os, 253);
308
0
        ser_writedata16(os, nSize);
309
0
    }
310
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
311
0
    {
312
0
        ser_writedata8(os, 254);
313
0
        ser_writedata32(os, nSize);
314
0
    }
315
0
    else
316
0
    {
317
0
        ser_writedata8(os, 255);
318
0
        ser_writedata64(os, nSize);
319
0
    }
320
126k
    return;
321
126k
}
_Z16WriteCompactSizeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEvRT_y
Line
Count
Source
300
1.19M
{
301
1.19M
    if (nSize < 253)
302
1.19M
    {
303
1.19M
        ser_writedata8(os, nSize);
304
1.19M
    }
305
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
306
0
    {
307
0
        ser_writedata8(os, 253);
308
0
        ser_writedata16(os, nSize);
309
0
    }
310
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
311
0
    {
312
0
        ser_writedata8(os, 254);
313
0
        ser_writedata32(os, nSize);
314
0
    }
315
0
    else
316
0
    {
317
0
        ser_writedata8(os, 255);
318
0
        ser_writedata64(os, nSize);
319
0
    }
320
1.19M
    return;
321
1.19M
}
Unexecuted instantiation: _Z16WriteCompactSizeI12ParamsStreamIR8AutoFile20TransactionSerParamsEEvRT_y
_Z16WriteCompactSizeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEvRT_y
Line
Count
Source
300
172M
{
301
172M
    if (nSize < 253)
302
172M
    {
303
172M
        ser_writedata8(os, nSize);
304
172M
    }
305
0
    else if (nSize <= std::numeric_limits<uint16_t>::max())
306
0
    {
307
0
        ser_writedata8(os, 253);
308
0
        ser_writedata16(os, nSize);
309
0
    }
310
0
    else if (nSize <= std::numeric_limits<unsigned int>::max())
311
0
    {
312
0
        ser_writedata8(os, 254);
313
0
        ser_writedata32(os, nSize);
314
0
    }
315
0
    else
316
0
    {
317
0
        ser_writedata8(os, 255);
318
0
        ser_writedata64(os, nSize);
319
0
    }
320
172M
    return;
321
172M
}
322
323
/**
324
 * Decode a CompactSize-encoded variable-length integer.
325
 *
326
 * As these are primarily used to encode the size of vector-like serializations, by default a range
327
 * check is performed. When used as a generic number encoding, range_check should be set to false.
328
 */
329
template<typename Stream>
330
uint64_t ReadCompactSize(Stream& is, bool range_check = true)
331
45.9M
{
332
45.9M
    uint8_t chSize = ser_readdata8(is);
333
45.9M
    uint64_t nSizeRet = 0;
334
45.9M
    if (chSize < 253)
335
45.9M
    {
336
45.9M
        nSizeRet = chSize;
337
45.9M
    }
338
0
    else if (chSize == 253)
339
0
    {
340
0
        nSizeRet = ser_readdata16(is);
341
0
        if (nSizeRet < 253)
342
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
343
0
    }
344
0
    else if (chSize == 254)
345
0
    {
346
0
        nSizeRet = ser_readdata32(is);
347
0
        if (nSizeRet < 0x10000u)
348
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
349
0
    }
350
0
    else
351
0
    {
352
0
        nSizeRet = ser_readdata64(is);
353
0
        if (nSizeRet < 0x100000000ULL)
354
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
355
0
    }
356
45.9M
    if (range_check && nSizeRet > MAX_SIZE) {
357
0
        throw std::ios_base::failure("ReadCompactSize(): size too large");
358
0
    }
359
45.9M
    return nSizeRet;
360
45.9M
}
Unexecuted instantiation: _Z15ReadCompactSizeI8AutoFileEyRT_b
_Z15ReadCompactSizeI12ParamsStreamIR10DataStream20TransactionSerParamsEEyRT_b
Line
Count
Source
331
36.3M
{
332
36.3M
    uint8_t chSize = ser_readdata8(is);
333
36.3M
    uint64_t nSizeRet = 0;
334
36.3M
    if (chSize < 253)
335
36.3M
    {
336
36.3M
        nSizeRet = chSize;
337
36.3M
    }
338
0
    else if (chSize == 253)
339
0
    {
340
0
        nSizeRet = ser_readdata16(is);
341
0
        if (nSizeRet < 253)
342
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
343
0
    }
344
0
    else if (chSize == 254)
345
0
    {
346
0
        nSizeRet = ser_readdata32(is);
347
0
        if (nSizeRet < 0x10000u)
348
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
349
0
    }
350
0
    else
351
0
    {
352
0
        nSizeRet = ser_readdata64(is);
353
0
        if (nSizeRet < 0x100000000ULL)
354
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
355
0
    }
356
36.3M
    if (range_check && nSizeRet > MAX_SIZE) {
357
0
        throw std::ios_base::failure("ReadCompactSize(): size too large");
358
0
    }
359
36.3M
    return nSizeRet;
360
36.3M
}
_Z15ReadCompactSizeI10DataStreamEyRT_b
Line
Count
Source
331
5.80M
{
332
5.80M
    uint8_t chSize = ser_readdata8(is);
333
5.80M
    uint64_t nSizeRet = 0;
334
5.80M
    if (chSize < 253)
335
5.80M
    {
336
5.80M
        nSizeRet = chSize;
337
5.80M
    }
338
0
    else if (chSize == 253)
339
0
    {
340
0
        nSizeRet = ser_readdata16(is);
341
0
        if (nSizeRet < 253)
342
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
343
0
    }
344
0
    else if (chSize == 254)
345
0
    {
346
0
        nSizeRet = ser_readdata32(is);
347
0
        if (nSizeRet < 0x10000u)
348
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
349
0
    }
350
0
    else
351
0
    {
352
0
        nSizeRet = ser_readdata64(is);
353
0
        if (nSizeRet < 0x100000000ULL)
354
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
355
0
    }
356
5.80M
    if (range_check && nSizeRet > MAX_SIZE) {
357
0
        throw std::ios_base::failure("ReadCompactSize(): size too large");
358
0
    }
359
5.80M
    return nSizeRet;
360
5.80M
}
Unexecuted instantiation: _Z15ReadCompactSizeI12BufferedFileEyRT_b
_Z15ReadCompactSizeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEyRT_b
Line
Count
Source
331
382k
{
332
382k
    uint8_t chSize = ser_readdata8(is);
333
382k
    uint64_t nSizeRet = 0;
334
382k
    if (chSize < 253)
335
382k
    {
336
382k
        nSizeRet = chSize;
337
382k
    }
338
0
    else if (chSize == 253)
339
0
    {
340
0
        nSizeRet = ser_readdata16(is);
341
0
        if (nSizeRet < 253)
342
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
343
0
    }
344
0
    else if (chSize == 254)
345
0
    {
346
0
        nSizeRet = ser_readdata32(is);
347
0
        if (nSizeRet < 0x10000u)
348
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
349
0
    }
350
0
    else
351
0
    {
352
0
        nSizeRet = ser_readdata64(is);
353
0
        if (nSizeRet < 0x100000000ULL)
354
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
355
0
    }
356
382k
    if (range_check && nSizeRet > MAX_SIZE) {
357
0
        throw std::ios_base::failure("ReadCompactSize(): size too large");
358
0
    }
359
382k
    return nSizeRet;
360
382k
}
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEEyRT_b
Unexecuted instantiation: _Z15ReadCompactSizeI10SpanReaderEyRT_b
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEEyRT_b
_Z15ReadCompactSizeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEyRT_b
Line
Count
Source
331
2.79M
{
332
2.79M
    uint8_t chSize = ser_readdata8(is);
333
2.79M
    uint64_t nSizeRet = 0;
334
2.79M
    if (chSize < 253)
335
2.79M
    {
336
2.79M
        nSizeRet = chSize;
337
2.79M
    }
338
0
    else if (chSize == 253)
339
0
    {
340
0
        nSizeRet = ser_readdata16(is);
341
0
        if (nSizeRet < 253)
342
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
343
0
    }
344
0
    else if (chSize == 254)
345
0
    {
346
0
        nSizeRet = ser_readdata32(is);
347
0
        if (nSizeRet < 0x10000u)
348
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
349
0
    }
350
0
    else
351
0
    {
352
0
        nSizeRet = ser_readdata64(is);
353
0
        if (nSizeRet < 0x100000000ULL)
354
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
355
0
    }
356
2.79M
    if (range_check && nSizeRet > MAX_SIZE) {
357
0
        throw std::ios_base::failure("ReadCompactSize(): size too large");
358
0
    }
359
2.79M
    return nSizeRet;
360
2.79M
}
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
331
615k
{
332
615k
    uint8_t chSize = ser_readdata8(is);
333
615k
    uint64_t nSizeRet = 0;
334
615k
    if (chSize < 253)
335
615k
    {
336
615k
        nSizeRet = chSize;
337
615k
    }
338
0
    else if (chSize == 253)
339
0
    {
340
0
        nSizeRet = ser_readdata16(is);
341
0
        if (nSizeRet < 253)
342
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
343
0
    }
344
0
    else if (chSize == 254)
345
0
    {
346
0
        nSizeRet = ser_readdata32(is);
347
0
        if (nSizeRet < 0x10000u)
348
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
349
0
    }
350
0
    else
351
0
    {
352
0
        nSizeRet = ser_readdata64(is);
353
0
        if (nSizeRet < 0x100000000ULL)
354
0
            throw std::ios_base::failure("non-canonical ReadCompactSize()");
355
0
    }
356
615k
    if (range_check && nSizeRet > MAX_SIZE) {
357
0
        throw std::ios_base::failure("ReadCompactSize(): size too large");
358
0
    }
359
615k
    return nSizeRet;
360
615k
}
Unexecuted instantiation: _Z15ReadCompactSizeI12ParamsStreamIR12BufferedFile20TransactionSerParamsEEyRT_b
361
362
/**
363
 * Variable-length integers: bytes are a MSB base-128 encoding of the number.
364
 * The high bit in each byte signifies whether another digit follows. To make
365
 * sure the encoding is one-to-one, one is subtracted from all but the last digit.
366
 * Thus, the byte sequence a[] with length len, where all but the last byte
367
 * has bit 128 set, encodes the number:
368
 *
369
 *  (a[len-1] & 0x7F) + sum(i=1..len-1, 128^i*((a[len-i-1] & 0x7F)+1))
370
 *
371
 * Properties:
372
 * * Very small (0-127: 1 byte, 128-16511: 2 bytes, 16512-2113663: 3 bytes)
373
 * * Every integer has exactly one encoding
374
 * * Encoding does not depend on size of original integer type
375
 * * No redundancy: every (infinite) byte sequence corresponds to a list
376
 *   of encoded integers.
377
 *
378
 * 0:         [0x00]  256:        [0x81 0x00]
379
 * 1:         [0x01]  16383:      [0xFE 0x7F]
380
 * 127:       [0x7F]  16384:      [0xFF 0x00]
381
 * 128:  [0x80 0x00]  16511:      [0xFF 0x7F]
382
 * 255:  [0x80 0x7F]  65535: [0x82 0xFE 0x7F]
383
 * 2^32:           [0x8E 0xFE 0xFE 0xFF 0x00]
384
 */
385
386
/**
387
 * Mode for encoding VarInts.
388
 *
389
 * Currently there is no support for signed encodings. The default mode will not
390
 * compile with signed values, and the legacy "nonnegative signed" mode will
391
 * accept signed values, but improperly encode and decode them if they are
392
 * negative. In the future, the DEFAULT mode could be extended to support
393
 * negative numbers in a backwards compatible way, and additional modes could be
394
 * added to support different varint formats (e.g. zigzag encoding).
395
 */
396
enum class VarIntMode { DEFAULT, NONNEGATIVE_SIGNED };
397
398
template <VarIntMode Mode, typename I>
399
struct CheckVarIntMode {
400
    constexpr CheckVarIntMode()
401
79.0M
    {
402
79.0M
        static_assert(Mode != VarIntMode::DEFAULT || std::is_unsigned_v<I>, "Unsigned type required with mode DEFAULT.");
403
79.0M
        static_assert(Mode != VarIntMode::NONNEGATIVE_SIGNED || std::is_signed_v<I>, "Signed type required with mode NONNEGATIVE_SIGNED.");
404
79.0M
    }
_ZN15CheckVarIntModeIL10VarIntMode0EjEC2Ev
Line
Count
Source
401
46.3M
    {
402
46.3M
        static_assert(Mode != VarIntMode::DEFAULT || std::is_unsigned_v<I>, "Unsigned type required with mode DEFAULT.");
403
46.3M
        static_assert(Mode != VarIntMode::NONNEGATIVE_SIGNED || std::is_signed_v<I>, "Signed type required with mode NONNEGATIVE_SIGNED.");
404
46.3M
    }
_ZN15CheckVarIntModeIL10VarIntMode0EyEC2Ev
Line
Count
Source
401
1.77M
    {
402
1.77M
        static_assert(Mode != VarIntMode::DEFAULT || std::is_unsigned_v<I>, "Unsigned type required with mode DEFAULT.");
403
1.77M
        static_assert(Mode != VarIntMode::NONNEGATIVE_SIGNED || std::is_signed_v<I>, "Signed type required with mode NONNEGATIVE_SIGNED.");
404
1.77M
    }
_ZN15CheckVarIntModeIL10VarIntMode1EiEC2Ev
Line
Count
Source
401
30.9M
    {
402
30.9M
        static_assert(Mode != VarIntMode::DEFAULT || std::is_unsigned_v<I>, "Unsigned type required with mode DEFAULT.");
403
30.9M
        static_assert(Mode != VarIntMode::NONNEGATIVE_SIGNED || std::is_signed_v<I>, "Signed type required with mode NONNEGATIVE_SIGNED.");
404
30.9M
    }
405
};
406
407
template<VarIntMode Mode, typename I>
408
inline unsigned int GetSizeOfVarInt(I n)
409
{
410
    CheckVarIntMode<Mode, I>();
411
    int nRet = 0;
412
    while(true) {
413
        nRet++;
414
        if (n <= 0x7F)
415
            break;
416
        n = (n >> 7) - 1;
417
    }
418
    return nRet;
419
}
420
421
template<typename I>
422
inline void WriteVarInt(SizeComputer& os, I n);
423
424
template<typename Stream, VarIntMode Mode, typename I>
425
void WriteVarInt(Stream& os, I n)
426
2.58M
{
427
2.58M
    CheckVarIntMode<Mode, I>();
428
2.58M
    unsigned char tmp[(sizeof(n)*8+6)/7];
429
2.58M
    int len=0;
430
3.41M
    while(true) {
431
3.41M
        tmp[len] = (n & 0x7F) | (len ? 
0x80833k
:
0x002.58M
);
432
3.41M
        if (n <= 0x7F)
433
2.58M
            break;
434
833k
        n = (n >> 7) - 1;
435
833k
        len++;
436
833k
    }
437
3.41M
    do {
438
3.41M
        ser_writedata8(os, tmp[len]);
439
3.41M
    } while(len--);
440
2.58M
}
Unexecuted instantiation: _Z11WriteVarIntI12VectorWriterL10VarIntMode1EiEvRT_T1_
Unexecuted instantiation: _Z11WriteVarIntI12VectorWriterL10VarIntMode0EyEvRT_T1_
_Z11WriteVarIntI10DataStreamL10VarIntMode0EjEvRT_T1_
Line
Count
Source
426
1.59M
{
427
1.59M
    CheckVarIntMode<Mode, I>();
428
1.59M
    unsigned char tmp[(sizeof(n)*8+6)/7];
429
1.59M
    int len=0;
430
1.63M
    while(true) {
431
1.63M
        tmp[len] = (n & 0x7F) | (len ? 
0x8031.5k
:
0x001.59M
);
432
1.63M
        if (n <= 0x7F)
433
1.59M
            break;
434
31.5k
        n = (n >> 7) - 1;
435
31.5k
        len++;
436
31.5k
    }
437
1.63M
    do {
438
1.63M
        ser_writedata8(os, tmp[len]);
439
1.63M
    } while(len--);
440
1.59M
}
_Z11WriteVarIntI10DataStreamL10VarIntMode0EyEvRT_T1_
Line
Count
Source
426
13.9k
{
427
13.9k
    CheckVarIntMode<Mode, I>();
428
13.9k
    unsigned char tmp[(sizeof(n)*8+6)/7];
429
13.9k
    int len=0;
430
51.2k
    while(true) {
431
51.2k
        tmp[len] = (n & 0x7F) | (len ? 
0x8037.2k
:
0x0013.9k
);
432
51.2k
        if (n <= 0x7F)
433
13.9k
            break;
434
37.2k
        n = (n >> 7) - 1;
435
37.2k
        len++;
436
37.2k
    }
437
51.2k
    do {
438
51.2k
        ser_writedata8(os, tmp[len]);
439
51.2k
    } while(len--);
440
13.9k
}
_Z11WriteVarIntI10DataStreamL10VarIntMode1EiEvRT_T1_
Line
Count
Source
426
23.9k
{
427
23.9k
    CheckVarIntMode<Mode, I>();
428
23.9k
    unsigned char tmp[(sizeof(n)*8+6)/7];
429
23.9k
    int len=0;
430
55.2k
    while(true) {
431
55.2k
        tmp[len] = (n & 0x7F) | (len ? 
0x8031.3k
:
0x0023.9k
);
432
55.2k
        if (n <= 0x7F)
433
23.9k
            break;
434
31.3k
        n = (n >> 7) - 1;
435
31.3k
        len++;
436
31.3k
    }
437
55.2k
    do {
438
55.2k
        ser_writedata8(os, tmp[len]);
439
55.2k
    } while(len--);
440
23.9k
}
Unexecuted instantiation: _Z11WriteVarIntI8AutoFileL10VarIntMode0EjEvRT_T1_
Unexecuted instantiation: _Z11WriteVarIntI8AutoFileL10VarIntMode0EyEvRT_T1_
_Z11WriteVarIntI12SizeComputerL10VarIntMode0EjEvRT_T1_
Line
Count
Source
426
209k
{
427
209k
    CheckVarIntMode<Mode, I>();
428
209k
    unsigned char tmp[(sizeof(n)*8+6)/7];
429
209k
    int len=0;
430
277k
    while(true) {
431
277k
        tmp[len] = (n & 0x7F) | (len ? 
0x8067.7k
:
0x00209k
);
432
277k
        if (n <= 0x7F)
433
209k
            break;
434
67.7k
        n = (n >> 7) - 1;
435
67.7k
        len++;
436
67.7k
    }
437
277k
    do {
438
277k
        ser_writedata8(os, tmp[len]);
439
277k
    } while(len--);
440
209k
}
_Z11WriteVarIntI12SizeComputerL10VarIntMode0EyEvRT_T1_
Line
Count
Source
426
104k
{
427
104k
    CheckVarIntMode<Mode, I>();
428
104k
    unsigned char tmp[(sizeof(n)*8+6)/7];
429
104k
    int len=0;
430
281k
    while(true) {
431
281k
        tmp[len] = (n & 0x7F) | (len ? 
0x80176k
:
0x00104k
);
432
281k
        if (n <= 0x7F)
433
104k
            break;
434
176k
        n = (n >> 7) - 1;
435
176k
        len++;
436
176k
    }
437
281k
    do {
438
281k
        ser_writedata8(os, tmp[len]);
439
281k
    } while(len--);
440
104k
}
_Z11WriteVarIntI10HashWriterL10VarIntMode0EjEvRT_T1_
Line
Count
Source
426
209k
{
427
209k
    CheckVarIntMode<Mode, I>();
428
209k
    unsigned char tmp[(sizeof(n)*8+6)/7];
429
209k
    int len=0;
430
277k
    while(true) {
431
277k
        tmp[len] = (n & 0x7F) | (len ? 
0x8067.7k
:
0x00209k
);
432
277k
        if (n <= 0x7F)
433
209k
            break;
434
67.7k
        n = (n >> 7) - 1;
435
67.7k
        len++;
436
67.7k
    }
437
277k
    do {
438
277k
        ser_writedata8(os, tmp[len]);
439
277k
    } while(len--);
440
209k
}
_Z11WriteVarIntI10HashWriterL10VarIntMode0EyEvRT_T1_
Line
Count
Source
426
104k
{
427
104k
    CheckVarIntMode<Mode, I>();
428
104k
    unsigned char tmp[(sizeof(n)*8+6)/7];
429
104k
    int len=0;
430
281k
    while(true) {
431
281k
        tmp[len] = (n & 0x7F) | (len ? 
0x80176k
:
0x00104k
);
432
281k
        if (n <= 0x7F)
433
104k
            break;
434
176k
        n = (n >> 7) - 1;
435
176k
        len++;
436
176k
    }
437
281k
    do {
438
281k
        ser_writedata8(os, tmp[len]);
439
281k
    } while(len--);
440
104k
}
_Z11WriteVarIntI14BufferedWriterI8AutoFileEL10VarIntMode0EjEvRT_T1_
Line
Count
Source
426
209k
{
427
209k
    CheckVarIntMode<Mode, I>();
428
209k
    unsigned char tmp[(sizeof(n)*8+6)/7];
429
209k
    int len=0;
430
277k
    while(true) {
431
277k
        tmp[len] = (n & 0x7F) | (len ? 
0x8067.7k
:
0x00209k
);
432
277k
        if (n <= 0x7F)
433
209k
            break;
434
67.7k
        n = (n >> 7) - 1;
435
67.7k
        len++;
436
67.7k
    }
437
277k
    do {
438
277k
        ser_writedata8(os, tmp[len]);
439
277k
    } while(len--);
440
209k
}
_Z11WriteVarIntI14BufferedWriterI8AutoFileEL10VarIntMode0EyEvRT_T1_
Line
Count
Source
426
104k
{
427
104k
    CheckVarIntMode<Mode, I>();
428
104k
    unsigned char tmp[(sizeof(n)*8+6)/7];
429
104k
    int len=0;
430
281k
    while(true) {
431
281k
        tmp[len] = (n & 0x7F) | (len ? 
0x80176k
:
0x00104k
);
432
281k
        if (n <= 0x7F)
433
104k
            break;
434
176k
        n = (n >> 7) - 1;
435
176k
        len++;
436
176k
    }
437
281k
    do {
438
281k
        ser_writedata8(os, tmp[len]);
439
281k
    } while(len--);
440
104k
}
441
442
template<typename Stream, VarIntMode Mode, typename I>
443
I ReadVarInt(Stream& is)
444
76.4M
{
445
76.4M
    CheckVarIntMode<Mode, I>();
446
76.4M
    I n = 0;
447
140M
    while(true) {
448
140M
        unsigned char chData = ser_readdata8(is);
449
140M
        if (n > (std::numeric_limits<I>::max() >> 7)) {
450
0
           throw std::ios_base::failure("ReadVarInt(): size too large");
451
0
        }
452
140M
        n = (n << 7) | (chData & 0x7F);
453
140M
        if (chData & 0x80) {
454
63.7M
            if (n == std::numeric_limits<I>::max()) {
455
0
                throw std::ios_base::failure("ReadVarInt(): size too large");
456
0
            }
457
63.7M
            n++;
458
76.4M
        } else {
459
76.4M
            return n;
460
76.4M
        }
461
140M
    }
462
76.4M
}
_Z10ReadVarIntI10DataStreamL10VarIntMode0EjET1_RT_
Line
Count
Source
444
44.1M
{
445
44.1M
    CheckVarIntMode<Mode, I>();
446
44.1M
    I n = 0;
447
82.8M
    while(true) {
448
82.8M
        unsigned char chData = ser_readdata8(is);
449
82.8M
        if (n > (std::numeric_limits<I>::max() >> 7)) {
450
0
           throw std::ios_base::failure("ReadVarInt(): size too large");
451
0
        }
452
82.8M
        n = (n << 7) | (chData & 0x7F);
453
82.8M
        if (chData & 0x80) {
454
38.7M
            if (n == std::numeric_limits<I>::max()) {
455
0
                throw std::ios_base::failure("ReadVarInt(): size too large");
456
0
            }
457
38.7M
            n++;
458
44.1M
        } else {
459
44.1M
            return n;
460
44.1M
        }
461
82.8M
    }
462
44.1M
}
_Z10ReadVarIntI10DataStreamL10VarIntMode0EyET1_RT_
Line
Count
Source
444
1.44M
{
445
1.44M
    CheckVarIntMode<Mode, I>();
446
1.44M
    I n = 0;
447
2.16M
    while(true) {
448
2.16M
        unsigned char chData = ser_readdata8(is);
449
2.16M
        if (n > (std::numeric_limits<I>::max() >> 7)) {
450
0
           throw std::ios_base::failure("ReadVarInt(): size too large");
451
0
        }
452
2.16M
        n = (n << 7) | (chData & 0x7F);
453
2.16M
        if (chData & 0x80) {
454
717k
            if (n == std::numeric_limits<I>::max()) {
455
0
                throw std::ios_base::failure("ReadVarInt(): size too large");
456
0
            }
457
717k
            n++;
458
1.44M
        } else {
459
1.44M
            return n;
460
1.44M
        }
461
2.16M
    }
462
1.44M
}
_Z10ReadVarIntI10DataStreamL10VarIntMode1EiET1_RT_
Line
Count
Source
444
30.9M
{
445
30.9M
    CheckVarIntMode<Mode, I>();
446
30.9M
    I n = 0;
447
55.2M
    while(true) {
448
55.2M
        unsigned char chData = ser_readdata8(is);
449
55.2M
        if (n > (std::numeric_limits<I>::max() >> 7)) {
450
0
           throw std::ios_base::failure("ReadVarInt(): size too large");
451
0
        }
452
55.2M
        n = (n << 7) | (chData & 0x7F);
453
55.2M
        if (chData & 0x80) {
454
24.3M
            if (n == std::numeric_limits<I>::max()) {
455
0
                throw std::ios_base::failure("ReadVarInt(): size too large");
456
0
            }
457
24.3M
            n++;
458
30.9M
        } else {
459
30.9M
            return n;
460
30.9M
        }
461
55.2M
    }
462
30.9M
}
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_
463
464
/** Simple wrapper class to serialize objects using a formatter; used by Using(). */
465
template<typename Formatter, typename T>
466
class Wrapper
467
{
468
    static_assert(std::is_lvalue_reference_v<T>, "Wrapper needs an lvalue reference type T");
469
protected:
470
    T m_object;
471
public:
472
248M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
472
62.5M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
472
42.0M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEEC2ESB_
Line
Count
Source
472
20.5M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEEC2ESD_
Line
Count
Source
472
1.64M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEEC2ES9_
Line
Count
Source
472
10.5M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEEC2ES9_
Line
Count
Source
472
5.28M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEEC2ESA_
Line
Count
Source
472
5.28M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEEC2ESC_
Line
Count
Source
472
494k
    explicit Wrapper(T obj) : m_object(obj) {}
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEEC2ES9_
_ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERjEC2ES3_
Line
Count
Source
472
46.3M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERyEC2ES3_
Line
Count
Source
472
1.76M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VarIntFormatterIL10VarIntMode1EERiEC2ES3_
Line
Count
Source
472
30.9M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VarIntFormatterIL10VarIntMode1EERKiEC2ES4_
Line
Count
Source
472
13.4k
    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
472
1.66M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEC2ES7_
Line
Count
Source
472
1.66M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
472
1.59M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS4_9allocatorIyEEEEEC2ESA_
Line
Count
Source
472
1.59M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CBlockNS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
472
916k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI17AmountCompressionRxEC2ES1_
Line
Count
Source
472
1.34M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI17ScriptCompressionR7CScriptEC2ES2_
Line
Count
Source
472
1.34M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI16TxOutCompressionR6CTxOutEC2ES2_
Line
Count
Source
472
1.34M
    explicit Wrapper(T obj) : m_object(obj) {}
Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIjLb1EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEEC2ESB_
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb0EERyEC2ES2_
_ZN7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEC2ES3_
Line
Count
Source
472
384k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI20CompactSizeFormatterILb1EERmEC2ES2_
Line
Count
Source
472
382k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI19CustomUintFormatterILi2ELb1EERtEC2ES2_
Line
Count
Source
472
191k
    explicit Wrapper(T obj) : m_object(obj) {}
Unexecuted instantiation: _ZN7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNS3_8durationIxNS2_5ratioILl1ELl1EEEEEEEEC2ESB_
_ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEC2ES4_
Line
Count
Source
472
36.2k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERKyEC2ES4_
Line
Count
Source
472
3.79k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI20CompactSizeFormatterILb1EERtEC2ES2_
Line
Count
Source
472
1.41M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEC2ES6_
Line
Count
Source
472
1.41M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEEC2ES9_
Line
Count
Source
472
1.35M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERNSt3__16vectorIyNS4_9allocatorIyEEEEEC2ES9_
Line
Count
Source
472
1.35M
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
472
76.2k
    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
472
324k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI17ScriptCompressionRK7CScriptEC2ES3_
Line
Count
Source
472
324k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI16TxOutCompressionRK6CTxOutEC2ES3_
Line
Count
Source
472
324k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
472
314k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEEC2ES9_
Line
Count
Source
472
615k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEEC2ESA_
Line
Count
Source
472
65.3k
    explicit Wrapper(T obj) : m_object(obj) {}
Unexecuted instantiation: _ZN7WrapperI20CompactSizeFormatterILb1EERKmEC2ES3_
_ZN7WrapperI19CustomUintFormatterILi2ELb1EERKtEC2ES3_
Line
Count
Source
472
769k
    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
472
16.5k
    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
472
526k
    explicit Wrapper(T obj) : m_object(obj) {}
_ZN7WrapperI22LimitedStringFormatterILm256EERNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEC2ES9_
Line
Count
Source
472
190k
    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_
473
139M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
473
7.28M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
473
5.60M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
473
1.68M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEEEvRT_
Line
Count
Source
473
422k
    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
473
1.59M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
473
1.59M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI20CompactSizeFormatterILb1EERKtE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
473
1.66M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
473
1.66M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
473
10.7M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
473
5.37M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
473
5.37M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
473
1.19M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CBlockNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
473
916k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERKjE9SerializeI10DataStreamEEvRT_
Line
Count
Source
473
36.2k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERKyE9SerializeI10DataStreamEEvRT_
Line
Count
Source
473
3.79k
    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
473
4.58k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode1EERKiE9SerializeI10DataStreamEEvRT_
Line
Count
Source
473
13.4k
    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
473
1.56M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI16TxOutCompressionRK6CTxOutE9SerializeI10DataStreamEEvRT_
Line
Count
Source
473
10.1k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17AmountCompressionRKxE9SerializeI10DataStreamEEvRT_
Line
Count
Source
473
10.1k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERyE9SerializeI10DataStreamEEvRT_
Line
Count
Source
473
10.1k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17ScriptCompressionRK7CScriptE9SerializeI10DataStreamEEvRT_
Line
Count
Source
473
10.1k
    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
473
10.4k
    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
473
192k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
Unexecuted instantiation: _ZNK7WrapperI20CompactSizeFormatterILb1EERKmE9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEEvRT_
_ZNK7WrapperI19CustomUintFormatterILi2ELb1EERKtE9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEEEvRT_
Line
Count
Source
473
769k
    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
473
526k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
473
71.6k
    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
473
16.5k
    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
473
21.7k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERjE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
473
209k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI16TxOutCompressionRK6CTxOutE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17AmountCompressionRKxE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERyE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17ScriptCompressionRK7CScriptE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEE9SerializeI10HashWriterEEvRT_
Line
Count
Source
473
21.7k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEE9SerializeI10HashWriterEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERjE9SerializeI10HashWriterEEvRT_
Line
Count
Source
473
209k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI16TxOutCompressionRK6CTxOutE9SerializeI10HashWriterEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17AmountCompressionRKxE9SerializeI10HashWriterEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERyE9SerializeI10HashWriterEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17ScriptCompressionRK7CScriptE9SerializeI10HashWriterEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
473
21.7k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERjE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
473
209k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI16TxOutCompressionRK6CTxOutE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17AmountCompressionRKxE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VarIntFormatterIL10VarIntMode0EERyE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI17ScriptCompressionRK7CScriptE9SerializeI14BufferedWriterI8AutoFileEEEvRT_
Line
Count
Source
473
104k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
473
28.2k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
473
324k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
473
162k
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEEEvRT_
Line
Count
Source
473
162k
    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
473
44.1M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
473
30.8M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
_ZNK7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEEEvRT_
Line
Count
Source
473
13.2M
    template<typename Stream> void Serialize(Stream &s) const { Formatter().Ser(s, m_object); }
474
109M
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
474
186k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
474
9.94M
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
474
4.97M
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
474
4.97M
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
Unexecuted instantiation: _ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEE11UnserializeI10DataStreamEEvRT_
_ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERjE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
474
44.1M
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VarIntFormatterIL10VarIntMode0EERyE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
474
1.44M
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VarIntFormatterIL10VarIntMode1EERiE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
474
30.9M
    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
474
1.34M
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI17AmountCompressionRxE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
474
1.34M
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI17ScriptCompressionR7CScriptE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
474
1.34M
    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
474
382k
    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
474
1.35M
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
474
1.35M
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI20CompactSizeFormatterILb1EERtE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
474
1.41M
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEE11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEEEvRT_
Line
Count
Source
474
1.41M
    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
474
191k
    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
474
622k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
474
311k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEEEvRT_
Line
Count
Source
474
311k
    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
474
191k
    template<typename Stream> void Unserialize(Stream &s) { Formatter().Unser(s, m_object); }
_ZN7WrapperI22LimitedStringFormatterILm256EERNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
474
190k
    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
474
615k
    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
474
308k
    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_
475
};
476
477
/** Cause serialization/deserialization of an object to be done using a specified formatter class.
478
 *
479
 * To use this, you need a class Formatter that has public functions Ser(stream, const object&) for
480
 * serialization, and Unser(stream, object&) for deserialization. Serialization routines (inside
481
 * READWRITE, or directly with << and >> operators), can then use Using<Formatter>(object).
482
 *
483
 * This works by constructing a Wrapper<Formatter, T>-wrapped version of object, where T is
484
 * const during serialization, and non-const during deserialization, which maintains const
485
 * correctness.
486
 */
487
template<typename Formatter, typename T>
488
248M
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
488
7.28M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
488
5.60M
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
488
1.68M
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
488
422k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Line
Count
Source
488
9.94M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
block.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Line
Count
Source
488
4.97M
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
488
4.97M
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
488
256k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
block_index.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERyE7WrapperIT_RT0_EOS6_
Line
Count
Source
488
102k
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
488
30.9M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
chain.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Line
Count
Source
488
41.1M
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
488
10.7M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
488
5.37M
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
488
5.37M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
cmpctblock.cpp:_ZL5UsingI20CompactSizeFormatterILb1EERKtE7WrapperIT_RT0_EOS6_
Line
Count
Source
488
1.66M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
cmpctblock.cpp:_ZL5UsingI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEE7WrapperIT_RT0_EOSA_
Line
Count
Source
488
1.66M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
488
1.59M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
cmpctblock.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS4_9allocatorIyEEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
488
1.59M
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
488
1.19M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
cmpctblock.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CBlockNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
488
916k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
coins_view.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Line
Count
Source
488
1.34M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
coins_view.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERyE7WrapperIT_RT0_EOS6_
Line
Count
Source
488
1.34M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
coins_view.cpp:_ZL5UsingI17AmountCompressionRxE7WrapperIT_RT0_EOS4_
Line
Count
Source
488
1.34M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
coins_view.cpp:_ZL5UsingI17ScriptCompressionR7CScriptE7WrapperIT_RT0_EOS5_
Line
Count
Source
488
1.34M
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
488
382k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI19CustomUintFormatterILi2ELb1EERtE7WrapperIT_RT0_EOS5_
Line
Count
Source
488
191k
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
488
20.3k
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
488
36.2k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERKyE7WrapperIT_RT0_EOS7_
Line
Count
Source
488
3.79k
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
488
1.41M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEE7WrapperIT_RT0_EOS9_
Line
Count
Source
488
1.41M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI20PrefilledTransactionNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Line
Count
Source
488
1.35M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERNSt3__16vectorIyNS4_9allocatorIyEEEEE7WrapperIT_RT0_EOSC_
Line
Count
Source
488
1.35M
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
488
10.4k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode1EERKiE7WrapperIT_RT0_EOS7_
Line
Count
Source
488
13.4k
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
488
10.1k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI17AmountCompressionRKxE7WrapperIT_RT0_EOS5_
Line
Count
Source
488
10.1k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI17ScriptCompressionRK7CScriptE7WrapperIT_RT0_EOS6_
Line
Count
Source
488
10.1k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
deserialize.cpp:_ZL5UsingI16TxOutCompressionRK6CTxOutE7WrapperIT_RT0_EOS6_
Line
Count
Source
488
10.1k
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: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSC_
Unexecuted instantiation: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS3_10shared_ptrIK12CTransactionEENS3_9allocatorIS8_EEEEE7WrapperIT_RT0_EOSF_
Unexecuted instantiation: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: merkle.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: merkle.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
488
622k
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
488
311k
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
488
311k
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
488
44.1M
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
transaction.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
488
30.8M
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
488
13.2M
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: 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: threadinterrupt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: threadinterrupt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Unexecuted instantiation: threadinterrupt.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS4_IhNS3_9allocatorIhEEEENS5_IS7_EEEEE7WrapperIT_RT0_EOSE_
Unexecuted instantiation: threadinterrupt.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
488
192k
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
488
384k
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: 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
488
2.64k
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
488
526k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
net_processing.cpp:_ZL5UsingI19CustomUintFormatterILi8ELb0EER12ServiceFlagsE7WrapperIT_RT0_EOS6_
Line
Count
Source
488
191k
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
488
190k
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
488
384k
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
488
71.6k
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
488
16.5k
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
488
186k
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
488
324k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
488
162k
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
488
162k
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
488
28.2k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EERjE7WrapperIT_RT0_EOS6_
Line
Count
Source
488
314k
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
488
615k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEjE7WrapperIT_RT0_EOS5_
Line
Count
Source
488
314k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI15VarIntFormatterIL10VarIntMode0EEyE7WrapperIT_RT0_EOS5_
Line
Count
Source
488
314k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI17AmountCompressionRKxE7WrapperIT_RT0_EOS5_
Line
Count
Source
488
314k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI17ScriptCompressionRK7CScriptE7WrapperIT_RT0_EOS6_
Line
Count
Source
488
314k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI16TxOutCompressionRK6CTxOutE7WrapperIT_RT0_EOS6_
Line
Count
Source
488
314k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
488
314k
static inline Wrapper<Formatter, T&> Using(T&& t) { return Wrapper<Formatter, T&>(t); }
blockstorage.cpp:_ZL5UsingI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEE7WrapperIT_RT0_EOSD_
Line
Count
Source
488
65.3k
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
488
308k
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: 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: 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
488
2.88M
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
488
1.34M
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
488
4.58k
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: 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_
489
490
0
#define VARINT_MODE(obj, mode) Using<VarIntFormatter<mode>>(obj)
491
4.99M
#define VARINT(obj) Using<VarIntFormatter<VarIntMode::DEFAULT>>(obj)
492
382k
#define COMPACTSIZE(obj) Using<CompactSizeFormatter<true>>(obj)
493
190k
#define LIMITED_STRING(obj,n) Using<LimitedStringFormatter<n>>(obj)
494
495
/** Serialization wrapper class for integers in VarInt format. */
496
template<VarIntMode Mode>
497
struct VarIntFormatter
498
{
499
    template<typename Stream, typename I> void Ser(Stream &s, I v)
500
2.58M
    {
501
2.58M
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
502
2.58M
    }
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode1EE3SerI12VectorWriteriEEvRT_T0_
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI12VectorWriteryEEvRT_T0_
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI10DataStreamjEEvRT_T0_
Line
Count
Source
500
1.59M
    {
501
1.59M
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
502
1.59M
    }
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI10DataStreamyEEvRT_T0_
Line
Count
Source
500
13.9k
    {
501
13.9k
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
502
13.9k
    }
_ZN15VarIntFormatterIL10VarIntMode1EE3SerI10DataStreamiEEvRT_T0_
Line
Count
Source
500
23.9k
    {
501
23.9k
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
502
23.9k
    }
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI8AutoFilejEEvRT_T0_
Unexecuted instantiation: _ZN15VarIntFormatterIL10VarIntMode0EE3SerI8AutoFileyEEvRT_T0_
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI12SizeComputerjEEvRT_T0_
Line
Count
Source
500
209k
    {
501
209k
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
502
209k
    }
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI12SizeComputeryEEvRT_T0_
Line
Count
Source
500
104k
    {
501
104k
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
502
104k
    }
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI10HashWriterjEEvRT_T0_
Line
Count
Source
500
209k
    {
501
209k
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
502
209k
    }
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI10HashWriteryEEvRT_T0_
Line
Count
Source
500
104k
    {
501
104k
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
502
104k
    }
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI14BufferedWriterI8AutoFileEjEEvRT_T0_
Line
Count
Source
500
209k
    {
501
209k
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
502
209k
    }
_ZN15VarIntFormatterIL10VarIntMode0EE3SerI14BufferedWriterI8AutoFileEyEEvRT_T0_
Line
Count
Source
500
104k
    {
501
104k
        WriteVarInt<Stream,Mode, std::remove_cv_t<I>>(s, v);
502
104k
    }
503
504
    template<typename Stream, typename I> void Unser(Stream& s, I& v)
505
76.4M
    {
506
76.4M
        v = ReadVarInt<Stream,Mode, std::remove_cv_t<I>>(s);
507
76.4M
    }
_ZN15VarIntFormatterIL10VarIntMode0EE5UnserI10DataStreamjEEvRT_RT0_
Line
Count
Source
505
44.1M
    {
506
44.1M
        v = ReadVarInt<Stream,Mode, std::remove_cv_t<I>>(s);
507
44.1M
    }
_ZN15VarIntFormatterIL10VarIntMode0EE5UnserI10DataStreamyEEvRT_RT0_
Line
Count
Source
505
1.44M
    {
506
1.44M
        v = ReadVarInt<Stream,Mode, std::remove_cv_t<I>>(s);
507
1.44M
    }
_ZN15VarIntFormatterIL10VarIntMode1EE5UnserI10DataStreamiEEvRT_RT0_
Line
Count
Source
505
30.9M
    {
506
30.9M
        v = ReadVarInt<Stream,Mode, std::remove_cv_t<I>>(s);
507
30.9M
    }
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_
508
};
509
510
/** Serialization wrapper class for custom integers and enums.
511
 *
512
 * It permits specifying the serialized size (1 to 8 bytes) and endianness.
513
 *
514
 * Use the big endian mode for values that are stored in memory in native
515
 * byte order, but serialized in big endian notation. This is only intended
516
 * to implement serializers that are compatible with existing formats, and
517
 * its use is not recommended for new data structures.
518
 */
519
template<int Bytes, bool BigEndian = false>
520
struct CustomUintFormatter
521
{
522
    static_assert(Bytes > 0 && Bytes <= 8, "CustomUintFormatter Bytes out of range");
523
    static constexpr uint64_t MAX = 0xffffffffffffffff >> (8 * (8 - Bytes));
524
525
    template <typename Stream, typename I> void Ser(Stream& s, I v)
526
12.6M
    {
527
12.6M
        if (v < 0 || v > MAX) 
throw std::ios_base::failure("CustomUintFormatter value out of range")0
;
528
12.6M
        if (BigEndian) {
529
769k
            uint64_t raw = htobe64_internal(v);
530
769k
            s.write(std::as_bytes(std::span{&raw, 1}).last(Bytes));
531
11.8M
        } else {
532
11.8M
            uint64_t raw = htole64_internal(v);
533
11.8M
            s.write(std::as_bytes(std::span{&raw, 1}).first(Bytes));
534
11.8M
        }
535
12.6M
    }
_ZN19CustomUintFormatterILi6ELb0EE3SerI12VectorWriteryEEvRT_T0_
Line
Count
Source
526
11.6M
    {
527
11.6M
        if (v < 0 || v > MAX) 
throw std::ios_base::failure("CustomUintFormatter value out of range")0
;
528
11.6M
        if (BigEndian) {
529
0
            uint64_t raw = htobe64_internal(v);
530
0
            s.write(std::as_bytes(std::span{&raw, 1}).last(Bytes));
531
11.6M
        } else {
532
11.6M
            uint64_t raw = htole64_internal(v);
533
11.6M
            s.write(std::as_bytes(std::span{&raw, 1}).first(Bytes));
534
11.6M
        }
535
11.6M
    }
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
526
192k
    {
527
192k
        if (v < 0 || v > MAX) 
throw std::ios_base::failure("CustomUintFormatter value out of range")0
;
528
192k
        if (BigEndian) {
529
0
            uint64_t raw = htobe64_internal(v);
530
0
            s.write(std::as_bytes(std::span{&raw, 1}).last(Bytes));
531
192k
        } else {
532
192k
            uint64_t raw = htole64_internal(v);
533
192k
            s.write(std::as_bytes(std::span{&raw, 1}).first(Bytes));
534
192k
        }
535
192k
    }
_ZN19CustomUintFormatterILi2ELb1EE3SerI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEtEEvRT_T0_
Line
Count
Source
526
769k
    {
527
769k
        if (v < 0 || v > MAX) 
throw std::ios_base::failure("CustomUintFormatter value out of range")0
;
528
769k
        if (BigEndian) {
529
769k
            uint64_t raw = htobe64_internal(v);
530
769k
            s.write(std::as_bytes(std::span{&raw, 1}).last(Bytes));
531
769k
        } else {
532
0
            uint64_t raw = htole64_internal(v);
533
0
            s.write(std::as_bytes(std::span{&raw, 1}).first(Bytes));
534
0
        }
535
769k
    }
Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE3SerI12ParamsStreamIR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEE12ServiceFlagsEEvRT_T0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE3SerI12ParamsStreamIRS2_IR18HashedSourceWriterI8AutoFileEN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_T0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi6ELb0EE3SerI12SizeComputeryEEvRT_T0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE3SerI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEE12ServiceFlagsEEvRT_T0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE3SerI12ParamsStreamIRS2_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_T0_
536
537
    template <typename Stream, typename I> void Unser(Stream& s, I& v)
538
10.4M
    {
539
10.4M
        using U = typename std::conditional_t<std::is_enum_v<I>, std::underlying_type<I>, std::common_type<I>>::type;
540
10.4M
        static_assert(std::numeric_limits<U>::max() >= MAX && std::numeric_limits<U>::min() <= 0, "Assigned type too small");
541
10.4M
        uint64_t raw = 0;
542
10.4M
        if (BigEndian) {
543
191k
            s.read(std::as_writable_bytes(std::span{&raw, 1}).last(Bytes));
544
191k
            v = static_cast<I>(be64toh_internal(raw));
545
10.2M
        } else {
546
10.2M
            s.read(std::as_writable_bytes(std::span{&raw, 1}).first(Bytes));
547
10.2M
            v = static_cast<I>(le64toh_internal(raw));
548
10.2M
        }
549
10.4M
    }
Unexecuted instantiation: _ZN19CustomUintFormatterILi8ELb0EE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE12ServiceFlagsEEvRT_RT0_
Unexecuted instantiation: _ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamIRS2_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEtEEvRT_RT0_
_ZN19CustomUintFormatterILi6ELb0EE5UnserI10DataStreamyEEvRT_RT0_
Line
Count
Source
538
10.0M
    {
539
10.0M
        using U = typename std::conditional_t<std::is_enum_v<I>, std::underlying_type<I>, std::common_type<I>>::type;
540
10.0M
        static_assert(std::numeric_limits<U>::max() >= MAX && std::numeric_limits<U>::min() <= 0, "Assigned type too small");
541
10.0M
        uint64_t raw = 0;
542
10.0M
        if (BigEndian) {
543
0
            s.read(std::as_writable_bytes(std::span{&raw, 1}).last(Bytes));
544
0
            v = static_cast<I>(be64toh_internal(raw));
545
10.0M
        } else {
546
10.0M
            s.read(std::as_writable_bytes(std::span{&raw, 1}).first(Bytes));
547
10.0M
            v = static_cast<I>(le64toh_internal(raw));
548
10.0M
        }
549
10.0M
    }
_ZN19CustomUintFormatterILi2ELb1EE5UnserI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEEtEEvRT_RT0_
Line
Count
Source
538
191k
    {
539
191k
        using U = typename std::conditional_t<std::is_enum_v<I>, std::underlying_type<I>, std::common_type<I>>::type;
540
191k
        static_assert(std::numeric_limits<U>::max() >= MAX && std::numeric_limits<U>::min() <= 0, "Assigned type too small");
541
191k
        uint64_t raw = 0;
542
191k
        if (BigEndian) {
543
191k
            s.read(std::as_writable_bytes(std::span{&raw, 1}).last(Bytes));
544
191k
            v = static_cast<I>(be64toh_internal(raw));
545
191k
        } else {
546
0
            s.read(std::as_writable_bytes(std::span{&raw, 1}).first(Bytes));
547
0
            v = static_cast<I>(le64toh_internal(raw));
548
0
        }
549
191k
    }
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
538
191k
    {
539
191k
        using U = typename std::conditional_t<std::is_enum_v<I>, std::underlying_type<I>, std::common_type<I>>::type;
540
191k
        static_assert(std::numeric_limits<U>::max() >= MAX && std::numeric_limits<U>::min() <= 0, "Assigned type too small");
541
191k
        uint64_t raw = 0;
542
191k
        if (BigEndian) {
543
0
            s.read(std::as_writable_bytes(std::span{&raw, 1}).last(Bytes));
544
0
            v = static_cast<I>(be64toh_internal(raw));
545
191k
        } else {
546
191k
            s.read(std::as_writable_bytes(std::span{&raw, 1}).first(Bytes));
547
191k
            v = static_cast<I>(le64toh_internal(raw));
548
191k
        }
549
191k
    }
550
};
551
552
template<int Bytes> using BigEndianFormatter = CustomUintFormatter<Bytes, true>;
553
554
/** Formatter for integers in CompactSize format. */
555
template<bool RangeCheck>
556
struct CompactSizeFormatter
557
{
558
    template<typename Stream, typename I>
559
    void Unser(Stream& s, I& v)
560
1.79M
    {
561
1.79M
        uint64_t n = ReadCompactSize<Stream>(s, RangeCheck);
562
1.79M
        if (n < std::numeric_limits<I>::min() || n > std::numeric_limits<I>::max()) {
563
0
            throw std::ios_base::failure("CompactSize exceeds limit of type");
564
0
        }
565
1.79M
        v = n;
566
1.79M
    }
Unexecuted instantiation: _ZN20CompactSizeFormatterILb0EE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEyEEvRT_RT0_
Unexecuted instantiation: _ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIRS2_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEEmEEvRT_RT0_
_ZN20CompactSizeFormatterILb1EE5UnserI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEmEEvRT_RT0_
Line
Count
Source
560
382k
    {
561
382k
        uint64_t n = ReadCompactSize<Stream>(s, RangeCheck);
562
382k
        if (n < std::numeric_limits<I>::min() || n > std::numeric_limits<I>::max()) {
563
0
            throw std::ios_base::failure("CompactSize exceeds limit of type");
564
0
        }
565
382k
        v = n;
566
382k
    }
_ZN20CompactSizeFormatterILb1EE5UnserI10DataStreamtEEvRT_RT0_
Line
Count
Source
560
1.41M
    {
561
1.41M
        uint64_t n = ReadCompactSize<Stream>(s, RangeCheck);
562
1.41M
        if (n < std::numeric_limits<I>::min() || n > std::numeric_limits<I>::max()) {
563
0
            throw std::ios_base::failure("CompactSize exceeds limit of type");
564
0
        }
565
1.41M
        v = n;
566
1.41M
    }
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_
567
568
    template<typename Stream, typename I>
569
    void Ser(Stream& s, I v)
570
1.66M
    {
571
1.66M
        static_assert(std::is_unsigned_v<I>, "CompactSize only supported for unsigned integers");
572
1.66M
        static_assert(std::numeric_limits<I>::max() <= std::numeric_limits<uint64_t>::max(), "CompactSize only supports 64-bit integers and below");
573
574
1.66M
        WriteCompactSize<Stream>(s, v);
575
1.66M
    }
_ZN20CompactSizeFormatterILb1EE3SerI12VectorWritertEEvRT_T0_
Line
Count
Source
570
1.66M
    {
571
1.66M
        static_assert(std::is_unsigned_v<I>, "CompactSize only supported for unsigned integers");
572
1.66M
        static_assert(std::numeric_limits<I>::max() <= std::numeric_limits<uint64_t>::max(), "CompactSize only supports 64-bit integers and below");
573
574
1.66M
        WriteCompactSize<Stream>(s, v);
575
1.66M
    }
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_
576
};
577
578
template <typename U, bool LOSSY = false>
579
struct ChronoFormatter {
580
    template <typename Stream, typename Tp>
581
    void Unser(Stream& s, Tp& tp)
582
0
    {
583
0
        U u;
584
0
        s >> u;
585
        // Lossy deserialization does not make sense, so force Wnarrowing
586
0
        tp = Tp{typename Tp::duration{typename Tp::duration::rep{u}}};
587
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_
588
    template <typename Stream, typename Tp>
589
    void Ser(Stream& s, Tp tp)
590
0
    {
591
0
        if constexpr (LOSSY) {
592
0
            s << U(tp.time_since_epoch().count());
593
0
        } else {
594
0
            s << U{tp.time_since_epoch().count()};
595
0
        }
596
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_
597
};
598
template <typename U>
599
using LossyChronoFormatter = ChronoFormatter<U, true>;
600
601
class CompactSizeWriter
602
{
603
protected:
604
    uint64_t n;
605
public:
606
0
    explicit CompactSizeWriter(uint64_t n_in) : n(n_in) { }
607
608
    template<typename Stream>
609
0
    void Serialize(Stream &s) const {
610
0
        WriteCompactSize<Stream>(s, n);
611
0
    }
Unexecuted instantiation: _ZNK17CompactSizeWriter9SerializeI12SizeComputerEEvRT_
Unexecuted instantiation: _ZNK17CompactSizeWriter9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK17CompactSizeWriter9SerializeI10HashWriterEEvRT_
612
};
613
614
template<size_t Limit>
615
struct LimitedStringFormatter
616
{
617
    template<typename Stream>
618
    void Unser(Stream& s, std::string& v)
619
190k
    {
620
190k
        size_t size = ReadCompactSize(s);
621
190k
        if (size > Limit) {
622
0
            throw std::ios_base::failure("String length limit exceeded");
623
0
        }
624
190k
        v.resize(size);
625
190k
        if (size != 0) 
s.read(MakeWritableByteSpan(v))0
;
626
190k
    }
Unexecuted instantiation: _ZN22LimitedStringFormatterILm10EE5UnserI10DataStreamEEvRT_RNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE
_ZN22LimitedStringFormatterILm256EE5UnserI10DataStreamEEvRT_RNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE
Line
Count
Source
619
190k
    {
620
190k
        size_t size = ReadCompactSize(s);
621
190k
        if (size > Limit) {
622
0
            throw std::ios_base::failure("String length limit exceeded");
623
0
        }
624
190k
        v.resize(size);
625
190k
        if (size != 0) 
s.read(MakeWritableByteSpan(v))0
;
626
190k
    }
627
628
    template<typename Stream>
629
    void Ser(Stream& s, const std::string& v)
630
0
    {
631
0
        s << v;
632
0
    }
633
};
634
635
/** Formatter to serialize/deserialize vector elements using another formatter
636
 *
637
 * Example:
638
 *   struct X {
639
 *     std::vector<uint64_t> v;
640
 *     SERIALIZE_METHODS(X, obj) { READWRITE(Using<VectorFormatter<VarInt>>(obj.v)); }
641
 *   };
642
 * will define a struct that contains a vector of uint64_t, which is serialized
643
 * as a vector of VarInt-encoded integers.
644
 *
645
 * V is not required to be an std::vector type. It works for any class that
646
 * exposes a value_type, size, reserve, emplace_back, back, and const iterators.
647
 */
648
template<class Formatter>
649
struct VectorFormatter
650
{
651
    template<typename Stream, typename V>
652
    void Ser(Stream& s, const V& v)
653
131M
    {
654
131M
        Formatter formatter;
655
131M
        WriteCompactSize(s, v.size());
656
134M
        for (const typename V::value_type& elem : v) {
657
134M
            formatter.Ser(s, elem);
658
134M
        }
659
131M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__16vectorI5CTxInNS8_9allocatorISA_EEEEEEvRT_RKT0_
Line
Count
Source
653
7.28M
    {
654
7.28M
        Formatter formatter;
655
7.28M
        WriteCompactSize(s, v.size());
656
7.28M
        for (const typename V::value_type& elem : v) {
657
5.60M
            formatter.Ser(s, elem);
658
5.60M
        }
659
7.28M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__16vectorI6CTxOutNS8_9allocatorISA_EEEEEEvRT_RKT0_
Line
Count
Source
653
5.60M
    {
654
5.60M
        Formatter formatter;
655
5.60M
        WriteCompactSize(s, v.size());
656
6.36M
        for (const typename V::value_type& elem : v) {
657
6.36M
            formatter.Ser(s, elem);
658
6.36M
        }
659
5.60M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__16vectorINS9_IhNS8_9allocatorIhEEEENSA_ISC_EEEEEEvRT_RKT0_
Line
Count
Source
653
1.68M
    {
654
1.68M
        Formatter formatter;
655
1.68M
        WriteCompactSize(s, v.size());
656
1.68M
        for (const typename V::value_type& elem : v) {
657
1.68M
            formatter.Ser(s, elem);
658
1.68M
        }
659
1.68M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEvRT_RKT0_
Line
Count
Source
653
422k
    {
654
422k
        Formatter formatter;
655
422k
        WriteCompactSize(s, v.size());
656
967k
        for (const typename V::value_type& elem : v) {
657
967k
            formatter.Ser(s, elem);
658
967k
        }
659
422k
    }
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12SizeComputerNSt3__16vectorINS5_IhNS4_9allocatorIhEEEENS6_IS8_EEEEEEvRT_RKT0_
_ZN15VectorFormatterI19CustomUintFormatterILi6ELb0EEE3SerI12VectorWriterNSt3__16vectorIyNS5_9allocatorIyEEEEEEvRT_RKT0_
Line
Count
Source
653
1.59M
    {
654
1.59M
        Formatter formatter;
655
1.59M
        WriteCompactSize(s, v.size());
656
11.6M
        for (const typename V::value_type& elem : v) {
657
11.6M
            formatter.Ser(s, elem);
658
11.6M
        }
659
1.59M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12VectorWriterNSt3__16vectorI20PrefilledTransactionNS4_9allocatorIS6_EEEEEEvRT_RKT0_
Line
Count
Source
653
1.59M
    {
654
1.59M
        Formatter formatter;
655
1.59M
        WriteCompactSize(s, v.size());
656
1.66M
        for (const typename V::value_type& elem : v) {
657
1.66M
            formatter.Ser(s, elem);
658
1.66M
        }
659
1.59M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorI5CTxInNS8_9allocatorISA_EEEEEEvRT_RKT0_
Line
Count
Source
653
10.7M
    {
654
10.7M
        Formatter formatter;
655
10.7M
        WriteCompactSize(s, v.size());
656
10.7M
        for (const typename V::value_type& elem : v) {
657
5.37M
            formatter.Ser(s, elem);
658
5.37M
        }
659
10.7M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorI6CTxOutNS8_9allocatorISA_EEEEEEvRT_RKT0_
Line
Count
Source
653
5.37M
    {
654
5.37M
        Formatter formatter;
655
5.37M
        WriteCompactSize(s, v.size());
656
6.97M
        for (const typename V::value_type& elem : v) {
657
6.97M
            formatter.Ser(s, elem);
658
6.97M
        }
659
5.37M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorINS9_IhNS8_9allocatorIhEEEENSA_ISC_EEEEEEvRT_RKT0_
Line
Count
Source
653
5.37M
    {
654
5.37M
        Formatter formatter;
655
5.37M
        WriteCompactSize(s, v.size());
656
5.37M
        for (const typename V::value_type& elem : v) {
657
5.37M
            formatter.Ser(s, elem);
658
5.37M
        }
659
5.37M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEvRT_RKT0_
Line
Count
Source
653
1.19M
    {
654
1.19M
        Formatter formatter;
655
1.19M
        WriteCompactSize(s, v.size());
656
1.19M
        for (const typename V::value_type& elem : v) {
657
23.9k
            formatter.Ser(s, elem);
658
23.9k
        }
659
1.19M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorI6CBlockNS8_9allocatorISA_EEEEEEvRT_RKT0_
Line
Count
Source
653
916k
    {
654
916k
        Formatter formatter;
655
916k
        WriteCompactSize(s, v.size());
656
916k
        for (const typename V::value_type& elem : v) {
657
916k
            formatter.Ser(s, elem);
658
916k
        }
659
916k
    }
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
653
4.58k
    {
654
4.58k
        Formatter formatter;
655
4.58k
        WriteCompactSize(s, v.size());
656
9.16k
        for (const typename V::value_type& elem : v) {
657
9.16k
            formatter.Ser(s, elem);
658
9.16k
        }
659
4.58k
    }
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
653
526k
    {
654
526k
        Formatter formatter;
655
526k
        WriteCompactSize(s, v.size());
656
534k
        for (const typename V::value_type& elem : v) {
657
534k
            formatter.Ser(s, elem);
658
534k
        }
659
526k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12VectorWriterNSt3__16vectorI7uint256NS4_9allocatorIS6_EEEEEEvRT_RKT0_
Line
Count
Source
653
71.6k
    {
654
71.6k
        Formatter formatter;
655
71.6k
        WriteCompactSize(s, v.size());
656
1.36M
        for (const typename V::value_type& elem : v) {
657
1.36M
            formatter.Ser(s, elem);
658
1.36M
        }
659
71.6k
    }
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12VectorWriterNSt3__16vectorI12CBlockHeaderNS4_9allocatorIS6_EEEEEEvRT_RKT0_
_ZN15VectorFormatterI19DifferenceFormatterE3SerI12VectorWriterNSt3__16vectorItNS4_9allocatorItEEEEEEvRT_RKT0_
Line
Count
Source
653
16.5k
    {
654
16.5k
        Formatter formatter;
655
16.5k
        WriteCompactSize(s, v.size());
656
75.7k
        for (const typename V::value_type& elem : v) {
657
75.7k
            formatter.Ser(s, elem);
658
75.7k
        }
659
16.5k
    }
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR12VectorWriterN8CAddress9SerParamsEENSt3__16vectorIS6_NS9_9allocatorIS6_EEEEEEvRT_RKT0_
_ZN15VectorFormatterI16DefaultFormatterE3SerI12SizeComputerNSt3__16vectorI7CTxUndoNS4_9allocatorIS6_EEEEEEvRT_RKT0_
Line
Count
Source
653
21.7k
    {
654
21.7k
        Formatter formatter;
655
21.7k
        WriteCompactSize(s, v.size());
656
104k
        for (const typename V::value_type& elem : v) {
657
104k
            formatter.Ser(s, elem);
658
104k
        }
659
21.7k
    }
_ZN15VectorFormatterI17TxInUndoFormatterE3SerI12SizeComputerNSt3__16vectorI4CoinNS4_9allocatorIS6_EEEEEEvRT_RKT0_
Line
Count
Source
653
104k
    {
654
104k
        Formatter formatter;
655
104k
        WriteCompactSize(s, v.size());
656
104k
        for (const typename V::value_type& elem : v) {
657
104k
            formatter.Ser(s, elem);
658
104k
        }
659
104k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI10HashWriterNSt3__16vectorI7CTxUndoNS4_9allocatorIS6_EEEEEEvRT_RKT0_
Line
Count
Source
653
21.7k
    {
654
21.7k
        Formatter formatter;
655
21.7k
        WriteCompactSize(s, v.size());
656
104k
        for (const typename V::value_type& elem : v) {
657
104k
            formatter.Ser(s, elem);
658
104k
        }
659
21.7k
    }
_ZN15VectorFormatterI17TxInUndoFormatterE3SerI10HashWriterNSt3__16vectorI4CoinNS4_9allocatorIS6_EEEEEEvRT_RKT0_
Line
Count
Source
653
104k
    {
654
104k
        Formatter formatter;
655
104k
        WriteCompactSize(s, v.size());
656
104k
        for (const typename V::value_type& elem : v) {
657
104k
            formatter.Ser(s, elem);
658
104k
        }
659
104k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI14BufferedWriterI8AutoFileENSt3__16vectorI7CTxUndoNS6_9allocatorIS8_EEEEEEvRT_RKT0_
Line
Count
Source
653
21.7k
    {
654
21.7k
        Formatter formatter;
655
21.7k
        WriteCompactSize(s, v.size());
656
104k
        for (const typename V::value_type& elem : v) {
657
104k
            formatter.Ser(s, elem);
658
104k
        }
659
21.7k
    }
_ZN15VectorFormatterI17TxInUndoFormatterE3SerI14BufferedWriterI8AutoFileENSt3__16vectorI4CoinNS6_9allocatorIS8_EEEEEEvRT_RKT0_
Line
Count
Source
653
104k
    {
654
104k
        Formatter formatter;
655
104k
        WriteCompactSize(s, v.size());
656
104k
        for (const typename V::value_type& elem : v) {
657
104k
            formatter.Ser(s, elem);
658
104k
        }
659
104k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__16vectorINSA_10shared_ptrIK12CTransactionEENSA_9allocatorISF_EEEEEEvRT_RKT0_
Line
Count
Source
653
28.2k
    {
654
28.2k
        Formatter formatter;
655
28.2k
        WriteCompactSize(s, v.size());
656
162k
        for (const typename V::value_type& elem : v) {
657
162k
            formatter.Ser(s, elem);
658
162k
        }
659
28.2k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__16vectorI5CTxInNSA_9allocatorISC_EEEEEEvRT_RKT0_
Line
Count
Source
653
324k
    {
654
324k
        Formatter formatter;
655
324k
        WriteCompactSize(s, v.size());
656
324k
        for (const typename V::value_type& elem : v) {
657
162k
            formatter.Ser(s, elem);
658
162k
        }
659
324k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__16vectorI6CTxOutNSA_9allocatorISC_EEEEEEvRT_RKT0_
Line
Count
Source
653
162k
    {
654
162k
        Formatter formatter;
655
162k
        WriteCompactSize(s, v.size());
656
190k
        for (const typename V::value_type& elem : v) {
657
190k
            formatter.Ser(s, elem);
658
190k
        }
659
162k
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__16vectorINSB_IhNSA_9allocatorIhEEEENSC_ISE_EEEEEEvRT_RKT0_
Line
Count
Source
653
162k
    {
654
162k
        Formatter formatter;
655
162k
        WriteCompactSize(s, v.size());
656
162k
        for (const typename V::value_type& elem : v) {
657
162k
            formatter.Ser(s, elem);
658
162k
        }
659
162k
    }
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
653
44.1M
    {
654
44.1M
        Formatter formatter;
655
44.1M
        WriteCompactSize(s, v.size());
656
44.1M
        for (const typename V::value_type& elem : v) {
657
30.8M
            formatter.Ser(s, elem);
658
30.8M
        }
659
44.1M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsENSt3__16vectorI6CTxOutNS8_9allocatorISA_EEEEEEvRT_RKT0_
Line
Count
Source
653
30.8M
    {
654
30.8M
        Formatter formatter;
655
30.8M
        WriteCompactSize(s, v.size());
656
40.2M
        for (const typename V::value_type& elem : v) {
657
40.2M
            formatter.Ser(s, elem);
658
40.2M
        }
659
30.8M
    }
_ZN15VectorFormatterI16DefaultFormatterE3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsENSt3__16vectorINS9_IhNS8_9allocatorIhEEEENSA_ISC_EEEEEEvRT_RKT0_
Line
Count
Source
653
13.2M
    {
654
13.2M
        Formatter formatter;
655
13.2M
        WriteCompactSize(s, v.size());
656
13.2M
        for (const typename V::value_type& elem : v) {
657
13.2M
            formatter.Ser(s, elem);
658
13.2M
        }
659
13.2M
    }
660
661
    template<typename Stream, typename V>
662
    void Unser(Stream& s, V& v)
663
24.9M
    {
664
24.9M
        Formatter formatter;
665
24.9M
        v.clear();
666
24.9M
        size_t size = ReadCompactSize(s);
667
24.9M
        size_t allocated = 0;
668
43.7M
        while (allocated < size) {
669
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
670
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
671
            // X MiB of data to make us allocate X+5 Mib.
672
18.7M
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
673
18.7M
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
674
18.7M
            v.reserve(allocated);
675
48.0M
            while (v.size() < allocated) {
676
29.3M
                v.emplace_back();
677
29.3M
                formatter.Unser(s, v.back());
678
29.3M
            }
679
18.7M
        }
680
24.9M
    };
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEvRT_RT0_
Line
Count
Source
663
186k
    {
664
186k
        Formatter formatter;
665
186k
        v.clear();
666
186k
        size_t size = ReadCompactSize(s);
667
186k
        size_t allocated = 0;
668
202k
        while (allocated < size) {
669
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
670
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
671
            // X MiB of data to make us allocate X+5 Mib.
672
15.8k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
673
15.8k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
674
15.8k
            v.reserve(allocated);
675
37.2k
            while (v.size() < allocated) {
676
21.4k
                v.emplace_back();
677
21.4k
                formatter.Unser(s, v.back());
678
21.4k
            }
679
15.8k
        }
680
186k
    };
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorI5CTxInNS8_9allocatorISA_EEEEEEvRT_RT0_
Line
Count
Source
663
9.94M
    {
664
9.94M
        Formatter formatter;
665
9.94M
        v.clear();
666
9.94M
        size_t size = ReadCompactSize(s);
667
9.94M
        size_t allocated = 0;
668
14.9M
        while (allocated < size) {
669
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
670
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
671
            // X MiB of data to make us allocate X+5 Mib.
672
4.97M
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
673
4.97M
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
674
4.97M
            v.reserve(allocated);
675
9.94M
            while (v.size() < allocated) {
676
4.97M
                v.emplace_back();
677
4.97M
                formatter.Unser(s, v.back());
678
4.97M
            }
679
4.97M
        }
680
9.94M
    };
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorI6CTxOutNS8_9allocatorISA_EEEEEEvRT_RT0_
Line
Count
Source
663
4.97M
    {
664
4.97M
        Formatter formatter;
665
4.97M
        v.clear();
666
4.97M
        size_t size = ReadCompactSize(s);
667
4.97M
        size_t allocated = 0;
668
9.94M
        while (allocated < size) {
669
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
670
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
671
            // X MiB of data to make us allocate X+5 Mib.
672
4.97M
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
673
4.97M
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
674
4.97M
            v.reserve(allocated);
675
11.3M
            while (v.size() < allocated) {
676
6.32M
                v.emplace_back();
677
6.32M
                formatter.Unser(s, v.back());
678
6.32M
            }
679
4.97M
        }
680
4.97M
    };
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorINS9_IhNS8_9allocatorIhEEEENSA_ISC_EEEEEEvRT_RT0_
Line
Count
Source
663
4.97M
    {
664
4.97M
        Formatter formatter;
665
4.97M
        v.clear();
666
4.97M
        size_t size = ReadCompactSize(s);
667
4.97M
        size_t allocated = 0;
668
9.94M
        while (allocated < size) {
669
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
670
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
671
            // X MiB of data to make us allocate X+5 Mib.
672
4.97M
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
673
4.97M
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
674
4.97M
            v.reserve(allocated);
675
9.94M
            while (v.size() < allocated) {
676
4.97M
                v.emplace_back();
677
4.97M
                formatter.Unser(s, v.back());
678
4.97M
            }
679
4.97M
        }
680
4.97M
    };
Unexecuted instantiation: _ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamNSt3__16vectorI7uint256NS4_9allocatorIS6_EEEEEEvRT_RT0_
_ZN15VectorFormatterI19CustomUintFormatterILi6ELb0EEE5UnserI10DataStreamNSt3__16vectorIyNS5_9allocatorIyEEEEEEvRT_RT0_
Line
Count
Source
663
1.35M
    {
664
1.35M
        Formatter formatter;
665
1.35M
        v.clear();
666
1.35M
        size_t size = ReadCompactSize(s);
667
1.35M
        size_t allocated = 0;
668
2.59M
        while (allocated < size) {
669
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
670
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
671
            // X MiB of data to make us allocate X+5 Mib.
672
1.23M
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
673
1.23M
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
674
1.23M
            v.reserve(allocated);
675
11.2M
            while (v.size() < allocated) {
676
10.0M
                v.emplace_back();
677
10.0M
                formatter.Unser(s, v.back());
678
10.0M
            }
679
1.23M
        }
680
1.35M
    };
_ZN15VectorFormatterI16DefaultFormatterE5UnserI10DataStreamNSt3__16vectorI20PrefilledTransactionNS4_9allocatorIS6_EEEEEEvRT_RT0_
Line
Count
Source
663
1.35M
    {
664
1.35M
        Formatter formatter;
665
1.35M
        v.clear();
666
1.35M
        size_t size = ReadCompactSize(s);
667
1.35M
        size_t allocated = 0;
668
2.70M
        while (allocated < size) {
669
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
670
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
671
            // X MiB of data to make us allocate X+5 Mib.
672
1.35M
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
673
1.35M
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
674
1.35M
            v.reserve(allocated);
675
2.76M
            while (v.size() < allocated) {
676
1.41M
                v.emplace_back();
677
1.41M
                formatter.Unser(s, v.back());
678
1.41M
            }
679
1.35M
        }
680
1.35M
    };
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
663
622k
    {
664
622k
        Formatter formatter;
665
622k
        v.clear();
666
622k
        size_t size = ReadCompactSize(s);
667
622k
        size_t allocated = 0;
668
934k
        while (allocated < size) {
669
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
670
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
671
            // X MiB of data to make us allocate X+5 Mib.
672
311k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
673
311k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
674
311k
            v.reserve(allocated);
675
622k
            while (v.size() < allocated) {
676
311k
                v.emplace_back();
677
311k
                formatter.Unser(s, v.back());
678
311k
            }
679
311k
        }
680
622k
    };
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsENSt3__16vectorI6CTxOutNS8_9allocatorISA_EEEEEEvRT_RT0_
Line
Count
Source
663
311k
    {
664
311k
        Formatter formatter;
665
311k
        v.clear();
666
311k
        size_t size = ReadCompactSize(s);
667
311k
        size_t allocated = 0;
668
622k
        while (allocated < size) {
669
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
670
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
671
            // X MiB of data to make us allocate X+5 Mib.
672
311k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
673
311k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
674
311k
            v.reserve(allocated);
675
931k
            while (v.size() < allocated) {
676
619k
                v.emplace_back();
677
619k
                formatter.Unser(s, v.back());
678
619k
            }
679
311k
        }
680
311k
    };
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsENSt3__16vectorINS9_IhNS8_9allocatorIhEEEENSA_ISC_EEEEEEvRT_RT0_
Line
Count
Source
663
311k
    {
664
311k
        Formatter formatter;
665
311k
        v.clear();
666
311k
        size_t size = ReadCompactSize(s);
667
311k
        size_t allocated = 0;
668
622k
        while (allocated < size) {
669
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
670
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
671
            // X MiB of data to make us allocate X+5 Mib.
672
311k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
673
311k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
674
311k
            v.reserve(allocated);
675
622k
            while (v.size() < allocated) {
676
311k
                v.emplace_back();
677
311k
                formatter.Unser(s, v.back());
678
311k
            }
679
311k
        }
680
311k
    };
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
663
615k
    {
664
615k
        Formatter formatter;
665
615k
        v.clear();
666
615k
        size_t size = ReadCompactSize(s);
667
615k
        size_t allocated = 0;
668
615k
        while (allocated < size) {
669
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
670
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
671
            // X MiB of data to make us allocate X+5 Mib.
672
0
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
673
0
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
674
0
            v.reserve(allocated);
675
0
            while (v.size() < allocated) {
676
0
                v.emplace_back();
677
0
                formatter.Unser(s, v.back());
678
0
            }
679
0
        }
680
615k
    };
Unexecuted instantiation: _ZN15VectorFormatterI17TxInUndoFormatterE5UnserI12HashVerifierI14BufferedReaderI8AutoFileEENSt3__16vectorI4CoinNS8_9allocatorISA_EEEEEEvRT_RT0_
_ZN15VectorFormatterI16DefaultFormatterE5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsENSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEvRT_RT0_
Line
Count
Source
663
308k
    {
664
308k
        Formatter formatter;
665
308k
        v.clear();
666
308k
        size_t size = ReadCompactSize(s);
667
308k
        size_t allocated = 0;
668
616k
        while (allocated < size) {
669
            // For DoS prevention, do not blindly allocate as much as the stream claims to contain.
670
            // Instead, allocate in 5MiB batches, so that an attacker actually needs to provide
671
            // X MiB of data to make us allocate X+5 Mib.
672
308k
            static_assert(sizeof(typename V::value_type) <= MAX_VECTOR_ALLOCATE, "Vector element size too large");
673
308k
            allocated = std::min(size, allocated + MAX_VECTOR_ALLOCATE / sizeof(typename V::value_type));
674
308k
            v.reserve(allocated);
675
619k
            while (v.size() < allocated) {
676
311k
                v.emplace_back();
677
311k
                formatter.Unser(s, v.back());
678
311k
            }
679
308k
        }
680
308k
    };
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_
681
};
682
683
/**
684
 * Forward declarations
685
 */
686
687
/**
688
 *  string
689
 */
690
template<typename Stream, typename C> void Serialize(Stream& os, const std::basic_string<C>& str);
691
template<typename Stream, typename C> void Unserialize(Stream& is, std::basic_string<C>& str);
692
693
/**
694
 * prevector
695
 */
696
template<typename Stream, unsigned int N, typename T> inline void Serialize(Stream& os, const prevector<N, T>& v);
697
template<typename Stream, unsigned int N, typename T> inline void Unserialize(Stream& is, prevector<N, T>& v);
698
699
/**
700
 * vector
701
 */
702
template<typename Stream, typename T, typename A> inline void Serialize(Stream& os, const std::vector<T, A>& v);
703
template<typename Stream, typename T, typename A> inline void Unserialize(Stream& is, std::vector<T, A>& v);
704
705
/**
706
 * pair
707
 */
708
template<typename Stream, typename K, typename T> void Serialize(Stream& os, const std::pair<K, T>& item);
709
template<typename Stream, typename K, typename T> void Unserialize(Stream& is, std::pair<K, T>& item);
710
711
/**
712
 * map
713
 */
714
template<typename Stream, typename K, typename T, typename Pred, typename A> void Serialize(Stream& os, const std::map<K, T, Pred, A>& m);
715
template<typename Stream, typename K, typename T, typename Pred, typename A> void Unserialize(Stream& is, std::map<K, T, Pred, A>& m);
716
717
/**
718
 * set
719
 */
720
template<typename Stream, typename K, typename Pred, typename A> void Serialize(Stream& os, const std::set<K, Pred, A>& m);
721
template<typename Stream, typename K, typename Pred, typename A> void Unserialize(Stream& is, std::set<K, Pred, A>& m);
722
723
/**
724
 * shared_ptr
725
 */
726
template<typename Stream, typename T> void Serialize(Stream& os, const std::shared_ptr<const T>& p);
727
template<typename Stream, typename T> void Unserialize(Stream& os, std::shared_ptr<const T>& p);
728
729
/**
730
 * unique_ptr
731
 */
732
template<typename Stream, typename T> void Serialize(Stream& os, const std::unique_ptr<const T>& p);
733
template<typename Stream, typename T> void Unserialize(Stream& os, std::unique_ptr<const T>& p);
734
735
736
/**
737
 * If none of the specialized versions above matched, default to calling member function.
738
 */
739
template <class T, class Stream>
740
concept Serializable = requires(T a, Stream s) { a.Serialize(s); };
741
template <typename Stream, typename T>
742
    requires Serializable<T, Stream>
743
void Serialize(Stream& os, const T& a)
744
619M
{
745
619M
    a.Serialize(os);
746
619M
}
_Z9SerializeI12SizeComputer13ParamsWrapperI20TransactionSerParamsK12CTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
4.63M
{
745
4.63M
    a.Serialize(os);
746
4.63M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
5.60M
{
745
5.60M
    a.Serialize(os);
746
5.60M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Line
Count
Source
744
7.28M
{
745
7.28M
    a.Serialize(os);
746
7.28M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
5.60M
{
745
5.60M
    a.Serialize(os);
746
5.60M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
11.9M
{
745
11.9M
    a.Serialize(os);
746
11.9M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
5.60M
{
745
5.60M
    a.Serialize(os);
746
5.60M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
5.60M
{
745
5.60M
    a.Serialize(os);
746
5.60M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Line
Count
Source
744
5.60M
{
745
5.60M
    a.Serialize(os);
746
5.60M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
6.36M
{
745
6.36M
    a.Serialize(os);
746
6.36M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINSA_IhNS9_9allocatorIhEEEENSB_ISD_EEEEEQ12SerializableIT0_T_EEvRSK_RKSJ_
Line
Count
Source
744
1.68M
{
745
1.68M
    a.Serialize(os);
746
1.68M
}
_Z9SerializeI12SizeComputer13ParamsWrapperI20TransactionSerParamsK6CBlockEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
422k
{
745
422k
    a.Serialize(os);
746
422k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE6CBlockQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
422k
{
745
422k
    a.Serialize(os);
746
422k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEQ12SerializableIT0_T_EEvRSM_RKSL_
Line
Count
Source
744
422k
{
745
422k
    a.Serialize(os);
746
422k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE12CBlockHeaderQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
422k
{
745
422k
    a.Serialize(os);
746
422k
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE7uint256Q12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
844k
{
745
844k
    a.Serialize(os);
746
844k
}
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
744
1.59M
{
745
1.59M
    a.Serialize(os);
746
1.59M
}
_Z9SerializeI12VectorWriter12CBlockHeaderQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
1.59M
{
745
1.59M
    a.Serialize(os);
746
1.59M
}
_Z9SerializeI12VectorWriter7uint256Q12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
5.45M
{
745
5.45M
    a.Serialize(os);
746
5.45M
}
_Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS6_9allocatorIyEEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
744
1.59M
{
745
1.59M
    a.Serialize(os);
746
1.59M
}
_Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI20PrefilledTransactionNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
744
1.59M
{
745
1.59M
    a.Serialize(os);
746
1.59M
}
_Z9SerializeI12VectorWriter20PrefilledTransactionQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
1.66M
{
745
1.66M
    a.Serialize(os);
746
1.66M
}
_Z9SerializeI12VectorWriter7WrapperI20CompactSizeFormatterILb1EERKtEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
1.66M
{
745
1.66M
    a.Serialize(os);
746
1.66M
}
_Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
744
1.66M
{
745
1.66M
    a.Serialize(os);
746
1.66M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEQ12SerializableIT0_T_EEvRSG_RKSF_
Line
Count
Source
744
1.66M
{
745
1.66M
    a.Serialize(os);
746
1.66M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
5.37M
{
745
5.37M
    a.Serialize(os);
746
5.37M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Line
Count
Source
744
10.7M
{
745
10.7M
    a.Serialize(os);
746
10.7M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
5.37M
{
745
5.37M
    a.Serialize(os);
746
5.37M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
5.37M
{
745
5.37M
    a.Serialize(os);
746
5.37M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
5.37M
{
745
5.37M
    a.Serialize(os);
746
5.37M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
12.3M
{
745
12.3M
    a.Serialize(os);
746
12.3M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Line
Count
Source
744
5.37M
{
745
5.37M
    a.Serialize(os);
746
5.37M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
6.97M
{
745
6.97M
    a.Serialize(os);
746
6.97M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINSA_IhNS9_9allocatorIhEEEENSB_ISD_EEEEEQ12SerializableIT0_T_EEvRSK_RKSJ_
Line
Count
Source
744
5.37M
{
745
5.37M
    a.Serialize(os);
746
5.37M
}
_Z9SerializeI12VectorWriter17BlockTransactionsQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
276k
{
745
276k
    a.Serialize(os);
746
276k
}
_Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEQ12SerializableIT0_T_EEvRSL_RKSK_
Line
Count
Source
744
276k
{
745
276k
    a.Serialize(os);
746
276k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEQ12SerializableIT0_T_EEvRSM_RKSL_
Line
Count
Source
744
1.19M
{
745
1.19M
    a.Serialize(os);
746
1.19M
}
_Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParamsNSt3__16vectorI6CBlockNS3_9allocatorIS5_EEEEEQ12SerializableIT0_T_EEvRSB_RKSA_
Line
Count
Source
744
916k
{
745
916k
    a.Serialize(os);
746
916k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CBlockNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Line
Count
Source
744
916k
{
745
916k
    a.Serialize(os);
746
916k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CBlockQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
916k
{
745
916k
    a.Serialize(os);
746
916k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE12CBlockHeaderQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
916k
{
745
916k
    a.Serialize(os);
746
916k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE7uint256Q12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
1.83M
{
745
1.83M
    a.Serialize(os);
746
1.83M
}
_Z9SerializeI12VectorWriter13ParamsWrapperI20TransactionSerParamsK12CTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
3.68M
{
745
3.68M
    a.Serialize(os);
746
3.68M
}
Unexecuted instantiation: _Z9SerializeI10DataStream11BlockFilterQ12SerializableIT0_T_EEvRS3_RKS2_
_Z9SerializeI10DataStream7uint256Q12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
6.08M
{
745
6.08M
    a.Serialize(os);
746
6.08M
}
_Z9SerializeI10DataStream14CBlockFileInfoQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
1.89k
{
745
1.89k
    a.Serialize(os);
746
1.89k
}
_Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
744
36.2k
{
745
36.2k
    a.Serialize(os);
746
36.2k
}
_Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode0EERKyEQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
744
3.79k
{
745
3.79k
    a.Serialize(os);
746
3.79k
}
Unexecuted instantiation: _Z9SerializeI10DataStream25CBlockHeaderAndShortTxIDsQ12SerializableIT0_T_EEvRS3_RKS2_
_Z9SerializeI10DataStream12CBlockHeaderQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
2.96M
{
745
2.96M
    a.Serialize(os);
746
2.96M
}
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
744
4.58k
{
745
4.58k
    a.Serialize(os);
746
4.58k
}
Unexecuted instantiation: _Z9SerializeI10DataStream9COutPointQ12SerializableIT0_T_EEvRS3_RKS2_
_Z9SerializeI10DataStream22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS4_RKS3_
Line
Count
Source
744
1.54M
{
745
1.54M
    a.Serialize(os);
746
1.54M
}
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
744
13.4k
{
745
13.4k
    a.Serialize(os);
746
13.4k
}
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
744
1.82M
{
745
1.82M
    a.Serialize(os);
746
1.82M
}
_Z9SerializeI12SizeComputer7CScriptQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
1.82M
{
745
1.82M
    a.Serialize(os);
746
1.82M
}
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
744
1.56M
{
745
1.56M
    a.Serialize(os);
746
1.56M
}
_Z9SerializeI10DataStream7WrapperI16TxOutCompressionRK6CTxOutEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
10.1k
{
745
10.1k
    a.Serialize(os);
746
10.1k
}
_Z9SerializeI10DataStream7WrapperI17AmountCompressionRKxEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
10.1k
{
745
10.1k
    a.Serialize(os);
746
10.1k
}
_Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
10.1k
{
745
10.1k
    a.Serialize(os);
746
10.1k
}
_Z9SerializeI10DataStream7WrapperI17ScriptCompressionRK7CScriptEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
10.1k
{
745
10.1k
    a.Serialize(os);
746
10.1k
}
Unexecuted instantiation: _Z9SerializeI10DataStream10CBlockUndoQ12SerializableIT0_T_EEvRS3_RKS2_
Unexecuted instantiation: _Z9SerializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
_Z9SerializeI10DataStream4CoinQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
10.1k
{
745
10.1k
    a.Serialize(os);
746
10.1k
}
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
744
10.4k
{
745
10.4k
    a.Serialize(os);
746
10.4k
}
_Z9SerializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode1EERiEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
10.4k
{
745
10.4k
    a.Serialize(os);
746
10.4k
}
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: _Z9SerializeI10DataStreamN6wallet16WalletDescriptorEQ12SerializableIT0_T_EEvRS4_RKS3_
_Z9SerializeI12VectorWriter7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
192k
{
745
192k
    a.Serialize(os);
746
192k
}
_Z9SerializeI12VectorWriter13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
769k
{
745
769k
    a.Serialize(os);
746
769k
}
_Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE8CServiceQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
769k
{
745
769k
    a.Serialize(os);
746
769k
}
_Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEES3_Q12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
769k
{
745
769k
    a.Serialize(os);
746
769k
}
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE7WrapperI20CompactSizeFormatterILb1EERKmEQ12SerializableIT0_T_EEvRSD_RKSC_
_Z9SerializeI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE7WrapperI19CustomUintFormatterILi2ELb1EERKtEQ12SerializableIT0_T_EEvRSD_RKSC_
Line
Count
Source
744
769k
{
745
769k
    a.Serialize(os);
746
769k
}
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
744
49.8M
{
745
49.8M
    a.Serialize(os);
746
49.8M
}
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: _Z9SerializeI10DataStream11ObfuscationQ12SerializableIT0_T_EEvRS3_RKS2_
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
744
504k
{
745
504k
    a.Serialize(os);
746
504k
}
_Z9SerializeI10HashWriter22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS4_RKS3_
Line
Count
Source
744
504k
{
745
504k
    a.Serialize(os);
746
504k
}
_Z9SerializeI10HashWriter6CTxOutQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
504k
{
745
504k
    a.Serialize(os);
746
504k
}
_Z9SerializeI10HashWriter7CScriptQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
504k
{
745
504k
    a.Serialize(os);
746
504k
}
_Z9SerializeI12VectorWriter14CMessageHeaderQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
8.05M
{
745
8.05M
    a.Serialize(os);
746
8.05M
}
_Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI4CInvNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
744
526k
{
745
526k
    a.Serialize(os);
746
526k
}
_Z9SerializeI12VectorWriter4CInvQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
534k
{
745
534k
    a.Serialize(os);
746
534k
}
_Z9SerializeI12VectorWriter13CBlockLocatorQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
71.6k
{
745
71.6k
    a.Serialize(os);
746
71.6k
}
_Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7uint256NS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
744
71.6k
{
745
71.6k
    a.Serialize(os);
746
71.6k
}
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
744
16.5k
{
745
16.5k
    a.Serialize(os);
746
16.5k
}
_Z9SerializeI12VectorWriter7WrapperI15VectorFormatterI19DifferenceFormatterERKNSt3__16vectorItNS5_9allocatorItEEEEEQ12SerializableIT0_T_EEvRSE_RKSD_
Line
Count
Source
744
16.5k
{
745
16.5k
    a.Serialize(os);
746
16.5k
}
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
744
21.7k
{
745
21.7k
    a.Serialize(os);
746
21.7k
}
_Z9SerializeI12SizeComputer7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
744
21.7k
{
745
21.7k
    a.Serialize(os);
746
21.7k
}
_Z9SerializeI12SizeComputer7CTxUndoQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI12SizeComputer7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI12SizeComputer7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
209k
{
745
209k
    a.Serialize(os);
746
209k
}
_Z9SerializeI12SizeComputer7WrapperI16TxOutCompressionRK6CTxOutEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI12SizeComputer7WrapperI17AmountCompressionRKxEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI12SizeComputer7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI12SizeComputer7WrapperI17ScriptCompressionRK7CScriptEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI10HashWriter10CBlockUndoQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
21.7k
{
745
21.7k
    a.Serialize(os);
746
21.7k
}
_Z9SerializeI10HashWriter7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
744
21.7k
{
745
21.7k
    a.Serialize(os);
746
21.7k
}
_Z9SerializeI10HashWriter7CTxUndoQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI10HashWriter7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS5_9allocatorIS7_EEEEEQ12SerializableIT0_T_EEvRSF_RKSE_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI10HashWriter7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
209k
{
745
209k
    a.Serialize(os);
746
209k
}
_Z9SerializeI10HashWriter7WrapperI16TxOutCompressionRK6CTxOutEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI10HashWriter7WrapperI17AmountCompressionRKxEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI10HashWriter7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI10HashWriter7WrapperI17ScriptCompressionRK7CScriptEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI14BufferedWriterI8AutoFileE10CBlockUndoQ12SerializableIT0_T_EEvRS5_RKS4_
Line
Count
Source
744
21.7k
{
745
21.7k
    a.Serialize(os);
746
21.7k
}
_Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI7CTxUndoNS7_9allocatorIS9_EEEEEQ12SerializableIT0_T_EEvRSH_RKSG_
Line
Count
Source
744
21.7k
{
745
21.7k
    a.Serialize(os);
746
21.7k
}
_Z9SerializeI14BufferedWriterI8AutoFileE7CTxUndoQ12SerializableIT0_T_EEvRS5_RKS4_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS7_9allocatorIS9_EEEEEQ12SerializableIT0_T_EEvRSH_RKSG_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ12SerializableIT0_T_EEvRSA_RKS9_
Line
Count
Source
744
209k
{
745
209k
    a.Serialize(os);
746
209k
}
_Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI16TxOutCompressionRK6CTxOutEQ12SerializableIT0_T_EEvRSA_RKS9_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI17AmountCompressionRKxEQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ12SerializableIT0_T_EEvRSA_RKS9_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI14BufferedWriterI8AutoFileE7WrapperI17ScriptCompressionRK7CScriptEQ12SerializableIT0_T_EEvRSA_RKS9_
Line
Count
Source
744
104k
{
745
104k
    a.Serialize(os);
746
104k
}
_Z9SerializeI14BufferedWriterI8AutoFileE7uint256Q12SerializableIT0_T_EEvRS5_RKS4_
Line
Count
Source
744
21.7k
{
745
21.7k
    a.Serialize(os);
746
21.7k
}
_Z9SerializeI14BufferedWriterI8AutoFileE13ParamsWrapperI20TransactionSerParamsK6CBlockEQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
744
28.2k
{
745
28.2k
    a.Serialize(os);
746
28.2k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE6CBlockQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
744
28.2k
{
745
28.2k
    a.Serialize(os);
746
28.2k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE12CBlockHeaderQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
744
28.2k
{
745
28.2k
    a.Serialize(os);
746
28.2k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7uint256Q12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
744
56.4k
{
745
56.4k
    a.Serialize(os);
746
56.4k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINSB_10shared_ptrIK12CTransactionEENSB_9allocatorISG_EEEEEQ12SerializableIT0_T_EEvRSO_RKSN_
Line
Count
Source
744
28.2k
{
745
28.2k
    a.Serialize(os);
746
28.2k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
744
162k
{
745
162k
    a.Serialize(os);
746
162k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNSB_9allocatorISD_EEEEEQ12SerializableIT0_T_EEvRSL_RKSK_
Line
Count
Source
744
324k
{
745
324k
    a.Serialize(os);
746
324k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
744
162k
{
745
162k
    a.Serialize(os);
746
162k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
744
162k
{
745
162k
    a.Serialize(os);
746
162k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRSA_RKS9_
Line
Count
Source
744
162k
{
745
162k
    a.Serialize(os);
746
162k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
744
352k
{
745
352k
    a.Serialize(os);
746
352k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNSB_9allocatorISD_EEEEEQ12SerializableIT0_T_EEvRSL_RKSK_
Line
Count
Source
744
162k
{
745
162k
    a.Serialize(os);
746
162k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS9_RKS8_
Line
Count
Source
744
190k
{
745
190k
    a.Serialize(os);
746
190k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINSC_IhNSB_9allocatorIhEEEENSD_ISF_EEEEEQ12SerializableIT0_T_EEvRSM_RKSL_
Line
Count
Source
744
162k
{
745
162k
    a.Serialize(os);
746
162k
}
Unexecuted instantiation: _Z9SerializeI8AutoFile11ObfuscationQ12SerializableIT0_T_EEvRS3_RKS2_
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
744
1.54M
{
745
1.54M
    a.Serialize(os);
746
1.54M
}
_Z9SerializeI10HashWriter12CBlockHeaderQ12SerializableIT0_T_EEvRS3_RKS2_
Line
Count
Source
744
24.5M
{
745
24.5M
    a.Serialize(os);
746
24.5M
}
Unexecuted instantiation: _Z9SerializeI10HashWriter13ParamsWrapperI20TransactionSerParamsK19CMutableTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE19CMutableTransactionQ12SerializableIT0_T_EEvRS7_RKS6_
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI5CTxInNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Line
Count
Source
744
44.1M
{
745
44.1M
    a.Serialize(os);
746
44.1M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE5CTxInQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
30.8M
{
745
30.8M
    a.Serialize(os);
746
30.8M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE9COutPointQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
30.8M
{
745
30.8M
    a.Serialize(os);
746
30.8M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE22transaction_identifierILb0EEQ12SerializableIT0_T_EEvRS8_RKS7_
Line
Count
Source
744
30.8M
{
745
30.8M
    a.Serialize(os);
746
30.8M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE7CScriptQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
71.1M
{
745
71.1M
    a.Serialize(os);
746
71.1M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorI6CTxOutNS9_9allocatorISB_EEEEEQ12SerializableIT0_T_EEvRSJ_RKSI_
Line
Count
Source
744
30.8M
{
745
30.8M
    a.Serialize(os);
746
30.8M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE6CTxOutQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
40.2M
{
745
40.2M
    a.Serialize(os);
746
40.2M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINSA_IhNS9_9allocatorIhEEEENSB_ISD_EEEEEQ12SerializableIT0_T_EEvRSK_RKSJ_
Line
Count
Source
744
13.2M
{
745
13.2M
    a.Serialize(os);
746
13.2M
}
_Z9SerializeI10HashWriter13ParamsWrapperI20TransactionSerParamsK12CTransactionEQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
30.8M
{
745
30.8M
    a.Serialize(os);
746
30.8M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE12CTransactionQ12SerializableIT0_T_EEvRS7_RKS6_
Line
Count
Source
744
30.8M
{
745
30.8M
    a.Serialize(os);
746
30.8M
}
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_
747
748
template <class T, class Stream>
749
concept Unserializable = requires(T a, Stream s) { a.Unserialize(s); };
750
template <typename Stream, typename T>
751
    requires Unserializable<T, Stream>
752
void Unserialize(Stream& is, T&& a)
753
212M
{
754
212M
    a.Unserialize(is);
755
212M
}
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
753
9.94M
{
754
9.94M
    a.Unserialize(is);
755
9.94M
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER5CTxInQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
4.97M
{
754
4.97M
    a.Unserialize(is);
755
4.97M
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER9COutPointQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
4.97M
{
754
4.97M
    a.Unserialize(is);
755
4.97M
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS9_OS8_
Line
Count
Source
753
4.97M
{
754
4.97M
    a.Unserialize(is);
755
4.97M
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER7CScriptQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
11.3M
{
754
11.3M
    a.Unserialize(is);
755
11.3M
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS9_9allocatorISB_EEEEEQ14UnserializableIT0_T_EEvRSI_OSH_
Line
Count
Source
753
4.97M
{
754
4.97M
    a.Unserialize(is);
755
4.97M
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER6CTxOutQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
6.32M
{
754
6.32M
    a.Unserialize(is);
755
6.32M
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINSA_IhNS9_9allocatorIhEEEENSB_ISD_EEEEEQ14UnserializableIT0_T_EEvRSJ_OSI_
Line
Count
Source
753
4.97M
{
754
4.97M
    a.Unserialize(is);
755
4.97M
}
_Z11UnserializeI10DataStreamR12CBlockHeaderQ14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
753
2.07M
{
754
2.07M
    a.Unserialize(is);
755
2.07M
}
_Z11UnserializeI10DataStreamR7uint256Q14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
753
35.4M
{
754
35.4M
    a.Unserialize(is);
755
35.4M
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamR13CBlockLocatorQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7uint256NS5_9allocatorIS7_EEEEEQ14UnserializableIT0_T_EEvRSE_OSD_
_Z11UnserializeI10DataStreamR14CBlockFileInfoQ14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
753
51.2k
{
754
51.2k
    a.Unserialize(is);
755
51.2k
}
_Z11UnserializeI10DataStreamR7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRS9_OS8_
Line
Count
Source
753
42.7M
{
754
42.7M
    a.Unserialize(is);
755
42.7M
}
_Z11UnserializeI10DataStreamR7WrapperI15VarIntFormatterIL10VarIntMode0EERyEQ14UnserializableIT0_T_EEvRS9_OS8_
Line
Count
Source
753
1.44M
{
754
1.44M
    a.Unserialize(is);
755
1.44M
}
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
753
10.3M
{
754
10.3M
    a.Unserialize(is);
755
10.3M
}
_Z11UnserializeI10DataStreamR7WrapperI15VarIntFormatterIL10VarIntMode1EERiEQ14UnserializableIT0_T_EEvRS9_OS8_
Line
Count
Source
753
30.9M
{
754
30.9M
    a.Unserialize(is);
755
30.9M
}
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
753
1.34M
{
754
1.34M
    a.Unserialize(is);
755
1.34M
}
_Z11UnserializeI10DataStream7WrapperI15VarIntFormatterIL10VarIntMode0EERjEQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
1.34M
{
754
1.34M
    a.Unserialize(is);
755
1.34M
}
_Z11UnserializeI10DataStream7WrapperI16TxOutCompressionR6CTxOutEQ14UnserializableIT0_T_EEvRS7_OS6_
Line
Count
Source
753
1.34M
{
754
1.34M
    a.Unserialize(is);
755
1.34M
}
_Z11UnserializeI10DataStreamR7WrapperI17AmountCompressionRxEQ14UnserializableIT0_T_EEvRS7_OS6_
Line
Count
Source
753
1.34M
{
754
1.34M
    a.Unserialize(is);
755
1.34M
}
_Z11UnserializeI10DataStreamR7WrapperI17ScriptCompressionR7CScriptEQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
1.34M
{
754
1.34M
    a.Unserialize(is);
755
1.34M
}
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
753
382k
{
754
382k
    a.Unserialize(is);
755
382k
}
_Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSD_OSC_
Line
Count
Source
753
382k
{
754
382k
    a.Unserialize(is);
755
382k
}
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEER7WrapperI15ChronoFormatterIxLb0EERNSt3__16chrono10time_pointI9NodeClockNSA_8durationIxNS9_5ratioILl1ELl1EEEEEEEEQ14UnserializableIT0_T_EEvRSM_OSL_
_Z11UnserializeI10DataStreamR25CBlockHeaderAndShortTxIDsQ14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
753
1.35M
{
754
1.35M
    a.Unserialize(is);
755
1.35M
}
_Z11UnserializeI10DataStreamR7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERNSt3__16vectorIyNS6_9allocatorIyEEEEEQ14UnserializableIT0_T_EEvRSF_OSE_
Line
Count
Source
753
1.35M
{
754
1.35M
    a.Unserialize(is);
755
1.35M
}
_Z11UnserializeI10DataStream7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI20PrefilledTransactionNS5_9allocatorIS7_EEEEEQ14UnserializableIT0_T_EEvRSE_OSD_
Line
Count
Source
753
1.35M
{
754
1.35M
    a.Unserialize(is);
755
1.35M
}
_Z11UnserializeI10DataStreamR20PrefilledTransactionQ14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
753
1.41M
{
754
1.41M
    a.Unserialize(is);
755
1.41M
}
_Z11UnserializeI10DataStreamR7WrapperI20CompactSizeFormatterILb1EERtEQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
1.41M
{
754
1.41M
    a.Unserialize(is);
755
1.41M
}
_Z11UnserializeI10DataStreamR13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEEQ14UnserializableIT0_T_EEvRSF_OSE_
Line
Count
Source
753
1.41M
{
754
1.41M
    a.Unserialize(is);
755
1.41M
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER7WrapperI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEQ14UnserializableIT0_T_EEvRSG_OSF_
Line
Count
Source
753
1.41M
{
754
1.41M
    a.Unserialize(is);
755
1.41M
}
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
753
3.53M
{
754
3.53M
    a.Unserialize(is);
755
3.53M
}
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
753
191k
{
754
191k
    a.Unserialize(is);
755
191k
}
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEER7WrapperI20CompactSizeFormatterILb1EERmEQ14UnserializableIT0_T_EEvRSD_OSC_
_Z11UnserializeI10DataStreamR13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
191k
{
754
191k
    a.Unserialize(is);
755
191k
}
_Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEER8CServiceQ14UnserializableIT0_T_EEvRS9_OS8_
Line
Count
Source
753
191k
{
754
191k
    a.Unserialize(is);
755
191k
}
_Z11UnserializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEER7WrapperI19CustomUintFormatterILi2ELb1EERtEQ14UnserializableIT0_T_EEvRSD_OSC_
Line
Count
Source
753
191k
{
754
191k
    a.Unserialize(is);
755
191k
}
_Z11UnserializeI10DataStreamR14CMessageHeaderQ14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
753
6.84M
{
754
6.84M
    a.Unserialize(is);
755
6.84M
}
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
753
186k
{
754
186k
    a.Unserialize(is);
755
186k
}
_Z11UnserializeI10DataStreamR13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEQ14UnserializableIT0_T_EEvRSL_OSK_
Line
Count
Source
753
186k
{
754
186k
    a.Unserialize(is);
755
186k
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsER7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEQ14UnserializableIT0_T_EEvRSM_OSL_
Line
Count
Source
753
186k
{
754
186k
    a.Unserialize(is);
755
186k
}
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
753
622k
{
754
622k
    a.Unserialize(is);
755
622k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER5CTxInQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
311k
{
754
311k
    a.Unserialize(is);
755
311k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER9COutPointQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
311k
{
754
311k
    a.Unserialize(is);
755
311k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS9_OS8_
Line
Count
Source
753
311k
{
754
311k
    a.Unserialize(is);
755
311k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER7CScriptQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
931k
{
754
931k
    a.Unserialize(is);
755
931k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI6CTxOutNS9_9allocatorISB_EEEEEQ14UnserializableIT0_T_EEvRSI_OSH_
Line
Count
Source
753
311k
{
754
311k
    a.Unserialize(is);
755
311k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER6CTxOutQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
619k
{
754
619k
    a.Unserialize(is);
755
619k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINSA_IhNS9_9allocatorIhEEEENSB_ISD_EEEEEQ14UnserializableIT0_T_EEvRSJ_OSI_
Line
Count
Source
753
311k
{
754
311k
    a.Unserialize(is);
755
311k
}
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
753
382k
{
754
382k
    a.Unserialize(is);
755
382k
}
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: _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_
_Z11UnserializeI10DataStreamR11ObfuscationQ14UnserializableIT0_T_EEvRS4_OS3_
Line
Count
Source
753
51.2k
{
754
51.2k
    a.Unserialize(is);
755
51.2k
}
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
753
191k
{
754
191k
    a.Unserialize(is);
755
191k
}
_Z11UnserializeI10DataStreamR7WrapperI22LimitedStringFormatterILm256EERNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEQ14UnserializableIT0_T_EEvRSF_OSE_
Line
Count
Source
753
190k
{
754
190k
    a.Unserialize(is);
755
190k
}
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
753
615k
{
754
615k
    a.Unserialize(is);
755
615k
}
_Z11UnserializeI12HashVerifierI14BufferedReaderI8AutoFileEE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorI7CTxUndoNS9_9allocatorISB_EEEEEQ14UnserializableIT0_T_EEvRSI_OSH_
Line
Count
Source
753
615k
{
754
615k
    a.Unserialize(is);
755
615k
}
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
753
615k
{
754
615k
    a.Unserialize(is);
755
615k
}
_Z11UnserializeI10SpanReaderR13ParamsWrapperI20TransactionSerParams6CBlockEQ14UnserializableIT0_T_EEvRS7_OS6_
Line
Count
Source
753
308k
{
754
308k
    a.Unserialize(is);
755
308k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER6CBlockQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
308k
{
754
308k
    a.Unserialize(is);
755
308k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER12CBlockHeaderQ14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
308k
{
754
308k
    a.Unserialize(is);
755
308k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsER7uint256Q14UnserializableIT0_T_EEvRS8_OS7_
Line
Count
Source
753
616k
{
754
616k
    a.Unserialize(is);
755
616k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEQ14UnserializableIT0_T_EEvRSL_OSK_
Line
Count
Source
753
308k
{
754
308k
    a.Unserialize(is);
755
308k
}
Unexecuted instantiation: _Z11UnserializeI8AutoFileR11ObfuscationQ14UnserializableIT0_T_EEvRS4_OS3_
Unexecuted instantiation: _Z11UnserializeI8AutoFileR22transaction_identifierILb0EEQ14UnserializableIT0_T_EEvRS5_OS4_
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: _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_
756
757
/** Default formatter. Serializes objects as themselves.
758
 *
759
 * The vector/prevector serialization code passes this to VectorFormatter
760
 * to enable reusing that logic. It shouldn't be needed elsewhere.
761
 */
762
struct DefaultFormatter
763
{
764
    template<typename Stream, typename T>
765
123M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsE5CTxInEEvRT_RKT0_
Line
Count
Source
765
5.60M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsE6CTxOutEEvRT_RKT0_
Line
Count
Source
765
6.36M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__16vectorIhNS6_9allocatorIhEEEEEEvRT_RKT0_
Line
Count
Source
765
1.68M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEEEEvRT_RKT0_
Line
Count
Source
765
967k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
Unexecuted instantiation: _ZN16DefaultFormatter3SerI12SizeComputerNSt3__16vectorIhNS2_9allocatorIhEEEEEEvRT_RKT0_
_ZN16DefaultFormatter3SerI12VectorWriter20PrefilledTransactionEEvRT_RKT0_
Line
Count
Source
765
1.66M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEEEEvRT_RKT0_
Line
Count
Source
765
1.69M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsE5CTxInEEvRT_RKT0_
Line
Count
Source
765
5.37M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CTxOutEEvRT_RKT0_
Line
Count
Source
765
6.97M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorIhNS6_9allocatorIhEEEEEEvRT_RKT0_
Line
Count
Source
765
5.37M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CBlockEEvRT_RKT0_
Line
Count
Source
765
916k
    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
765
9.16k
    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
765
534k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12VectorWriter7uint256EEvRT_RKT0_
Line
Count
Source
765
1.36M
    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
765
104k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI10HashWriter7CTxUndoEEvRT_RKT0_
Line
Count
Source
765
104k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI14BufferedWriterI8AutoFileE7CTxUndoEEvRT_RKT0_
Line
Count
Source
765
104k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEEEEvRT_RKT0_
Line
Count
Source
765
162k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE5CTxInEEvRT_RKT0_
Line
Count
Source
765
162k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE6CTxOutEEvRT_RKT0_
Line
Count
Source
765
190k
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__16vectorIhNS8_9allocatorIhEEEEEEvRT_RKT0_
Line
Count
Source
765
162k
    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
765
30.8M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsE6CTxOutEEvRT_RKT0_
Line
Count
Source
765
40.2M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
_ZN16DefaultFormatter3SerI12ParamsStreamIR10HashWriter20TransactionSerParamsENSt3__16vectorIhNS6_9allocatorIhEEEEEEvRT_RKT0_
Line
Count
Source
765
13.2M
    static void Ser(Stream& s, const T& t) { Serialize(s, t); }
766
767
    template<typename Stream, typename T>
768
20.6M
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
_ZN16DefaultFormatter5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEEEEvRT_RT0_
Line
Count
Source
768
1.43M
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
_ZN16DefaultFormatter5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsE5CTxInEEvRT_RT0_
Line
Count
Source
768
4.97M
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
_ZN16DefaultFormatter5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsE6CTxOutEEvRT_RT0_
Line
Count
Source
768
6.32M
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
_ZN16DefaultFormatter5UnserI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorIhNS6_9allocatorIhEEEEEEvRT_RT0_
Line
Count
Source
768
4.97M
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
Unexecuted instantiation: _ZN16DefaultFormatter5UnserI10DataStream7uint256EEvRT_RT0_
_ZN16DefaultFormatter5UnserI10DataStream20PrefilledTransactionEEvRT_RT0_
Line
Count
Source
768
1.41M
    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
768
311k
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
_ZN16DefaultFormatter5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsE6CTxOutEEvRT_RT0_
Line
Count
Source
768
619k
    static void Unser(Stream& s, T& t) { Unserialize(s, t); }
_ZN16DefaultFormatter5UnserI12ParamsStreamIR10SpanReader20TransactionSerParamsENSt3__16vectorIhNS6_9allocatorIhEEEEEEvRT_RT0_
Line
Count
Source
768
311k
    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
768
311k
    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_
769
};
770
771
772
773
774
775
/**
776
 * string
777
 */
778
template<typename Stream, typename C>
779
void Serialize(Stream& os, const std::basic_string<C>& str)
780
538k
{
781
538k
    WriteCompactSize(os, str.size());
782
538k
    if (!str.empty())
783
153k
        os.write(MakeByteSpan(str));
784
538k
}
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
780
153k
{
781
153k
    WriteCompactSize(os, str.size());
782
153k
    if (!str.empty())
783
153k
        os.write(MakeByteSpan(str));
784
153k
}
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
780
384k
{
781
384k
    WriteCompactSize(os, str.size());
782
384k
    if (!str.empty())
783
0
        os.write(MakeByteSpan(str));
784
384k
}
785
786
template<typename Stream, typename C>
787
void Unserialize(Stream& is, std::basic_string<C>& str)
788
0
{
789
0
    unsigned int nSize = ReadCompactSize(is);
790
0
    str.resize(nSize);
791
0
    if (nSize != 0)
792
0
        is.read(MakeWritableByteSpan(str));
793
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
794
795
796
797
/**
798
 * prevector
799
 */
800
template <typename Stream, unsigned int N, typename T>
801
void Serialize(Stream& os, const prevector<N, T>& v)
802
98.0M
{
803
98.0M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
804
98.0M
        WriteCompactSize(os, v.size());
805
98.0M
        if (!v.empty()) 
os.write(MakeByteSpan(v))70.1M
;
806
98.0M
    } else {
807
0
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
808
0
    }
809
98.0M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsELj36EhEvRT_RK9prevectorIXT0_ET1_jiE
Line
Count
Source
802
11.9M
{
803
11.9M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
804
11.9M
        WriteCompactSize(os, v.size());
805
11.9M
        if (!v.empty()) 
os.write(MakeByteSpan(v))7.12M
;
806
    } else {
807
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
808
    }
809
11.9M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsELj36EhEvRT_RK9prevectorIXT0_ET1_jiE
Line
Count
Source
802
12.3M
{
803
12.3M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
804
12.3M
        WriteCompactSize(os, v.size());
805
12.3M
        if (!v.empty()) 
os.write(MakeByteSpan(v))8.56M
;
806
    } else {
807
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
808
    }
809
12.3M
}
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsELj36EhEvRT_RK9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z9SerializeI10DataStreamLj36EhEvRT_RK9prevectorIXT0_ET1_jiE
_Z9SerializeI12SizeComputerLj36EhEvRT_RK9prevectorIXT0_ET1_jiE
Line
Count
Source
802
1.82M
{
803
1.82M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
804
1.82M
        WriteCompactSize(os, v.size());
805
1.82M
        if (!v.empty()) os.write(MakeByteSpan(v));
806
    } else {
807
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
808
    }
809
1.82M
}
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_ELj36EhEvRT_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
_Z9SerializeI10HashWriterLj36EhEvRT_RK9prevectorIXT0_ET1_jiE
Line
Count
Source
802
504k
{
803
504k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
804
504k
        WriteCompactSize(os, v.size());
805
504k
        if (!v.empty()) os.write(MakeByteSpan(v));
806
    } else {
807
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
808
    }
809
504k
}
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriterN8CAddress9SerParamsEEN8CNetAddr9SerParamsEELj16EhEvRT_RK9prevectorIXT0_ET1_jiE
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsELj36EhEvRT_RK9prevectorIXT0_ET1_jiE
Line
Count
Source
802
352k
{
803
352k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
804
352k
        WriteCompactSize(os, v.size());
805
352k
        if (!v.empty()) 
os.write(MakeByteSpan(v))218k
;
806
    } else {
807
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
808
    }
809
352k
}
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR8AutoFile20TransactionSerParamsELj36EhEvRT_RK9prevectorIXT0_ET1_jiE
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsELj36EhEvRT_RK9prevectorIXT0_ET1_jiE
Line
Count
Source
802
71.1M
{
803
71.1M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
804
71.1M
        WriteCompactSize(os, v.size());
805
71.1M
        if (!v.empty()) 
os.write(MakeByteSpan(v))51.8M
;
806
    } else {
807
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
808
    }
809
71.1M
}
810
811
812
template <typename Stream, unsigned int N, typename T>
813
void Unserialize(Stream& is, prevector<N, T>& v)
814
12.2M
{
815
12.2M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
816
        // Limit size per read so bogus size value won't cause out of memory
817
12.2M
        v.clear();
818
12.2M
        unsigned int nSize = ReadCompactSize(is);
819
12.2M
        unsigned int i = 0;
820
20.8M
        while (i < nSize) {
821
8.60M
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
822
8.60M
            v.resize_uninitialized(i + blk);
823
8.60M
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
824
8.60M
            i += blk;
825
8.60M
        }
826
    } else {
827
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
828
    }
829
12.2M
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsELj36EhEvRT_R9prevectorIXT0_ET1_jiE
Line
Count
Source
814
11.3M
{
815
11.3M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
816
        // Limit size per read so bogus size value won't cause out of memory
817
11.3M
        v.clear();
818
11.3M
        unsigned int nSize = ReadCompactSize(is);
819
11.3M
        unsigned int i = 0;
820
18.9M
        while (i < nSize) {
821
7.68M
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
822
7.68M
            v.resize_uninitialized(i + blk);
823
7.68M
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
824
7.68M
            i += blk;
825
7.68M
        }
826
    } else {
827
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
828
    }
829
11.3M
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamLj36EhEvRT_R9prevectorIXT0_ET1_jiE
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsELj36EhEvRT_R9prevectorIXT0_ET1_jiE
Line
Count
Source
814
931k
{
815
931k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
816
        // Limit size per read so bogus size value won't cause out of memory
817
931k
        v.clear();
818
931k
        unsigned int nSize = ReadCompactSize(is);
819
931k
        unsigned int i = 0;
820
1.85M
        while (i < nSize) {
821
928k
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
822
928k
            v.resize_uninitialized(i + blk);
823
928k
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
824
928k
            i += blk;
825
928k
        }
826
    } else {
827
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
828
    }
829
931k
}
Unexecuted instantiation: _Z11UnserializeI10SpanReaderLj36EhEvRT_R9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsELj36EhEvRT_R9prevectorIXT0_ET1_jiE
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsELj36EhEvRT_R9prevectorIXT0_ET1_jiE
830
831
832
/**
833
 * vector
834
 */
835
template <typename Stream, typename T, typename A>
836
void Serialize(Stream& os, const std::vector<T, A>& v)
837
150M
{
838
150M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
20.9M
        WriteCompactSize(os, v.size());
840
20.9M
        if (!v.empty()) os.write(MakeByteSpan(v));
841
20.9M
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
0
        WriteCompactSize(os, v.size());
846
0
        for (bool elem : v) {
847
0
            ::Serialize(os, elem);
848
0
        }
849
129M
    } else {
850
129M
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
129M
    }
852
150M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE5CTxInNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Line
Count
Source
837
7.28M
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
7.28M
    } else {
850
7.28M
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
7.28M
    }
852
7.28M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE6CTxOutNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Line
Count
Source
837
5.60M
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
5.60M
    } else {
850
5.60M
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
5.60M
    }
852
5.60M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__16vectorIhNS5_9allocatorIhEEEENS7_IS9_EEEvRT_RKNS6_IT0_T1_EE
Line
Count
Source
837
1.68M
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
1.68M
    } else {
850
1.68M
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
1.68M
    }
852
1.68M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RKNS5_6vectorIT0_T1_EE
Line
Count
Source
837
1.68M
{
838
1.68M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
1.68M
        WriteCompactSize(os, v.size());
840
1.68M
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
    } else {
850
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
    }
852
1.68M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEENS5_9allocatorIS9_EEEvRT_RKNS5_6vectorIT0_T1_EE
Line
Count
Source
837
422k
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
422k
    } else {
850
422k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
422k
    }
852
422k
}
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
837
1.59M
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
1.59M
    } else {
850
1.59M
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
1.59M
    }
852
1.59M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE5CTxInNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Line
Count
Source
837
10.7M
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
10.7M
    } else {
850
10.7M
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
10.7M
    }
852
10.7M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CTxOutNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Line
Count
Source
837
5.37M
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
5.37M
    } else {
850
5.37M
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
5.37M
    }
852
5.37M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__16vectorIhNS5_9allocatorIhEEEENS7_IS9_EEEvRT_RKNS6_IT0_T1_EE
Line
Count
Source
837
5.37M
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
5.37M
    } else {
850
5.37M
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
5.37M
    }
852
5.37M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RKNS5_6vectorIT0_T1_EE
Line
Count
Source
837
5.37M
{
838
5.37M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
5.37M
        WriteCompactSize(os, v.size());
840
5.37M
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
    } else {
850
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
    }
852
5.37M
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE6CBlockNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Line
Count
Source
837
916k
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
916k
    } else {
850
916k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
916k
    }
852
916k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEENS5_9allocatorIS9_EEEvRT_RKNS5_6vectorIT0_T1_EE
Line
Count
Source
837
916k
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
916k
    } else {
850
916k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
916k
    }
852
916k
}
_Z9SerializeI10DataStreamhNSt3__19allocatorIhEEEvRT_RKNS1_6vectorIT0_T1_EE
Line
Count
Source
837
382k
{
838
382k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
382k
        WriteCompactSize(os, v.size());
840
382k
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
    } else {
850
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
    }
852
382k
}
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
837
4.58k
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
4.58k
    } else {
850
4.58k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
4.58k
    }
852
4.58k
}
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
837
51.2k
{
838
51.2k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
51.2k
        WriteCompactSize(os, v.size());
840
51.2k
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
    } else {
850
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
    }
852
51.2k
}
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: _Z9SerializeI10DataStreamSt4byteNSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Unexecuted instantiation: _Z9SerializeI10HashWriterbNSt3__19allocatorIbEEEvRT_RKNS1_6vectorIT0_T1_EE
_Z9SerializeI12VectorWriter4CInvNSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Line
Count
Source
837
526k
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
526k
    } else {
850
526k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
526k
    }
852
526k
}
_Z9SerializeI12VectorWriter7uint256NSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Line
Count
Source
837
71.6k
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
71.6k
    } else {
850
71.6k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
71.6k
    }
852
71.6k
}
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
837
21.7k
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
21.7k
    } else {
850
21.7k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
21.7k
    }
852
21.7k
}
_Z9SerializeI10HashWriter7CTxUndoNSt3__19allocatorIS1_EEEvRT_RKNS2_6vectorIT0_T1_EE
Line
Count
Source
837
21.7k
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
21.7k
    } else {
850
21.7k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
21.7k
    }
852
21.7k
}
_Z9SerializeI14BufferedWriterI8AutoFileE7CTxUndoNSt3__19allocatorIS3_EEEvRT_RKNS4_6vectorIT0_T1_EE
Line
Count
Source
837
21.7k
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
21.7k
    } else {
850
21.7k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
21.7k
    }
852
21.7k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEENS7_9allocatorISB_EEEvRT_RKNS7_6vectorIT0_T1_EE
Line
Count
Source
837
28.2k
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
28.2k
    } else {
850
28.2k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
28.2k
    }
852
28.2k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE5CTxInNSt3__19allocatorIS7_EEEvRT_RKNS8_6vectorIT0_T1_EE
Line
Count
Source
837
324k
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
324k
    } else {
850
324k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
324k
    }
852
324k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE6CTxOutNSt3__19allocatorIS7_EEEvRT_RKNS8_6vectorIT0_T1_EE
Line
Count
Source
837
162k
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
162k
    } else {
850
162k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
162k
    }
852
162k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsENSt3__16vectorIhNS7_9allocatorIhEEEENS9_ISB_EEEvRT_RKNS8_IT0_T1_EE
Line
Count
Source
837
162k
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
162k
    } else {
850
162k
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
162k
    }
852
162k
}
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RKNS7_6vectorIT0_T1_EE
Line
Count
Source
837
162k
{
838
162k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
162k
        WriteCompactSize(os, v.size());
840
162k
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
    } else {
850
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
    }
852
162k
}
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
837
44.1M
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
44.1M
    } else {
850
44.1M
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
44.1M
    }
852
44.1M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsE6CTxOutNSt3__19allocatorIS5_EEEvRT_RKNS6_6vectorIT0_T1_EE
Line
Count
Source
837
30.8M
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
30.8M
    } else {
850
30.8M
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
30.8M
    }
852
30.8M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsENSt3__16vectorIhNS5_9allocatorIhEEEENS7_IS9_EEEvRT_RKNS6_IT0_T1_EE
Line
Count
Source
837
13.2M
{
838
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
        WriteCompactSize(os, v.size());
840
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
13.2M
    } else {
850
13.2M
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
13.2M
    }
852
13.2M
}
_Z9SerializeI12ParamsStreamIR10HashWriter20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RKNS5_6vectorIT0_T1_EE
Line
Count
Source
837
13.2M
{
838
13.2M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
839
13.2M
        WriteCompactSize(os, v.size());
840
13.2M
        if (!v.empty()) os.write(MakeByteSpan(v));
841
    } else if constexpr (std::is_same_v<T, bool>) {
842
        // A special case for std::vector<bool>, as dereferencing
843
        // std::vector<bool>::const_iterator does not result in a const bool&
844
        // due to std::vector's special casing for bool arguments.
845
        WriteCompactSize(os, v.size());
846
        for (bool elem : v) {
847
            ::Serialize(os, elem);
848
        }
849
    } else {
850
        Serialize(os, Using<VectorFormatter<DefaultFormatter>>(v));
851
    }
852
13.2M
}
853
854
855
template <typename Stream, typename T, typename A>
856
void Unserialize(Stream& is, std::vector<T, A>& v)
857
28.7M
{
858
28.7M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
859
        // Limit size per read so bogus size value won't cause out of memory
860
5.33M
        v.clear();
861
5.33M
        unsigned int nSize = ReadCompactSize(is);
862
5.33M
        unsigned int i = 0;
863
10.6M
        while (i < nSize) {
864
5.33M
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
865
5.33M
            v.resize(i + blk);
866
5.33M
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
867
5.33M
            i += blk;
868
5.33M
        }
869
23.4M
    } else {
870
23.4M
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
871
23.4M
    }
872
28.7M
}
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
857
9.94M
{
858
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
859
        // Limit size per read so bogus size value won't cause out of memory
860
        v.clear();
861
        unsigned int nSize = ReadCompactSize(is);
862
        unsigned int i = 0;
863
        while (i < nSize) {
864
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
865
            v.resize(i + blk);
866
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
867
            i += blk;
868
        }
869
9.94M
    } else {
870
9.94M
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
871
9.94M
    }
872
9.94M
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE6CTxOutNSt3__19allocatorIS5_EEEvRT_RNS6_6vectorIT0_T1_EE
Line
Count
Source
857
4.97M
{
858
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
859
        // Limit size per read so bogus size value won't cause out of memory
860
        v.clear();
861
        unsigned int nSize = ReadCompactSize(is);
862
        unsigned int i = 0;
863
        while (i < nSize) {
864
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
865
            v.resize(i + blk);
866
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
867
            i += blk;
868
        }
869
4.97M
    } else {
870
4.97M
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
871
4.97M
    }
872
4.97M
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsENSt3__16vectorIhNS5_9allocatorIhEEEENS7_IS9_EEEvRT_RNS6_IT0_T1_EE
Line
Count
Source
857
4.97M
{
858
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
859
        // Limit size per read so bogus size value won't cause out of memory
860
        v.clear();
861
        unsigned int nSize = ReadCompactSize(is);
862
        unsigned int i = 0;
863
        while (i < nSize) {
864
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
865
            v.resize(i + blk);
866
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
867
            i += blk;
868
        }
869
4.97M
    } else {
870
4.97M
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
871
4.97M
    }
872
4.97M
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RNS5_6vectorIT0_T1_EE
Line
Count
Source
857
4.97M
{
858
4.97M
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
859
        // Limit size per read so bogus size value won't cause out of memory
860
4.97M
        v.clear();
861
4.97M
        unsigned int nSize = ReadCompactSize(is);
862
4.97M
        unsigned int i = 0;
863
9.94M
        while (i < nSize) {
864
4.97M
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
865
4.97M
            v.resize(i + blk);
866
4.97M
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
867
4.97M
            i += blk;
868
4.97M
        }
869
    } else {
870
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
871
    }
872
4.97M
}
Unexecuted instantiation: _Z11UnserializeI10DataStream7uint256NSt3__19allocatorIS1_EEEvRT_RNS2_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI10DataStreamhNSt3__19allocatorIhEEEvRT_RNS1_6vectorIT0_T1_EE
Unexecuted instantiation: _Z11UnserializeI12BufferedFilehNSt3__19allocatorIhEEEvRT_RNS1_6vectorIT0_T1_EE
_Z11UnserializeI10DataStream20PrefilledTransactionNSt3__19allocatorIS1_EEEvRT_RNS2_6vectorIT0_T1_EE
Line
Count
Source
857
1.35M
{
858
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
859
        // Limit size per read so bogus size value won't cause out of memory
860
        v.clear();
861
        unsigned int nSize = ReadCompactSize(is);
862
        unsigned int i = 0;
863
        while (i < nSize) {
864
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
865
            v.resize(i + blk);
866
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
867
            i += blk;
868
        }
869
1.35M
    } else {
870
1.35M
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
871
1.35M
    }
872
1.35M
}
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
857
622k
{
858
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
859
        // Limit size per read so bogus size value won't cause out of memory
860
        v.clear();
861
        unsigned int nSize = ReadCompactSize(is);
862
        unsigned int i = 0;
863
        while (i < nSize) {
864
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
865
            v.resize(i + blk);
866
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
867
            i += blk;
868
        }
869
622k
    } else {
870
622k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
871
622k
    }
872
622k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE6CTxOutNSt3__19allocatorIS5_EEEvRT_RNS6_6vectorIT0_T1_EE
Line
Count
Source
857
311k
{
858
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
859
        // Limit size per read so bogus size value won't cause out of memory
860
        v.clear();
861
        unsigned int nSize = ReadCompactSize(is);
862
        unsigned int i = 0;
863
        while (i < nSize) {
864
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
865
            v.resize(i + blk);
866
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
867
            i += blk;
868
        }
869
311k
    } else {
870
311k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
871
311k
    }
872
311k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsENSt3__16vectorIhNS5_9allocatorIhEEEENS7_IS9_EEEvRT_RNS6_IT0_T1_EE
Line
Count
Source
857
311k
{
858
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
859
        // Limit size per read so bogus size value won't cause out of memory
860
        v.clear();
861
        unsigned int nSize = ReadCompactSize(is);
862
        unsigned int i = 0;
863
        while (i < nSize) {
864
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
865
            v.resize(i + blk);
866
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
867
            i += blk;
868
        }
869
311k
    } else {
870
311k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
871
311k
    }
872
311k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsEhNSt3__19allocatorIhEEEvRT_RNS5_6vectorIT0_T1_EE
Line
Count
Source
857
311k
{
858
311k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
859
        // Limit size per read so bogus size value won't cause out of memory
860
311k
        v.clear();
861
311k
        unsigned int nSize = ReadCompactSize(is);
862
311k
        unsigned int i = 0;
863
622k
        while (i < nSize) {
864
311k
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
865
311k
            v.resize(i + blk);
866
311k
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
867
311k
            i += blk;
868
311k
        }
869
    } else {
870
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
871
    }
872
311k
}
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
_Z11UnserializeI10DataStreamSt4byteNSt3__19allocatorIS1_EEEvRT_RNS2_6vectorIT0_T1_EE
Line
Count
Source
857
51.2k
{
858
51.2k
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
859
        // Limit size per read so bogus size value won't cause out of memory
860
51.2k
        v.clear();
861
51.2k
        unsigned int nSize = ReadCompactSize(is);
862
51.2k
        unsigned int i = 0;
863
102k
        while (i < nSize) {
864
51.2k
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
865
51.2k
            v.resize(i + blk);
866
51.2k
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
867
51.2k
            i += blk;
868
51.2k
        }
869
    } else {
870
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
871
    }
872
51.2k
}
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
857
615k
{
858
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
859
        // Limit size per read so bogus size value won't cause out of memory
860
        v.clear();
861
        unsigned int nSize = ReadCompactSize(is);
862
        unsigned int i = 0;
863
        while (i < nSize) {
864
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
865
            v.resize(i + blk);
866
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
867
            i += blk;
868
        }
869
615k
    } else {
870
615k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
871
615k
    }
872
615k
}
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsENSt3__110shared_ptrIK12CTransactionEENS5_9allocatorIS9_EEEvRT_RNS5_6vectorIT0_T1_EE
Line
Count
Source
857
308k
{
858
    if constexpr (BasicByte<T>) { // Use optimized version for unformatted basic bytes
859
        // Limit size per read so bogus size value won't cause out of memory
860
        v.clear();
861
        unsigned int nSize = ReadCompactSize(is);
862
        unsigned int i = 0;
863
        while (i < nSize) {
864
            unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T)));
865
            v.resize(i + blk);
866
            is.read(std::as_writable_bytes(std::span{&v[i], blk}));
867
            i += blk;
868
        }
869
308k
    } else {
870
308k
        Unserialize(is, Using<VectorFormatter<DefaultFormatter>>(v));
871
308k
    }
872
308k
}
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
873
874
875
/**
876
 * pair
877
 */
878
template<typename Stream, typename K, typename T>
879
void Serialize(Stream& os, const std::pair<K, T>& item)
880
268k
{
881
268k
    Serialize(os, item.first);
882
268k
    Serialize(os, item.second);
883
268k
}
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_9allocatorIcEEEE7CScriptEvRT_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
880
113k
{
881
113k
    Serialize(os, item.first);
882
113k
    Serialize(os, item.second);
883
113k
}
_Z9SerializeI10DataStreamhiEvRT_RKNSt3__14pairIT0_T1_EE
Line
Count
Source
880
104k
{
881
104k
    Serialize(os, item.first);
882
104k
    Serialize(os, item.second);
883
104k
}
_Z9SerializeI10DataStreamhNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEvRT_RKNS1_4pairIT0_T1_EE
Line
Count
Source
880
51.2k
{
881
51.2k
    Serialize(os, item.first);
882
51.2k
    Serialize(os, item.second);
883
51.2k
}
Unexecuted instantiation: _Z9SerializeI8AutoFileK22transaction_identifierILb0EExEvRT_RKNSt3__14pairIT0_T1_EE
884
885
template<typename Stream, typename K, typename T>
886
void Unserialize(Stream& is, std::pair<K, T>& item)
887
10.3M
{
888
10.3M
    Unserialize(is, item.first);
889
10.3M
    Unserialize(is, item.second);
890
10.3M
}
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
887
10.3M
{
888
10.3M
    Unserialize(is, item.first);
889
10.3M
    Unserialize(is, item.second);
890
10.3M
}
Unexecuted instantiation: _Z11UnserializeI8AutoFile22transaction_identifierILb0EExEvRT_RNSt3__14pairIT0_T1_EE
891
892
893
894
/**
895
 * map
896
 */
897
template<typename Stream, typename K, typename T, typename Pred, typename A>
898
void Serialize(Stream& os, const std::map<K, T, Pred, A>& m)
899
0
{
900
0
    WriteCompactSize(os, m.size());
901
0
    for (const auto& entry : m)
902
0
        Serialize(os, entry);
903
0
}
Unexecuted instantiation: _Z9SerializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_NS1_4lessIS7_EENS5_INS1_4pairIKS7_S7_EEEEEvRT_RKNS1_3mapIT0_T1_T2_T3_EE
Unexecuted instantiation: _Z9SerializeI8AutoFile22transaction_identifierILb0EExNSt3__14lessIS2_EENS3_9allocatorINS3_4pairIKS2_xEEEEEvRT_RKNS3_3mapIT0_T1_T2_T3_EE
904
905
template<typename Stream, typename K, typename T, typename Pred, typename A>
906
void Unserialize(Stream& is, std::map<K, T, Pred, A>& m)
907
0
{
908
0
    m.clear();
909
0
    unsigned int nSize = ReadCompactSize(is);
910
0
    typename std::map<K, T, Pred, A>::iterator mi = m.begin();
911
0
    for (unsigned int i = 0; i < nSize; i++)
912
0
    {
913
0
        std::pair<K, T> item;
914
0
        Unserialize(is, item);
915
0
        mi = m.insert(mi, item);
916
0
    }
917
0
}
Unexecuted instantiation: _Z11UnserializeI10DataStreamNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_NS1_4lessIS7_EENS5_INS1_4pairIKS7_S7_EEEEEvRT_RNS1_3mapIT0_T1_T2_T3_EE
Unexecuted instantiation: _Z11UnserializeI8AutoFile22transaction_identifierILb0EExNSt3__14lessIS2_EENS3_9allocatorINS3_4pairIKS2_xEEEEEvRT_RNS3_3mapIT0_T1_T2_T3_EE
918
919
920
921
/**
922
 * set
923
 */
924
template<typename Stream, typename K, typename Pred, typename A>
925
void Serialize(Stream& os, const std::set<K, Pred, A>& m)
926
0
{
927
0
    WriteCompactSize(os, m.size());
928
0
    for (typename std::set<K, Pred, A>::const_iterator it = m.begin(); it != m.end(); ++it)
929
0
        Serialize(os, (*it));
930
0
}
Unexecuted instantiation: _Z9SerializeI12VectorWriter7uint256NSt3__14lessIS1_EENS2_9allocatorIS1_EEEvRT_RKNS2_3setIT0_T1_T2_EE
Unexecuted instantiation: _Z9SerializeI8AutoFile22transaction_identifierILb0EENSt3__14lessIS2_EENS3_9allocatorIS2_EEEvRT_RKNS3_3setIT0_T1_T2_EE
931
932
template<typename Stream, typename K, typename Pred, typename A>
933
void Unserialize(Stream& is, std::set<K, Pred, A>& m)
934
0
{
935
0
    m.clear();
936
0
    unsigned int nSize = ReadCompactSize(is);
937
0
    typename std::set<K, Pred, A>::iterator it = m.begin();
938
0
    for (unsigned int i = 0; i < nSize; i++)
939
0
    {
940
0
        K key;
941
0
        Unserialize(is, key);
942
0
        it = m.insert(it, key);
943
0
    }
944
0
}
Unexecuted instantiation: _Z11UnserializeI10DataStream7uint256NSt3__14lessIS1_EENS2_9allocatorIS1_EEEvRT_RNS2_3setIT0_T1_T2_EE
Unexecuted instantiation: _Z11UnserializeI8AutoFile22transaction_identifierILb0EENSt3__14lessIS2_EENS3_9allocatorIS2_EEEvRT_RNS3_3setIT0_T1_T2_EE
945
946
947
948
/**
949
 * unique_ptr
950
 */
951
template<typename Stream, typename T> void
952
Serialize(Stream& os, const std::unique_ptr<const T>& p)
953
{
954
    Serialize(os, *p);
955
}
956
957
template<typename Stream, typename T>
958
void Unserialize(Stream& is, std::unique_ptr<const T>& p)
959
{
960
    p.reset(new T(deserialize, is));
961
}
962
963
964
965
/**
966
 * shared_ptr
967
 */
968
template<typename Stream, typename T> void
969
Serialize(Stream& os, const std::shared_ptr<const T>& p)
970
2.82M
{
971
2.82M
    Serialize(os, *p);
972
2.82M
}
_Z9SerializeI12ParamsStreamIR12SizeComputer20TransactionSerParamsE12CTransactionEvRT_RKNSt3__110shared_ptrIKT0_EE
Line
Count
Source
970
967k
{
971
967k
    Serialize(os, *p);
972
967k
}
_Z9SerializeI12ParamsStreamIR12VectorWriter20TransactionSerParamsE12CTransactionEvRT_RKNSt3__110shared_ptrIKT0_EE
Line
Count
Source
970
1.69M
{
971
1.69M
    Serialize(os, *p);
972
1.69M
}
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIR10DataStream20TransactionSerParamsE12CTransactionEvRT_RKNSt3__110shared_ptrIKT0_EE
Unexecuted instantiation: _Z9SerializeI12ParamsStreamIRS0_IR12VectorWriter20TransactionSerParamsES3_E12CTransactionEvRT_RKNSt3__110shared_ptrIKT0_EE
_Z9SerializeI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsE12CTransactionEvRT_RKNSt3__110shared_ptrIKT0_EE
Line
Count
Source
970
162k
{
971
162k
    Serialize(os, *p);
972
162k
}
973
974
template<typename Stream, typename T>
975
void Unserialize(Stream& is, std::shared_ptr<const T>& p)
976
5.28M
{
977
5.28M
    p = std::make_shared<const T>(deserialize, is);
978
5.28M
}
_Z11UnserializeI12ParamsStreamIR10DataStream20TransactionSerParamsE12CTransactionEvRT_RNSt3__110shared_ptrIKT0_EE
Line
Count
Source
976
4.97M
{
977
4.97M
    p = std::make_shared<const T>(deserialize, is);
978
4.97M
}
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR8AutoFile20TransactionSerParamsE12CTransactionEvRT_RNSt3__110shared_ptrIKT0_EE
_Z11UnserializeI12ParamsStreamIR10SpanReader20TransactionSerParamsE12CTransactionEvRT_RNSt3__110shared_ptrIKT0_EE
Line
Count
Source
976
311k
{
977
311k
    p = std::make_shared<const T>(deserialize, is);
978
311k
}
Unexecuted instantiation: _Z11UnserializeI12ParamsStreamIR12BufferedFile20TransactionSerParamsE12CTransactionEvRT_RNSt3__110shared_ptrIKT0_EE
979
980
/**
981
 * Support for (un)serializing many things at once
982
 */
983
984
template <typename Stream, typename... Args>
985
void SerializeMany(Stream& s, const Args&... args)
986
301M
{
987
301M
    (::Serialize(s, args), ...);
988
301M
}
_Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_
Line
Count
Source
986
5.60M
{
987
5.60M
    (::Serialize(s, args), ...);
988
5.60M
}
_Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ9prevectorILj36EhjiEEEvRT_DpRKT0_
Line
Count
Source
986
11.9M
{
987
11.9M
    (::Serialize(s, args), ...);
988
11.9M
}
_Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Line
Count
Source
986
5.60M
{
987
5.60M
    (::Serialize(s, args), ...);
988
5.60M
}
_Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJx7CScriptEEvRT_DpRKT0_
Line
Count
Source
986
6.36M
{
987
6.36M
    (::Serialize(s, args), ...);
988
6.36M
}
_Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS6_10shared_ptrIK12CTransactionEENS6_9allocatorISB_EEEEEEvRT_DpRKT0_
Line
Count
Source
986
422k
{
987
422k
    (::Serialize(s, args), ...);
988
422k
}
_Z13SerializeManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJi7uint256S5_jjjEEvRT_DpRKT0_
Line
Count
Source
986
422k
{
987
422k
    (::Serialize(s, args), ...);
988
422k
}
_Z13SerializeManyI12VectorWriterJ25CBlockHeaderAndShortTxIDsEEvRT_DpRKT0_
Line
Count
Source
986
1.59M
{
987
1.59M
    (::Serialize(s, args), ...);
988
1.59M
}
_Z13SerializeManyI12VectorWriterJ12CBlockHeadery7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS7_9allocatorIyEEEEENS8_I20PrefilledTransactionNS9_ISF_EEEEEEvRT_DpRKT0_
Line
Count
Source
986
1.59M
{
987
1.59M
    (::Serialize(s, args), ...);
988
1.59M
}
_Z13SerializeManyI12VectorWriterJi7uint256S1_jjjEEvRT_DpRKT0_
Line
Count
Source
986
1.59M
{
987
1.59M
    (::Serialize(s, args), ...);
988
1.59M
}
_Z13SerializeManyI12VectorWriterJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS1_I16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEEEvRT_DpRKT0_
Line
Count
Source
986
1.66M
{
987
1.66M
    (::Serialize(s, args), ...);
988
1.66M
}
_Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_
Line
Count
Source
986
5.37M
{
987
5.37M
    (::Serialize(s, args), ...);
988
5.37M
}
_Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Line
Count
Source
986
5.37M
{
987
5.37M
    (::Serialize(s, args), ...);
988
5.37M
}
_Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ9prevectorILj36EhjiEEEvRT_DpRKT0_
Line
Count
Source
986
12.3M
{
987
12.3M
    (::Serialize(s, args), ...);
988
12.3M
}
_Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJx7CScriptEEvRT_DpRKT0_
Line
Count
Source
986
6.97M
{
987
6.97M
    (::Serialize(s, args), ...);
988
6.97M
}
_Z13SerializeManyI12VectorWriterJ17BlockTransactionsEEvRT_DpRKT0_
Line
Count
Source
986
276k
{
987
276k
    (::Serialize(s, args), ...);
988
276k
}
_Z13SerializeManyI12VectorWriterJ7uint25613ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEEEvRT_DpRKT0_
Line
Count
Source
986
276k
{
987
276k
    (::Serialize(s, args), ...);
988
276k
}
_Z13SerializeManyI12VectorWriterJ13ParamsWrapperI20TransactionSerParamsNSt3__16vectorI6CBlockNS3_9allocatorIS5_EEEEEEEvRT_DpRKT0_
Line
Count
Source
986
916k
{
987
916k
    (::Serialize(s, args), ...);
988
916k
}
_Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS6_10shared_ptrIK12CTransactionEENS6_9allocatorISB_EEEEEEvRT_DpRKT0_
Line
Count
Source
986
916k
{
987
916k
    (::Serialize(s, args), ...);
988
916k
}
_Z13SerializeManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJi7uint256S5_jjjEEvRT_DpRKT0_
Line
Count
Source
986
916k
{
987
916k
    (::Serialize(s, args), ...);
988
916k
}
_Z13SerializeManyI12VectorWriterJbyEEvRT_DpRKT0_
Line
Count
Source
986
182k
{
987
182k
    (::Serialize(s, args), ...);
988
182k
}
_Z13SerializeManyI12VectorWriterJ13ParamsWrapperI20TransactionSerParamsK12CTransactionEEEvRT_DpRKT0_
Line
Count
Source
986
3.68M
{
987
3.68M
    (::Serialize(s, args), ...);
988
3.68M
}
_Z13SerializeManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEEEvRT_DpRKT0_
Line
Count
Source
986
36.2k
{
987
36.2k
    (::Serialize(s, args), ...);
988
36.2k
}
_Z13SerializeManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERKyEEEvRT_DpRKT0_
Line
Count
Source
986
3.79k
{
987
3.79k
    (::Serialize(s, args), ...);
988
3.79k
}
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ12CBlockHeadery7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS7_9allocatorIyEEEEENS8_I20PrefilledTransactionNS9_ISF_EEEEEEvRT_DpRKT0_
_Z13SerializeManyI10DataStreamJi7uint256S1_jjjEEvRT_DpRKT0_
Line
Count
Source
986
2.96M
{
987
2.96M
    (::Serialize(s, args), ...);
988
2.96M
}
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS1_I16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ9prevectorILj36EhjiEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJx7CScriptEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJxiEEvRT_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: _Z13SerializeManyI10DataStreamJ9prevectorILj36EhjiEEEvRT_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
986
31.3k
{
987
31.3k
    (::Serialize(s, args), ...);
988
31.3k
}
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ13ParamsWrapperI20TransactionSerParamsKNSt3__110shared_ptrIK12CTransactionEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ13ParamsWrapperI20TransactionSerParamsKNSt3__110shared_ptrIK12CTransactionEEEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12SizeComputerJ6CTxOutEEvRT_DpRKT0_
_Z13SerializeManyI12SizeComputerJx7CScriptEEvRT_DpRKT0_
Line
Count
Source
986
1.82M
{
987
1.82M
    (::Serialize(s, args), ...);
988
1.82M
}
_Z13SerializeManyI12SizeComputerJ9prevectorILj36EhjiEEEvRT_DpRKT0_
Line
Count
Source
986
1.82M
{
987
1.82M
    (::Serialize(s, args), ...);
988
1.82M
}
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
986
10.4k
{
987
10.4k
    (::Serialize(s, args), ...);
988
10.4k
}
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
986
20.8k
{
987
20.8k
    (::Serialize(s, args), ...);
988
20.8k
}
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
986
10.1k
{
987
10.1k
    (::Serialize(s, args), ...);
988
10.1k
}
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
986
10.4k
{
987
10.4k
    (::Serialize(s, args), ...);
988
10.4k
}
_Z13SerializeManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERKiEEEvRT_DpRKT0_
Line
Count
Source
986
13.4k
{
987
13.4k
    (::Serialize(s, args), ...);
988
13.4k
}
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_EJ9prevectorILj36EhjiEEEvRT_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_
_Z13SerializeManyI12VectorWriterJi7WrapperI19CustomUintFormatterILi8ELb0EER12ServiceFlagsExx13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceExSB_yNSt3__112basic_stringIcNSC_11char_traitsIcEENSC_9allocatorIcEEEEibEEvRT_DpRKT0_
Line
Count
Source
986
192k
{
987
192k
    (::Serialize(s, args), ...);
988
192k
}
_Z13SerializeManyI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEJS3_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEvRT_DpRKT0_
Line
Count
Source
986
769k
{
987
769k
    (::Serialize(s, args), ...);
988
769k
}
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: _Z13SerializeManyI10DataStreamJxEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ7Num3072EEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJ11FlatFilePos7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEEEvRT_DpRKT0_
_Z13SerializeManyI10HashWriterJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Line
Count
Source
986
504k
{
987
504k
    (::Serialize(s, args), ...);
988
504k
}
_Z13SerializeManyI10HashWriterJx7CScriptEEvRT_DpRKT0_
Line
Count
Source
986
504k
{
987
504k
    (::Serialize(s, args), ...);
988
504k
}
_Z13SerializeManyI10HashWriterJ9prevectorILj36EhjiEEEvRT_DpRKT0_
Line
Count
Source
986
504k
{
987
504k
    (::Serialize(s, args), ...);
988
504k
}
_Z13SerializeManyI12VectorWriterJ14CMessageHeaderEEvRT_DpRKT0_
Line
Count
Source
986
8.05M
{
987
8.05M
    (::Serialize(s, args), ...);
988
8.05M
}
_Z13SerializeManyI12VectorWriterJNSt3__15arrayIhLm4EEEA12_cjA4_hEEvRT_DpRKT0_
Line
Count
Source
986
8.05M
{
987
8.05M
    (::Serialize(s, args), ...);
988
8.05M
}
_Z13SerializeManyI12VectorWriterJNSt3__16vectorI4CInvNS1_9allocatorIS3_EEEEEEvRT_DpRKT0_
Line
Count
Source
986
526k
{
987
526k
    (::Serialize(s, args), ...);
988
526k
}
_Z13SerializeManyI12VectorWriterJj7uint256EEvRT_DpRKT0_
Line
Count
Source
986
534k
{
987
534k
    (::Serialize(s, args), ...);
988
534k
}
_Z13SerializeManyI12VectorWriterJiyxy13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEyS5_yNSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEibEEvRT_DpRKT0_
Line
Count
Source
986
192k
{
987
192k
    (::Serialize(s, args), ...);
988
192k
}
Unexecuted instantiation: _Z13SerializeManyI12VectorWriterJjyEEvRT_DpRKT0_
_Z13SerializeManyI12VectorWriterJNSt3__15arrayISt4byteLm168EEEEEvRT_DpRKT0_
Line
Count
Source
986
5.66k
{
987
5.66k
    (::Serialize(s, args), ...);
988
5.66k
}
_Z13SerializeManyI12VectorWriterJ13CBlockLocator7uint256EEvRT_DpRKT0_
Line
Count
Source
986
71.6k
{
987
71.6k
    (::Serialize(s, args), ...);
988
71.6k
}
_Z13SerializeManyI12VectorWriterJiEEvRT_DpRKT0_
Line
Count
Source
986
71.6k
{
987
71.6k
    (::Serialize(s, args), ...);
988
71.6k
}
_Z13SerializeManyI12VectorWriterJNSt3__16vectorI7uint256NS1_9allocatorIS3_EEEEEEvRT_DpRKT0_
Line
Count
Source
986
71.6k
{
987
71.6k
    (::Serialize(s, args), ...);
988
71.6k
}
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
986
16.5k
{
987
16.5k
    (::Serialize(s, args), ...);
988
16.5k
}
_Z13SerializeManyI12VectorWriterJ7uint2567WrapperI15VectorFormatterI19DifferenceFormatterERKNSt3__16vectorItNS6_9allocatorItEEEEEEEvRT_DpRKT0_
Line
Count
Source
986
16.5k
{
987
16.5k
    (::Serialize(s, args), ...);
988
16.5k
}
_Z13SerializeManyI12VectorWriterJyEEvRT_DpRKT0_
Line
Count
Source
986
106k
{
987
106k
    (::Serialize(s, args), ...);
988
106k
}
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
986
69.6k
{
987
69.6k
    (::Serialize(s, args), ...);
988
69.6k
}
_Z13SerializeManyI12SizeComputerJNSt3__16vectorI7CTxUndoNS1_9allocatorIS3_EEEEEEvRT_DpRKT0_
Line
Count
Source
986
21.7k
{
987
21.7k
    (::Serialize(s, args), ...);
988
21.7k
}
_Z13SerializeManyI12SizeComputerJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS5_9allocatorIS7_EEEEEEEvRT_DpRKT0_
Line
Count
Source
986
104k
{
987
104k
    (::Serialize(s, args), ...);
988
104k
}
_Z13SerializeManyI12SizeComputerJ7WrapperI17AmountCompressionRKxES1_I17ScriptCompressionRK7CScriptEEEvRT_DpRKT0_
Line
Count
Source
986
104k
{
987
104k
    (::Serialize(s, args), ...);
988
104k
}
_Z13SerializeManyI10HashWriterJNSt3__16vectorI7CTxUndoNS1_9allocatorIS3_EEEEEEvRT_DpRKT0_
Line
Count
Source
986
21.7k
{
987
21.7k
    (::Serialize(s, args), ...);
988
21.7k
}
_Z13SerializeManyI10HashWriterJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS5_9allocatorIS7_EEEEEEEvRT_DpRKT0_
Line
Count
Source
986
104k
{
987
104k
    (::Serialize(s, args), ...);
988
104k
}
_Z13SerializeManyI10HashWriterJ7WrapperI17AmountCompressionRKxES1_I17ScriptCompressionRK7CScriptEEEvRT_DpRKT0_
Line
Count
Source
986
104k
{
987
104k
    (::Serialize(s, args), ...);
988
104k
}
_Z13SerializeManyI14BufferedWriterI8AutoFileEJNSt3__16vectorI7CTxUndoNS3_9allocatorIS5_EEEEEEvRT_DpRKT0_
Line
Count
Source
986
21.7k
{
987
21.7k
    (::Serialize(s, args), ...);
988
21.7k
}
_Z13SerializeManyI14BufferedWriterI8AutoFileEJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS7_9allocatorIS9_EEEEEEEvRT_DpRKT0_
Line
Count
Source
986
104k
{
987
104k
    (::Serialize(s, args), ...);
988
104k
}
_Z13SerializeManyI14BufferedWriterI8AutoFileEJ7WrapperI17AmountCompressionRKxES3_I17ScriptCompressionRK7CScriptEEEvRT_DpRKT0_
Line
Count
Source
986
104k
{
987
104k
    (::Serialize(s, args), ...);
988
104k
}
_Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEvRT_DpRKT0_
Line
Count
Source
986
28.2k
{
987
28.2k
    (::Serialize(s, args), ...);
988
28.2k
}
_Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJi7uint256S7_jjjEEvRT_DpRKT0_
Line
Count
Source
986
28.2k
{
987
28.2k
    (::Serialize(s, args), ...);
988
28.2k
}
_Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_
Line
Count
Source
986
162k
{
987
162k
    (::Serialize(s, args), ...);
988
162k
}
_Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Line
Count
Source
986
162k
{
987
162k
    (::Serialize(s, args), ...);
988
162k
}
_Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ9prevectorILj36EhjiEEEvRT_DpRKT0_
Line
Count
Source
986
352k
{
987
352k
    (::Serialize(s, args), ...);
988
352k
}
_Z13SerializeManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJx7CScriptEEvRT_DpRKT0_
Line
Count
Source
986
190k
{
987
190k
    (::Serialize(s, args), ...);
988
190k
}
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ9prevectorILj36EhjiEEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJx7CScriptEEvRT_DpRKT0_
Unexecuted instantiation: _Z13SerializeManyI10DataStreamJjj6CTxOutEEvRT_DpRKT0_
_Z13SerializeManyI10DataStreamJh22transaction_identifierILb0EE7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEvRT_DpRKT0_
Line
Count
Source
986
1.54M
{
987
1.54M
    (::Serialize(s, args), ...);
988
1.54M
}
_Z13SerializeManyI10HashWriterJi7uint256S1_jjjEEvRT_DpRKT0_
Line
Count
Source
986
24.5M
{
987
24.5M
    (::Serialize(s, args), ...);
988
24.5M
}
_Z13SerializeManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ9COutPoint7CScriptjEEvRT_DpRKT0_
Line
Count
Source
986
30.8M
{
987
30.8M
    (::Serialize(s, args), ...);
988
30.8M
}
_Z13SerializeManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ22transaction_identifierILb0EEjEEvRT_DpRKT0_
Line
Count
Source
986
30.8M
{
987
30.8M
    (::Serialize(s, args), ...);
988
30.8M
}
_Z13SerializeManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ9prevectorILj36EhjiEEEvRT_DpRKT0_
Line
Count
Source
986
71.1M
{
987
71.1M
    (::Serialize(s, args), ...);
988
71.1M
}
_Z13SerializeManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJx7CScriptEEvRT_DpRKT0_
Line
Count
Source
986
40.2M
{
987
40.2M
    (::Serialize(s, args), ...);
988
40.2M
}
989
990
template <typename Stream, typename... Args>
991
inline void UnserializeMany(Stream& s, Args&&... args)
992
178M
{
993
178M
    (::Unserialize(s, args), ...);
994
178M
}
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR12CBlockHeaderRNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJRiR7uint256S7_RjS8_S8_EEvRT_DpOT0_
_Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR9COutPointR7CScriptRjEEvRT_DpOT0_
Line
Count
Source
992
4.97M
{
993
4.97M
    (::Unserialize(s, args), ...);
994
4.97M
}
_Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR22transaction_identifierILb0EERjEEvRT_DpOT0_
Line
Count
Source
992
4.97M
{
993
4.97M
    (::Unserialize(s, args), ...);
994
4.97M
}
_Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR9prevectorILj36EhjiEEEvRT_DpOT0_
Line
Count
Source
992
11.3M
{
993
11.3M
    (::Unserialize(s, args), ...);
994
11.3M
}
_Z15UnserializeManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJRxR7CScriptEEvRT_DpOT0_
Line
Count
Source
992
6.32M
{
993
6.32M
    (::Unserialize(s, args), ...);
994
6.32M
}
_Z15UnserializeManyI10DataStreamJRiR7uint256S3_RjS4_S4_EEvRT_DpOT0_
Line
Count
Source
992
2.07M
{
993
2.07M
    (::Unserialize(s, args), ...);
994
2.07M
}
_Z15UnserializeManyI10DataStreamJRiEEvRT_DpOT0_
Line
Count
Source
992
10.3M
{
993
10.3M
    (::Unserialize(s, args), ...);
994
10.3M
}
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRNSt3__16vectorI7uint256NS1_9allocatorIS3_EEEEEEvRT_DpOT0_
_Z15UnserializeManyI10DataStreamJR7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEvRT_DpOT0_
Line
Count
Source
992
41.4M
{
993
41.4M
    (::Unserialize(s, args), ...);
994
41.4M
}
_Z15UnserializeManyI10DataStreamJR7WrapperI15VarIntFormatterIL10VarIntMode0EERyEEEvRT_DpOT0_
Line
Count
Source
992
102k
{
993
102k
    (::Unserialize(s, args), ...);
994
102k
}
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR22transaction_identifierILb0EERjEEvRT_DpOT0_
_Z15UnserializeManyI10DataStreamJR7WrapperI15VarIntFormatterIL10VarIntMode1EERiEEEvRT_DpOT0_
Line
Count
Source
992
30.9M
{
993
30.9M
    (::Unserialize(s, args), ...);
994
30.9M
}
_Z15UnserializeManyI10DataStreamJR7uint256EEvRT_DpOT0_
Line
Count
Source
992
20.6M
{
993
20.6M
    (::Unserialize(s, args), ...);
994
20.6M
}
_Z15UnserializeManyI10DataStreamJRjEEvRT_DpOT0_
Line
Count
Source
992
30.9M
{
993
30.9M
    (::Unserialize(s, args), ...);
994
30.9M
}
_Z15UnserializeManyI10DataStreamJR7WrapperI17AmountCompressionRxERS1_I17ScriptCompressionR7CScriptEEEvRT_DpOT0_
Line
Count
Source
992
1.34M
{
993
1.34M
    (::Unserialize(s, args), ...);
994
1.34M
}
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
992
1.35M
{
993
1.35M
    (::Unserialize(s, args), ...);
994
1.35M
}
_Z15UnserializeManyI10DataStreamJR7WrapperI20CompactSizeFormatterILb1EERtER13ParamsWrapperI20TransactionSerParamsS1_I16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEEEEvRT_DpOT0_
Line
Count
Source
992
1.41M
{
993
1.41M
    (::Unserialize(s, args), ...);
994
1.41M
}
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRxRiEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR12CBlockHeaderR18CPartialMerkleTreeEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRjRNSt3__16vectorI7uint256NS2_9allocatorIS4_EEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRNSt3__16vectorIhNS1_9allocatorIhEEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR9prevectorILj36EhjiEEEvRT_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
992
191k
{
993
191k
    (::Unserialize(s, args), ...);
994
191k
}
_Z15UnserializeManyI10DataStreamJRNSt3__15arrayIhLm4EEERA12_cRjRA4_hEEvRT_DpOT0_
Line
Count
Source
992
6.84M
{
993
6.84M
    (::Unserialize(s, args), ...);
994
6.84M
}
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRjR7uint256EEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJRNSt3__16vectorIhNS1_9allocatorIhEEEERjS7_RhEEvRT_DpOT0_
_Z15UnserializeManyI10DataStreamJR7uint256R13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEEEEvRT_DpOT0_
Line
Count
Source
992
186k
{
993
186k
    (::Unserialize(s, args), ...);
994
186k
}
Unexecuted instantiation: _Z15UnserializeManyI10DataStreamJR7uint256R7WrapperI15VectorFormatterI19DifferenceFormatterERNSt3__16vectorItNS7_9allocatorItEEEEEEEvRT_DpOT0_
_Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR9COutPointR7CScriptRjEEvRT_DpOT0_
Line
Count
Source
992
311k
{
993
311k
    (::Unserialize(s, args), ...);
994
311k
}
_Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR22transaction_identifierILb0EERjEEvRT_DpOT0_
Line
Count
Source
992
311k
{
993
311k
    (::Unserialize(s, args), ...);
994
311k
}
_Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR9prevectorILj36EhjiEEEvRT_DpOT0_
Line
Count
Source
992
931k
{
993
931k
    (::Unserialize(s, args), ...);
994
931k
}
_Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJRxR7CScriptEEvRT_DpOT0_
Line
Count
Source
992
619k
{
993
619k
    (::Unserialize(s, args), ...);
994
619k
}
Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJRxR7CScriptEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI10SpanReaderJR9prevectorILj36EhjiEEEvRT_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: _Z15UnserializeManyI10DataStreamJRxEEvRT_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: _Z15UnserializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJR9prevectorILj36EhjiEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJRxR7CScriptEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamI10DataStreamN8CAddress9SerParamsEEJR8CNetAddrR7WrapperI19CustomUintFormatterILi2ELb1EERtEEEvRT_DpOT0_
_Z15UnserializeManyI12HashVerifierI14BufferedReaderI8AutoFileEEJRNSt3__16vectorI7CTxUndoNS5_9allocatorIS7_EEEEEEvRT_DpOT0_
Line
Count
Source
992
615k
{
993
615k
    (::Unserialize(s, args), ...);
994
615k
}
Unexecuted instantiation: _Z15UnserializeManyI12HashVerifierI14BufferedReaderI8AutoFileEEJR7WrapperI15VectorFormatterI17TxInUndoFormatterERNSt3__16vectorI4CoinNS9_9allocatorISB_EEEEEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12HashVerifierI14BufferedReaderI8AutoFileEEJR7WrapperI17AmountCompressionRxERS5_I17ScriptCompressionR7CScriptEEEvRT_DpOT0_
_Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR12CBlockHeaderRNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEvRT_DpOT0_
Line
Count
Source
992
308k
{
993
308k
    (::Unserialize(s, args), ...);
994
308k
}
_Z15UnserializeManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJRiR7uint256S7_RjS8_S8_EEvRT_DpOT0_
Line
Count
Source
992
308k
{
993
308k
    (::Unserialize(s, args), ...);
994
308k
}
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: _Z15UnserializeManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR9prevectorILj36EhjiEEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJRxR7CScriptEEvRT_DpOT0_
Unexecuted instantiation: _Z15UnserializeManyI8AutoFileJR7WrapperI17AmountCompressionRxERS1_I17ScriptCompressionR7CScriptEEEvRT_DpOT0_
995
996
/**
997
 * Support for all macros providing or using the ser_action parameter of the SerializationOps method.
998
 */
999
struct ActionSerialize {
1000
0
    static constexpr bool ForRead() { return false; }
1001
1002
    template<typename Stream, typename... Args>
1003
    static void SerReadWriteMany(Stream& s, const Args&... args)
1004
286M
    {
1005
286M
        ::SerializeMany(s, args...);
1006
286M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Line
Count
Source
1004
5.60M
    {
1005
5.60M
        ::SerializeMany(s, args...);
1006
5.60M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ9prevectorILj36EhjiEEEEvRT_DpRKT0_
Line
Count
Source
1004
11.9M
    {
1005
11.9M
        ::SerializeMany(s, args...);
1006
11.9M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Line
Count
Source
1004
5.60M
    {
1005
5.60M
        ::SerializeMany(s, args...);
1006
5.60M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJx7CScriptEEEvRT_DpRKT0_
Line
Count
Source
1004
6.36M
    {
1005
6.36M
        ::SerializeMany(s, args...);
1006
6.36M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1004
422k
    {
1005
422k
        ::SerializeMany(s, args...);
1006
422k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12SizeComputer20TransactionSerParamsEJi7uint256S6_jjjEEEvRT_DpRKT0_
Line
Count
Source
1004
422k
    {
1005
422k
        ::SerializeMany(s, args...);
1006
422k
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ12CBlockHeadery7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS8_9allocatorIyEEEEENS9_I20PrefilledTransactionNSA_ISG_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1004
1.59M
    {
1005
1.59M
        ::SerializeMany(s, args...);
1006
1.59M
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJi7uint256S2_jjjEEEvRT_DpRKT0_
Line
Count
Source
1004
1.59M
    {
1005
1.59M
        ::SerializeMany(s, args...);
1006
1.59M
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS2_I16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEEEEvRT_DpRKT0_
Line
Count
Source
1004
1.66M
    {
1005
1.66M
        ::SerializeMany(s, args...);
1006
1.66M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Line
Count
Source
1004
5.37M
    {
1005
5.37M
        ::SerializeMany(s, args...);
1006
5.37M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Line
Count
Source
1004
5.37M
    {
1005
5.37M
        ::SerializeMany(s, args...);
1006
5.37M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ9prevectorILj36EhjiEEEEvRT_DpRKT0_
Line
Count
Source
1004
12.3M
    {
1005
12.3M
        ::SerializeMany(s, args...);
1006
12.3M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJx7CScriptEEEvRT_DpRKT0_
Line
Count
Source
1004
6.97M
    {
1005
6.97M
        ::SerializeMany(s, args...);
1006
6.97M
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ7uint25613ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEEEEEvRT_DpRKT0_
Line
Count
Source
1004
276k
    {
1005
276k
        ::SerializeMany(s, args...);
1006
276k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1004
916k
    {
1005
916k
        ::SerializeMany(s, args...);
1006
916k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriter20TransactionSerParamsEJi7uint256S6_jjjEEEvRT_DpRKT0_
Line
Count
Source
1004
916k
    {
1005
916k
        ::SerializeMany(s, args...);
1006
916k
    }
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEEEEvRT_DpRKT0_
Line
Count
Source
1004
36.2k
    {
1005
36.2k
        ::SerializeMany(s, args...);
1006
36.2k
    }
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERKyEEEEvRT_DpRKT0_
Line
Count
Source
1004
3.79k
    {
1005
3.79k
        ::SerializeMany(s, args...);
1006
3.79k
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ12CBlockHeadery7WrapperI15VectorFormatterI19CustomUintFormatterILi6ELb0EEERKNSt3__16vectorIyNS8_9allocatorIyEEEEENS9_I20PrefilledTransactionNSA_ISG_EEEEEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJi7uint256S2_jjjEEEvRT_DpRKT0_
Line
Count
Source
1004
2.96M
    {
1005
2.96M
        ::SerializeMany(s, args...);
1006
2.96M
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI20CompactSizeFormatterILb1EERKtE13ParamsWrapperI20TransactionSerParamsS2_I16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ9prevectorILj36EhjiEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJx7CScriptEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJxiEEEvRT_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: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ9prevectorILj36EhjiEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERKiES2_IS3_ILS4_0EERKjEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJA4_hNSt3__16vectorIjNS3_9allocatorIjEEEEEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJx7CScriptEEEvRT_DpRKT0_
Line
Count
Source
1004
1.82M
    {
1005
1.82M
        ::SerializeMany(s, args...);
1006
1.82M
    }
_ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ9prevectorILj36EhjiEEEEvRT_DpRKT0_
Line
Count
Source
1004
1.82M
    {
1005
1.82M
        ::SerializeMany(s, args...);
1006
1.82M
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJx7CScriptEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ7uint256EEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7uint256EEEvRT_DpRKT0_
Line
Count
Source
1004
20.8k
    {
1005
20.8k
        ::SerializeMany(s, args...);
1006
20.8k
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS7_10shared_ptrIK12CTransactionEENS7_9allocatorISC_EEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJi7uint256S6_jjjEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJiEEEvRT_DpRKT0_
Line
Count
Source
1004
10.4k
    {
1005
10.4k
        ::SerializeMany(s, args...);
1006
10.4k
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJNSt3__16vectorI7uint256NS2_9allocatorIS4_EEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS6_9allocatorIS8_EEEEEEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI17AmountCompressionRKxES2_I17ScriptCompressionRK7CScriptEEEEvRT_DpRKT0_
Line
Count
Source
1004
10.1k
    {
1005
10.1k
        ::SerializeMany(s, args...);
1006
10.1k
    }
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
1004
10.4k
    {
1005
10.4k
        ::SerializeMany(s, args...);
1006
10.4k
    }
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERKiEEEEvRT_DpRKT0_
Line
Count
Source
1004
13.4k
    {
1005
13.4k
        ::SerializeMany(s, args...);
1006
13.4k
    }
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJjEEEvRT_DpRKT0_
Line
Count
Source
1004
31.3k
    {
1005
31.3k
        ::SerializeMany(s, args...);
1006
31.3k
    }
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_EJ9prevectorILj36EhjiEEEEvRT_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_
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEJS4_7WrapperI19CustomUintFormatterILi2ELb1EERKtEEEEvRT_DpRKT0_
Line
Count
Source
1004
769k
    {
1005
769k
        ::SerializeMany(s, args...);
1006
769k
    }
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: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJxEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ7Num3072EEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJ11FlatFilePos7WrapperI15VarIntFormatterIL10VarIntMode0EERKjEEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI10HashWriterJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Line
Count
Source
1004
504k
    {
1005
504k
        ::SerializeMany(s, args...);
1006
504k
    }
_ZN15ActionSerialize16SerReadWriteManyI10HashWriterJx7CScriptEEEvRT_DpRKT0_
Line
Count
Source
1004
504k
    {
1005
504k
        ::SerializeMany(s, args...);
1006
504k
    }
_ZN15ActionSerialize16SerReadWriteManyI10HashWriterJ9prevectorILj36EhjiEEEEvRT_DpRKT0_
Line
Count
Source
1004
504k
    {
1005
504k
        ::SerializeMany(s, args...);
1006
504k
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJNSt3__15arrayIhLm4EEEA12_cjA4_hEEEvRT_DpRKT0_
Line
Count
Source
1004
8.05M
    {
1005
8.05M
        ::SerializeMany(s, args...);
1006
8.05M
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJj7uint256EEEvRT_DpRKT0_
Line
Count
Source
1004
534k
    {
1005
534k
        ::SerializeMany(s, args...);
1006
534k
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJiEEEvRT_DpRKT0_
Line
Count
Source
1004
71.6k
    {
1005
71.6k
        ::SerializeMany(s, args...);
1006
71.6k
    }
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJNSt3__16vectorI7uint256NS2_9allocatorIS4_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1004
71.6k
    {
1005
71.6k
        ::SerializeMany(s, args...);
1006
71.6k
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ12CBlockHeader18CPartialMerkleTreeEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJjNSt3__16vectorI7uint256NS2_9allocatorIS4_EEEEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJNSt3__16vectorIhNS2_9allocatorIhEEEEEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI12VectorWriterJ7uint2567WrapperI15VectorFormatterI19DifferenceFormatterERKNSt3__16vectorItNS7_9allocatorItEEEEEEEEvRT_DpRKT0_
Line
Count
Source
1004
16.5k
    {
1005
16.5k
        ::SerializeMany(s, args...);
1006
16.5k
    }
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
1004
21.7k
    {
1005
21.7k
        ::SerializeMany(s, args...);
1006
21.7k
    }
_ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS6_9allocatorIS8_EEEEEEEEvRT_DpRKT0_
Line
Count
Source
1004
104k
    {
1005
104k
        ::SerializeMany(s, args...);
1006
104k
    }
_ZN15ActionSerialize16SerReadWriteManyI12SizeComputerJ7WrapperI17AmountCompressionRKxES2_I17ScriptCompressionRK7CScriptEEEEvRT_DpRKT0_
Line
Count
Source
1004
104k
    {
1005
104k
        ::SerializeMany(s, args...);
1006
104k
    }
_ZN15ActionSerialize16SerReadWriteManyI10HashWriterJNSt3__16vectorI7CTxUndoNS2_9allocatorIS4_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1004
21.7k
    {
1005
21.7k
        ::SerializeMany(s, args...);
1006
21.7k
    }
_ZN15ActionSerialize16SerReadWriteManyI10HashWriterJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS6_9allocatorIS8_EEEEEEEEvRT_DpRKT0_
Line
Count
Source
1004
104k
    {
1005
104k
        ::SerializeMany(s, args...);
1006
104k
    }
_ZN15ActionSerialize16SerReadWriteManyI10HashWriterJ7WrapperI17AmountCompressionRKxES2_I17ScriptCompressionRK7CScriptEEEEvRT_DpRKT0_
Line
Count
Source
1004
104k
    {
1005
104k
        ::SerializeMany(s, args...);
1006
104k
    }
_ZN15ActionSerialize16SerReadWriteManyI14BufferedWriterI8AutoFileEJNSt3__16vectorI7CTxUndoNS4_9allocatorIS6_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1004
21.7k
    {
1005
21.7k
        ::SerializeMany(s, args...);
1006
21.7k
    }
_ZN15ActionSerialize16SerReadWriteManyI14BufferedWriterI8AutoFileEJ7WrapperI15VectorFormatterI17TxInUndoFormatterERKNSt3__16vectorI4CoinNS8_9allocatorISA_EEEEEEEEvRT_DpRKT0_
Line
Count
Source
1004
104k
    {
1005
104k
        ::SerializeMany(s, args...);
1006
104k
    }
_ZN15ActionSerialize16SerReadWriteManyI14BufferedWriterI8AutoFileEJ7WrapperI17AmountCompressionRKxES4_I17ScriptCompressionRK7CScriptEEEEvRT_DpRKT0_
Line
Count
Source
1004
104k
    {
1005
104k
        ::SerializeMany(s, args...);
1006
104k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ12CBlockHeaderNSt3__16vectorINS9_10shared_ptrIK12CTransactionEENS9_9allocatorISE_EEEEEEEvRT_DpRKT0_
Line
Count
Source
1004
28.2k
    {
1005
28.2k
        ::SerializeMany(s, args...);
1006
28.2k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJi7uint256S8_jjjEEEvRT_DpRKT0_
Line
Count
Source
1004
28.2k
    {
1005
28.2k
        ::SerializeMany(s, args...);
1006
28.2k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Line
Count
Source
1004
162k
    {
1005
162k
        ::SerializeMany(s, args...);
1006
162k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Line
Count
Source
1004
162k
    {
1005
162k
        ::SerializeMany(s, args...);
1006
162k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJ9prevectorILj36EhjiEEEEvRT_DpRKT0_
Line
Count
Source
1004
352k
    {
1005
352k
        ::SerializeMany(s, args...);
1006
352k
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsEJx7CScriptEEEvRT_DpRKT0_
Line
Count
Source
1004
190k
    {
1005
190k
        ::SerializeMany(s, args...);
1006
190k
    }
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJ9prevectorILj36EhjiEEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJx7CScriptEEEvRT_DpRKT0_
Unexecuted instantiation: _ZN15ActionSerialize16SerReadWriteManyI10DataStreamJjj6CTxOutEEEvRT_DpRKT0_
_ZN15ActionSerialize16SerReadWriteManyI10DataStreamJh22transaction_identifierILb0EE7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEEvRT_DpRKT0_
Line
Count
Source
1004
1.54M
    {
1005
1.54M
        ::SerializeMany(s, args...);
1006
1.54M
    }
_ZN15ActionSerialize16SerReadWriteManyI10HashWriterJi7uint256S2_jjjEEEvRT_DpRKT0_
Line
Count
Source
1004
24.5M
    {
1005
24.5M
        ::SerializeMany(s, args...);
1006
24.5M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ9COutPoint7CScriptjEEEvRT_DpRKT0_
Line
Count
Source
1004
30.8M
    {
1005
30.8M
        ::SerializeMany(s, args...);
1006
30.8M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ22transaction_identifierILb0EEjEEEvRT_DpRKT0_
Line
Count
Source
1004
30.8M
    {
1005
30.8M
        ::SerializeMany(s, args...);
1006
30.8M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJ9prevectorILj36EhjiEEEEvRT_DpRKT0_
Line
Count
Source
1004
71.1M
    {
1005
71.1M
        ::SerializeMany(s, args...);
1006
71.1M
    }
_ZN15ActionSerialize16SerReadWriteManyI12ParamsStreamIR10HashWriter20TransactionSerParamsEJx7CScriptEEEvRT_DpRKT0_
Line
Count
Source
1004
40.2M
    {
1005
40.2M
        ::SerializeMany(s, args...);
1006
40.2M
    }
1007
1008
    template<typename Stream, typename Type, typename Fn>
1009
    static void SerRead(Stream& s, Type&&, Fn&&)
1010
0
    {
1011
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: coinstatsindex.cpp:_ZN15ActionSerialize7SerReadI10DataStreamRKN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_RS3_E_EEvSA_OS7_OSB_
Unexecuted instantiation: coinstatsindex.cpp:_ZN15ActionSerialize7SerReadI10DataStreamRKN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_RS3_E0_EEvSA_OS7_OSB_
Unexecuted instantiation: coinstatsindex.cpp:_ZN15ActionSerialize7SerReadI10DataStreamRKN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_RS3_E1_EEvSA_OS7_OSB_
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_
1012
1013
    template<typename Stream, typename Type, typename Fn>
1014
    static void SerWrite(Stream& s, Type&& obj, Fn&& fn)
1015
0
    {
1016
0
        fn(s, std::forward<Type>(obj));
1017
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: coinstatsindex.cpp:_ZN15ActionSerialize8SerWriteI10DataStreamRKN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_S5_E_EEvSA_OS7_OSB_
Unexecuted instantiation: coinstatsindex.cpp:_ZN15ActionSerialize8SerWriteI10DataStreamRKN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_S5_E0_EEvSA_OS7_OSB_
Unexecuted instantiation: coinstatsindex.cpp:_ZN15ActionSerialize8SerWriteI10DataStreamRKN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S4_S_EEvRT0_RT_T1_EUlRS1_S5_E1_EEvSA_OS7_OSB_
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_
1018
};
1019
struct ActionUnserialize {
1020
0
    static constexpr bool ForRead() { return true; }
1021
1022
    template<typename Stream, typename... Args>
1023
    static void SerReadWriteMany(Stream& s, Args&&... args)
1024
178M
    {
1025
178M
        ::UnserializeMany(s, args...);
1026
178M
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR12CBlockHeaderRNSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJRiR7uint256S8_RjS9_S9_EEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR9COutPointR7CScriptRjEEEvRT_DpOT0_
Line
Count
Source
1024
4.97M
    {
1025
4.97M
        ::UnserializeMany(s, args...);
1026
4.97M
    }
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR22transaction_identifierILb0EERjEEEvRT_DpOT0_
Line
Count
Source
1024
4.97M
    {
1025
4.97M
        ::UnserializeMany(s, args...);
1026
4.97M
    }
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJR9prevectorILj36EhjiEEEEvRT_DpOT0_
Line
Count
Source
1024
11.3M
    {
1025
11.3M
        ::UnserializeMany(s, args...);
1026
11.3M
    }
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10DataStream20TransactionSerParamsEJRxR7CScriptEEEvRT_DpOT0_
Line
Count
Source
1024
6.32M
    {
1025
6.32M
        ::UnserializeMany(s, args...);
1026
6.32M
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRiR7uint256S4_RjS5_S5_EEEvRT_DpOT0_
Line
Count
Source
1024
2.07M
    {
1025
2.07M
        ::UnserializeMany(s, args...);
1026
2.07M
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRiEEEvRT_DpOT0_
Line
Count
Source
1024
10.3M
    {
1025
10.3M
        ::UnserializeMany(s, args...);
1026
10.3M
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRNSt3__16vectorI7uint256NS2_9allocatorIS4_EEEEEEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEEEvRT_DpOT0_
Line
Count
Source
1024
41.4M
    {
1025
41.4M
        ::UnserializeMany(s, args...);
1026
41.4M
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode0EERyEEEEvRT_DpOT0_
Line
Count
Source
1024
102k
    {
1025
102k
        ::UnserializeMany(s, args...);
1026
102k
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR22transaction_identifierILb0EERjEEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI15VarIntFormatterIL10VarIntMode1EERiEEEEvRT_DpOT0_
Line
Count
Source
1024
30.9M
    {
1025
30.9M
        ::UnserializeMany(s, args...);
1026
30.9M
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR7uint256EEEvRT_DpOT0_
Line
Count
Source
1024
20.6M
    {
1025
20.6M
        ::UnserializeMany(s, args...);
1026
20.6M
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRjEEEvRT_DpOT0_
Line
Count
Source
1024
30.9M
    {
1025
30.9M
        ::UnserializeMany(s, args...);
1026
30.9M
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI17AmountCompressionRxES2_I17ScriptCompressionR7CScriptEEEEvRT_DpOT0_
Line
Count
Source
1024
1.34M
    {
1025
1.34M
        ::UnserializeMany(s, args...);
1026
1.34M
    }
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
1024
1.35M
    {
1025
1.35M
        ::UnserializeMany(s, args...);
1026
1.35M
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJ7WrapperI20CompactSizeFormatterILb1EERtE13ParamsWrapperI20TransactionSerParamsS2_I16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEEEEEvRT_DpOT0_
Line
Count
Source
1024
1.41M
    {
1025
1.41M
        ::UnserializeMany(s, args...);
1026
1.41M
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRxRiEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR12CBlockHeaderR18CPartialMerkleTreeEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRjRNSt3__16vectorI7uint256NS3_9allocatorIS5_EEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRNSt3__16vectorIhNS2_9allocatorIhEEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR9prevectorILj36EhjiEEEEvRT_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
1024
191k
    {
1025
191k
        ::UnserializeMany(s, args...);
1026
191k
    }
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRNSt3__15arrayIhLm4EEERA12_cRjRA4_hEEEvRT_DpOT0_
Line
Count
Source
1024
6.84M
    {
1025
6.84M
        ::UnserializeMany(s, args...);
1026
6.84M
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRjR7uint256EEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRNSt3__16vectorIhNS2_9allocatorIhEEEERjS8_RhEEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR7uint25613ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINSA_10shared_ptrIK12CTransactionEENSA_9allocatorISF_EEEEEEEEEvRT_DpOT0_
Line
Count
Source
1024
186k
    {
1025
186k
        ::UnserializeMany(s, args...);
1026
186k
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJR7uint2567WrapperI15VectorFormatterI19DifferenceFormatterERNSt3__16vectorItNS8_9allocatorItEEEEEEEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR9COutPointR7CScriptRjEEEvRT_DpOT0_
Line
Count
Source
1024
311k
    {
1025
311k
        ::UnserializeMany(s, args...);
1026
311k
    }
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR22transaction_identifierILb0EERjEEEvRT_DpOT0_
Line
Count
Source
1024
311k
    {
1025
311k
        ::UnserializeMany(s, args...);
1026
311k
    }
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR9prevectorILj36EhjiEEEEvRT_DpOT0_
Line
Count
Source
1024
931k
    {
1025
931k
        ::UnserializeMany(s, args...);
1026
931k
    }
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJRxR7CScriptEEEvRT_DpOT0_
Line
Count
Source
1024
619k
    {
1025
619k
        ::UnserializeMany(s, args...);
1026
619k
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJRxR7CScriptEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI10SpanReaderJR9prevectorILj36EhjiEEEEvRT_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: _ZN17ActionUnserialize16SerReadWriteManyI10DataStreamJRxEEEvRT_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: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJR9prevectorILj36EhjiEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR8AutoFile20TransactionSerParamsEJRxR7CScriptEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamI10DataStreamN8CAddress9SerParamsEEJR8CNetAddr7WrapperI19CustomUintFormatterILi2ELb1EERtEEEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI12HashVerifierI14BufferedReaderI8AutoFileEEJRNSt3__16vectorI7CTxUndoNS6_9allocatorIS8_EEEEEEEvRT_DpOT0_
Line
Count
Source
1024
615k
    {
1025
615k
        ::UnserializeMany(s, args...);
1026
615k
    }
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12HashVerifierI14BufferedReaderI8AutoFileEEJ7WrapperI15VectorFormatterI17TxInUndoFormatterERNSt3__16vectorI4CoinNSA_9allocatorISC_EEEEEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12HashVerifierI14BufferedReaderI8AutoFileEEJ7WrapperI17AmountCompressionRxES6_I17ScriptCompressionR7CScriptEEEEvRT_DpOT0_
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJR12CBlockHeaderRNSt3__16vectorINS8_10shared_ptrIK12CTransactionEENS8_9allocatorISD_EEEEEEEvRT_DpOT0_
Line
Count
Source
1024
308k
    {
1025
308k
        ::UnserializeMany(s, args...);
1026
308k
    }
_ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR10SpanReader20TransactionSerParamsEJRiR7uint256S8_RjS9_S9_EEEvRT_DpOT0_
Line
Count
Source
1024
308k
    {
1025
308k
        ::UnserializeMany(s, args...);
1026
308k
    }
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: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJR9prevectorILj36EhjiEEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI12ParamsStreamIR12BufferedFile20TransactionSerParamsEJRxR7CScriptEEEvRT_DpOT0_
Unexecuted instantiation: _ZN17ActionUnserialize16SerReadWriteManyI8AutoFileJ7WrapperI17AmountCompressionRxES2_I17ScriptCompressionR7CScriptEEEEvRT_DpOT0_
1027
1028
    template<typename Stream, typename Type, typename Fn>
1029
    static void SerRead(Stream& s, Type&& obj, Fn&& fn)
1030
0
    {
1031
0
        fn(s, std::forward<Type>(obj));
1032
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_
Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize7SerReadI10DataStreamRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E_EEvS9_OS6_OSA_
Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize7SerReadI10DataStreamRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E0_EEvS9_OS6_OSA_
Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize7SerReadI10DataStreamRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_S4_E1_EEvS9_OS6_OSA_
1033
1034
    template<typename Stream, typename Type, typename Fn>
1035
    static void SerWrite(Stream& s, Type&&, Fn&&)
1036
0
    {
1037
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_
Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize8SerWriteI10DataStreamRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RKS3_E_EEvS9_OS6_OSA_
Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize8SerWriteI10DataStreamRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RKS3_E0_EEvS9_OS6_OSA_
Unexecuted instantiation: coinstatsindex.cpp:_ZN17ActionUnserialize8SerWriteI10DataStreamRN12_GLOBAL__N_15DBValEZNS3_16SerializationOpsIS1_S3_S_EEvRT0_RT_T1_EUlRS1_RKS3_E1_EEvS9_OS6_OSA_
1038
};
1039
1040
/* ::GetSerializeSize implementations
1041
 *
1042
 * Computing the serialized size of objects is done through a special stream
1043
 * object of type SizeComputer, which only records the number of bytes written
1044
 * to it.
1045
 *
1046
 * If your Serialize or SerializationOp method has non-trivial overhead for
1047
 * serialization, it may be worthwhile to implement a specialized version for
1048
 * SizeComputer, which uses the s.seek() method to record bytes that would
1049
 * be written instead.
1050
 */
1051
class SizeComputer
1052
{
1053
protected:
1054
    size_t nSize{0};
1055
1056
public:
1057
6.90M
    SizeComputer() = default;
1058
1059
    void write(std::span<const std::byte> src)
1060
80.4M
    {
1061
80.4M
        this->nSize += src.size();
1062
80.4M
    }
1063
1064
    /** Pretend _nSize bytes are written, without specifying them. */
1065
    void seek(size_t _nSize)
1066
1.94M
    {
1067
1.94M
        this->nSize += _nSize;
1068
1.94M
    }
1069
1070
    template<typename T>
1071
    SizeComputer& operator<<(const T& obj)
1072
7.21M
    {
1073
7.21M
        ::Serialize(*this, obj);
1074
7.21M
        return (*this);
1075
7.21M
    }
_ZN12SizeComputerlsI13ParamsWrapperI20TransactionSerParamsK12CTransactionEEERS_RKT_
Line
Count
Source
1072
4.63M
    {
1073
4.63M
        ::Serialize(*this, obj);
1074
4.63M
        return (*this);
1075
4.63M
    }
_ZN12SizeComputerlsI13ParamsWrapperI20TransactionSerParamsK6CBlockEEERS_RKT_
Line
Count
Source
1072
422k
    {
1073
422k
        ::Serialize(*this, obj);
1074
422k
        return (*this);
1075
422k
    }
Unexecuted instantiation: _ZN12SizeComputerlsI13ParamsWrapperI20TransactionSerParamsK5CTxInEEERS_RKT_
Unexecuted instantiation: _ZN12SizeComputerlsINSt3__16vectorINS2_IhNS1_9allocatorIhEEEENS3_IS5_EEEEEERS_RKT_
Unexecuted instantiation: _ZN12SizeComputerlsINSt3__14spanIKhLm32EEEEERS_RKT_
_ZN12SizeComputerlsI6CTxOutEERS_RKT_
Line
Count
Source
1072
1.82M
    {
1073
1.82M
        ::Serialize(*this, obj);
1074
1.82M
        return (*this);
1075
1.82M
    }
Unexecuted instantiation: _ZN12SizeComputerlsI25CBlockHeaderAndShortTxIDsEERS_RKT_
Unexecuted instantiation: _ZN12SizeComputerlsI7uint256EERS_RKT_
Unexecuted instantiation: _ZN12SizeComputerlsINSt3__16vectorIhNS1_9allocatorIhEEEEEERS_RKT_
_ZN12SizeComputerlsI10CBlockUndoEERS_RKT_
Line
Count
Source
1072
21.7k
    {
1073
21.7k
        ::Serialize(*this, obj);
1074
21.7k
        return (*this);
1075
21.7k
    }
_ZN12SizeComputerlsI7WrapperI15VarIntFormatterIL10VarIntMode0EERyEEERS_RKT_
Line
Count
Source
1072
104k
    {
1073
104k
        ::Serialize(*this, obj);
1074
104k
        return (*this);
1075
104k
    }
Unexecuted instantiation: _ZN12SizeComputerlsINSt3__14spanIhLm18446744073709551615EEEEERS_RKT_
_ZN12SizeComputerlsI7WrapperI15VarIntFormatterIL10VarIntMode0EERjEEERS_RKT_
Line
Count
Source
1072
104k
    {
1073
104k
        ::Serialize(*this, obj);
1074
104k
        return (*this);
1075
104k
    }
_ZN12SizeComputerlsINSt3__14spanIKhLm18446744073709551615EEEEERS_RKT_
Line
Count
Source
1072
104k
    {
1073
104k
        ::Serialize(*this, obj);
1074
104k
        return (*this);
1075
104k
    }
Unexecuted instantiation: _ZN12SizeComputerlsI13ParamsWrapperI20TransactionSerParamsKNSt3__110shared_ptrIK12CTransactionEEEEERS_RKT_
1076
1077
6.90M
    size_t size() const {
1078
6.90M
        return nSize;
1079
6.90M
    }
1080
};
1081
1082
template<typename I>
1083
inline void WriteVarInt(SizeComputer &s, I n)
1084
{
1085
    s.seek(GetSizeOfVarInt<I>(n));
1086
}
1087
1088
inline void WriteCompactSize(SizeComputer &s, uint64_t nSize)
1089
1.94M
{
1090
1.94M
    s.seek(GetSizeOfCompactSize(nSize));
1091
1.94M
}
1092
1093
template <typename T>
1094
size_t GetSerializeSize(const T& t)
1095
6.90M
{
1096
6.90M
    return (SizeComputer() << t).size();
1097
6.90M
}
_Z16GetSerializeSizeI13ParamsWrapperI20TransactionSerParamsK12CTransactionEEmRKT_
Line
Count
Source
1095
4.63M
{
1096
4.63M
    return (SizeComputer() << t).size();
1097
4.63M
}
_Z16GetSerializeSizeI13ParamsWrapperI20TransactionSerParamsK6CBlockEEmRKT_
Line
Count
Source
1095
422k
{
1096
422k
    return (SizeComputer() << t).size();
1097
422k
}
Unexecuted instantiation: _Z16GetSerializeSizeI13ParamsWrapperI20TransactionSerParamsK5CTxInEEmRKT_
Unexecuted instantiation: _Z16GetSerializeSizeINSt3__16vectorINS1_IhNS0_9allocatorIhEEEENS2_IS4_EEEEEmRKT_
_Z16GetSerializeSizeI6CTxOutEmRKT_
Line
Count
Source
1095
1.82M
{
1096
1.82M
    return (SizeComputer() << t).size();
1097
1.82M
}
Unexecuted instantiation: _Z16GetSerializeSizeI25CBlockHeaderAndShortTxIDsEmRKT_
Unexecuted instantiation: _Z16GetSerializeSizeI7uint256EmRKT_
Unexecuted instantiation: _Z16GetSerializeSizeINSt3__16vectorIhNS0_9allocatorIhEEEEEmRKT_
_Z16GetSerializeSizeI10CBlockUndoEmRKT_
Line
Count
Source
1095
21.7k
{
1096
21.7k
    return (SizeComputer() << t).size();
1097
21.7k
}
Unexecuted instantiation: _Z16GetSerializeSizeI13ParamsWrapperI20TransactionSerParamsKNSt3__110shared_ptrIK12CTransactionEEEEmRKT_
1098
1099
//! Check if type contains a stream by seeing if has a GetStream() method.
1100
template<typename T>
1101
concept ContainsStream = requires(T t) { t.GetStream(); };
1102
1103
/** Wrapper that overrides the GetParams() function of a stream. */
1104
template <typename SubStream, typename Params>
1105
class ParamsStream
1106
{
1107
    const Params& m_params;
1108
    // If ParamsStream constructor is passed an lvalue argument, Substream will
1109
    // be a reference type, and m_substream will reference that argument.
1110
    // Otherwise m_substream will be a substream instance and move from the
1111
    // argument. Letting ParamsStream contain a substream instance instead of
1112
    // just a reference is useful to make the ParamsStream object self contained
1113
    // and let it do cleanup when destroyed, for example by closing files if
1114
    // SubStream is a file stream.
1115
    SubStream m_substream;
1116
1117
public:
1118
49.3M
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, 
m_substream0
{std::forward<SubStream>(substream)} {}
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsEC2ES1_RKS2_
Line
Count
Source
1118
5.05M
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsEC2ES1_RKS2_
Line
Count
Source
1118
5.13M
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsEC2ES1_RKS2_
Line
Count
Source
1118
6.54M
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}
_ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEC2ES1_RKS3_
Line
Count
Source
1118
382k
    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
1118
191k
    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
1118
308k
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}
_ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEEC2ES1_RKS3_
Line
Count
Source
1118
769k
    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
1118
28.2k
    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
1118
30.8M
    ParamsStream(SubStream&& substream, const Params& params LIFETIMEBOUND) : m_params{params}, m_substream{std::forward<SubStream>(substream)} {}
1119
1120
    template <typename NestedSubstream, typename Params1, typename Params2, typename... NestedParams>
1121
    ParamsStream(NestedSubstream&& s, const Params1& params1 LIFETIMEBOUND, const Params2& params2 LIFETIMEBOUND, const NestedParams&... params LIFETIMEBOUND)
1122
        : ParamsStream{::ParamsStream{std::forward<NestedSubstream>(s), params2, params...}, params1} {}
1123
1124
275M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsIjEERS3_RKT_
Line
Count
Source
1124
11.2M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsINSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEERS3_RKT_
Line
Count
Source
1124
7.28M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsINSt3__14spanIKhLm32EEEEERS3_RKT_
Line
Count
Source
1124
6.44M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsIhEERS3_RKT_
Line
Count
Source
1124
1.68M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsINSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEERS3_RKT_
Line
Count
Source
1124
5.60M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsElsINSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEERS3_RKT_
Line
Count
Source
1124
1.68M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsIjEERS3_RKT_
Line
Count
Source
1124
10.7M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsINSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEERS3_RKT_
Line
Count
Source
1124
10.7M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsINSt3__14spanIKhLm32EEEEERS3_RKT_
Line
Count
Source
1124
7.20M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsIhEERS3_RKT_
Line
Count
Source
1124
5.37M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsINSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEERS3_RKT_
Line
Count
Source
1124
5.37M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsElsINSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEERS3_RKT_
Line
Count
Source
1124
5.37M
    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
1124
769k
    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
1124
218k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsIjEERS5_RKT_
Line
Count
Source
1124
324k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsINSt3__16vectorI5CTxInNS7_9allocatorIS9_EEEEEERS5_RKT_
Line
Count
Source
1124
324k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsIhEERS5_RKT_
Line
Count
Source
1124
162k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsINSt3__16vectorI6CTxOutNS7_9allocatorIS9_EEEEEERS5_RKT_
Line
Count
Source
1124
162k
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR14BufferedWriterI8AutoFileE20TransactionSerParamsElsINSt3__16vectorINS8_IhNS7_9allocatorIhEEEENS9_ISB_EEEEEERS5_RKT_
Line
Count
Source
1124
162k
    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
1124
61.7M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsINSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEERS3_RKT_
Line
Count
Source
1124
44.1M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsINSt3__14spanIKhLm32EEEEERS3_RKT_
Line
Count
Source
1124
30.8M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsIhEERS3_RKT_
Line
Count
Source
1124
13.2M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsINSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEERS3_RKT_
Line
Count
Source
1124
30.8M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsElsINSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEERS3_RKT_
Line
Count
Source
1124
13.2M
    template <typename U> ParamsStream& operator<<(const U& obj) { ::Serialize(*this, obj); return *this; }
1125
38.3M
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRjEERS3_OT_
Line
Count
Source
1125
9.94M
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRNSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEERS3_OT_
Line
Count
Source
1125
9.94M
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRhEERS3_OT_
Line
Count
Source
1125
4.97M
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRNSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEERS3_OT_
Line
Count
Source
1125
4.97M
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsErsIRNSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEERS3_OT_
Line
Count
Source
1125
4.97M
    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
1125
382k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsI7WrapperI20CompactSizeFormatterILb1EERmEEERS4_OT_
Line
Count
Source
1125
382k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEErsINSt3__14spanIhLm18446744073709551615EEEEERS4_OT_
Line
Count
Source
1125
382k
    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
1125
191k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRjEERS3_OT_
Line
Count
Source
1125
622k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRNSt3__16vectorI5CTxInNS5_9allocatorIS7_EEEEEERS3_OT_
Line
Count
Source
1125
622k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRhEERS3_OT_
Line
Count
Source
1125
311k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRNSt3__16vectorI6CTxOutNS5_9allocatorIS7_EEEEEERS3_OT_
Line
Count
Source
1125
311k
    template <typename U> ParamsStream& operator>>(U&& obj) { ::Unserialize(*this, obj); return *this; }
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsErsIRNSt3__16vectorINS6_IhNS5_9allocatorIhEEEENS7_IS9_EEEEEERS3_OT_
Line
Count
Source
1125
311k
    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_
1126
626M
    void write(std::span<const std::byte> src) { GetStream().write(src); }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Line
Count
Source
1126
76.0M
    void write(std::span<const std::byte> src) { GetStream().write(src); }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Line
Count
Source
1126
100M
    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
1126
1.53M
    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
1126
2.90M
    void write(std::span<const std::byte> src) { GetStream().write(src); }
Unexecuted instantiation: _ZN12ParamsStreamIR8AutoFile20TransactionSerParamsE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsE5writeENSt3__14spanIKSt4byteLm18446744073709551615EEE
Line
Count
Source
1126
445M
    void write(std::span<const std::byte> src) { GetStream().write(src); }
1127
95.0M
    void read(std::span<std::byte> dst) { GetStream().read(dst); }
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Line
Count
Source
1127
85.1M
    void read(std::span<std::byte> dst) { GetStream().read(dst); }
_ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Line
Count
Source
1127
1.14M
    void read(std::span<std::byte> dst) { GetStream().read(dst); }
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE4readENSt3__14spanISt4byteLm18446744073709551615EEE
_ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Line
Count
Source
1127
383k
    void read(std::span<std::byte> dst) { GetStream().read(dst); }
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsE4readENSt3__14spanISt4byteLm18446744073709551615EEE
Line
Count
Source
1127
8.37M
    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
1128
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
1129
0
    bool eof() const { return GetStream().eof(); }
1130
    size_t size() const { return GetStream().size(); }
1131
1132
    //! Get reference to stream parameters.
1133
    template <typename P>
1134
    const auto& GetParams() const
1135
48.6M
    {
1136
48.6M
        if constexpr (std::is_convertible_v<Params, P>) {
1137
48.6M
            return m_params;
1138
        } else {
1139
            return m_substream.template GetParams<P>();
1140
        }
1141
48.6M
    }
_ZNK12ParamsStreamIR12SizeComputer20TransactionSerParamsE9GetParamsIS2_EERKDav
Line
Count
Source
1135
5.60M
    {
1136
5.60M
        if constexpr (std::is_convertible_v<Params, P>) {
1137
5.60M
            return m_params;
1138
        } else {
1139
            return m_substream.template GetParams<P>();
1140
        }
1141
5.60M
    }
_ZNK12ParamsStreamIR10DataStream20TransactionSerParamsE9GetParamsIS2_EERKDav
Line
Count
Source
1135
4.97M
    {
1136
4.97M
        if constexpr (std::is_convertible_v<Params, P>) {
1137
4.97M
            return m_params;
1138
        } else {
1139
            return m_substream.template GetParams<P>();
1140
        }
1141
4.97M
    }
_ZNK12ParamsStreamIR12VectorWriter20TransactionSerParamsE9GetParamsIS2_EERKDav
Line
Count
Source
1135
5.37M
    {
1136
5.37M
        if constexpr (std::is_convertible_v<Params, P>) {
1137
5.37M
            return m_params;
1138
        } else {
1139
            return m_substream.template GetParams<P>();
1140
        }
1141
5.37M
    }
Unexecuted instantiation: _ZNK12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE9GetParamsIS3_EERKDav
Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetParamsIS7_EERKDav
_ZNK12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE9GetParamsIN8CNetAddr9SerParamsEEERKDav
Line
Count
Source
1135
382k
    {
1136
382k
        if constexpr (std::is_convertible_v<Params, P>) {
1137
382k
            return m_params;
1138
        } else {
1139
            return m_substream.template GetParams<P>();
1140
        }
1141
382k
    }
_ZNK12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE9GetParamsIS3_EERKDav
Line
Count
Source
1135
191k
    {
1136
191k
        if constexpr (std::is_convertible_v<Params, P>) {
1137
191k
            return m_params;
1138
        } else {
1139
            return m_substream.template GetParams<P>();
1140
        }
1141
191k
    }
Unexecuted instantiation: _ZNK12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_E9GetParamsIS2_EERKDav
_ZNK12ParamsStreamIR10SpanReader20TransactionSerParamsE9GetParamsIS2_EERKDav
Line
Count
Source
1135
311k
    {
1136
311k
        if constexpr (std::is_convertible_v<Params, P>) {
1137
311k
            return m_params;
1138
        } else {
1139
            return m_substream.template GetParams<P>();
1140
        }
1141
311k
    }
_ZNK12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE9GetParamsIS3_EERKDav
Line
Count
Source
1135
769k
    {
1136
769k
        if constexpr (std::is_convertible_v<Params, P>) {
1137
769k
            return m_params;
1138
        } else {
1139
            return m_substream.template GetParams<P>();
1140
        }
1141
769k
    }
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
1135
162k
    {
1136
162k
        if constexpr (std::is_convertible_v<Params, P>) {
1137
162k
            return m_params;
1138
        } else {
1139
            return m_substream.template GetParams<P>();
1140
        }
1141
162k
    }
Unexecuted instantiation: _ZNK12ParamsStreamIR12BufferedFile20TransactionSerParamsE9GetParamsIS2_EERKDav
_ZNK12ParamsStreamIR10HashWriter20TransactionSerParamsE9GetParamsIS2_EERKDav
Line
Count
Source
1135
30.8M
    {
1136
30.8M
        if constexpr (std::is_convertible_v<Params, P>) {
1137
30.8M
            return m_params;
1138
        } else {
1139
            return m_substream.template GetParams<P>();
1140
        }
1141
30.8M
    }
1142
1143
    //! Get reference to underlying stream.
1144
    auto& GetStream()
1145
721M
    {
1146
721M
        if constexpr (ContainsStream<SubStream>) {
1147
0
            return m_substream.GetStream();
1148
721M
        } else {
1149
721M
            return m_substream;
1150
721M
        }
1151
721M
    }
_ZN12ParamsStreamIR12SizeComputer20TransactionSerParamsE9GetStreamEv
Line
Count
Source
1145
76.0M
    {
1146
        if constexpr (ContainsStream<SubStream>) {
1147
            return m_substream.GetStream();
1148
76.0M
        } else {
1149
76.0M
            return m_substream;
1150
76.0M
        }
1151
76.0M
    }
_ZN12ParamsStreamIR10DataStream20TransactionSerParamsE9GetStreamEv
Line
Count
Source
1145
85.1M
    {
1146
        if constexpr (ContainsStream<SubStream>) {
1147
            return m_substream.GetStream();
1148
85.1M
        } else {
1149
85.1M
            return m_substream;
1150
85.1M
        }
1151
85.1M
    }
_ZN12ParamsStreamIR12VectorWriter20TransactionSerParamsE9GetStreamEv
Line
Count
Source
1145
100M
    {
1146
        if constexpr (ContainsStream<SubStream>) {
1147
            return m_substream.GetStream();
1148
100M
        } else {
1149
100M
            return m_substream;
1150
100M
        }
1151
100M
    }
_ZN12ParamsStreamIR10DataStreamN8CAddress9SerParamsEE9GetStreamEv
Line
Count
Source
1145
1.14M
    {
1146
        if constexpr (ContainsStream<SubStream>) {
1147
            return m_substream.GetStream();
1148
1.14M
        } else {
1149
1.14M
            return m_substream;
1150
1.14M
        }
1151
1.14M
    }
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR10DataStreamN8CAddress9SerParamsEEN8CNetAddr9SerParamsEE9GetStreamEv
_ZN12ParamsStreamIR10DataStreamN8CNetAddr9SerParamsEE9GetStreamEv
Line
Count
Source
1145
383k
    {
1146
        if constexpr (ContainsStream<SubStream>) {
1147
            return m_substream.GetStream();
1148
383k
        } else {
1149
383k
            return m_substream;
1150
383k
        }
1151
383k
    }
Unexecuted instantiation: _ZN12ParamsStreamIRS_IR12VectorWriter20TransactionSerParamsES2_E9GetStreamEv
_ZN12ParamsStreamIR10SpanReader20TransactionSerParamsE9GetStreamEv
Line
Count
Source
1145
8.37M
    {
1146
        if constexpr (ContainsStream<SubStream>) {
1147
            return m_substream.GetStream();
1148
8.37M
        } else {
1149
8.37M
            return m_substream;
1150
8.37M
        }
1151
8.37M
    }
_ZN12ParamsStreamIR12VectorWriterN8CNetAddr9SerParamsEE9GetStreamEv
Line
Count
Source
1145
1.53M
    {
1146
        if constexpr (ContainsStream<SubStream>) {
1147
            return m_substream.GetStream();
1148
1.53M
        } else {
1149
1.53M
            return m_substream;
1150
1.53M
        }
1151
1.53M
    }
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
1145
2.90M
    {
1146
        if constexpr (ContainsStream<SubStream>) {
1147
            return m_substream.GetStream();
1148
2.90M
        } else {
1149
2.90M
            return m_substream;
1150
2.90M
        }
1151
2.90M
    }
Unexecuted instantiation: _ZN12ParamsStreamIR12BufferedFile20TransactionSerParamsE9GetStreamEv
_ZN12ParamsStreamIR10HashWriter20TransactionSerParamsE9GetStreamEv
Line
Count
Source
1145
445M
    {
1146
        if constexpr (ContainsStream<SubStream>) {
1147
            return m_substream.GetStream();
1148
445M
        } else {
1149
445M
            return m_substream;
1150
445M
        }
1151
445M
    }
1152
    const auto& GetStream() const
1153
0
    {
1154
        if constexpr (ContainsStream<SubStream>) {
1155
            return m_substream.GetStream();
1156
0
        } else {
1157
0
            return m_substream;
1158
0
        }
1159
0
    }
1160
};
1161
1162
/**
1163
 * Explicit template deduction guide is required for single-parameter
1164
 * constructor so Substream&& is treated as a forwarding reference, and
1165
 * SubStream is deduced as reference type for lvalue arguments.
1166
 */
1167
template <typename Substream, typename Params>
1168
ParamsStream(Substream&&, const Params&) -> ParamsStream<Substream, Params>;
1169
1170
/**
1171
 * Template deduction guide for multiple params arguments that creates a nested
1172
 * ParamsStream.
1173
 */
1174
template <typename Substream, typename Params1, typename Params2, typename... Params>
1175
ParamsStream(Substream&& s, const Params1& params1, const Params2& params2, const Params&... params) ->
1176
    ParamsStream<decltype(ParamsStream{std::forward<Substream>(s), params2, params...}), Params1>;
1177
1178
/** Wrapper that serializes objects with the specified parameters. */
1179
template <typename Params, typename T>
1180
class ParamsWrapper
1181
{
1182
    const Params& m_params;
1183
    T& m_object;
1184
1185
public:
1186
49.3M
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
_ZN13ParamsWrapperI20TransactionSerParams6CBlockEC2ERKS0_RS1_
Line
Count
Source
1186
308k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
_ZN13ParamsWrapperI20TransactionSerParamsK6CBlockEC2ERKS0_RS2_
Line
Count
Source
1186
450k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams19CMutableTransactionEC2ERKS0_RS1_
_ZN13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEC2ERKS0_RSA_
Line
Count
Source
1186
1.66M
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
_ZN13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS5_10shared_ptrIK12CTransactionEENS5_9allocatorISA_EEEEEEC2ERKS0_RSG_
Line
Count
Source
1186
276k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
_ZN13ParamsWrapperI20TransactionSerParamsNSt3__16vectorI6CBlockNS1_9allocatorIS3_EEEEEC2ERKS0_RS6_
Line
Count
Source
1186
916k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
_ZN13ParamsWrapperI20TransactionSerParamsK12CTransactionEC2ERKS0_RS2_
Line
Count
Source
1186
39.1M
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
_ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceEC2ERKS1_RS2_
Line
Count
Source
1186
961k
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsE8AddrInfoEC2ERKS1_RS2_
_ZN13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEEC2ERKS0_RS9_
Line
Count
Source
1186
1.41M
    explicit ParamsWrapper(const Params& params, T& obj) : m_params{params}, m_object{obj} {}
_ZN13ParamsWrapperI20TransactionSerParamsNSt3__110shared_ptrIK12CTransactionEEEC2ERKS0_RS5_
Line
Count
Source
1186
3.53M
    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
1186
186k
    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
1186
382k
    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_
1187
1188
    template <typename Stream>
1189
    void Serialize(Stream& s) const
1190
43.2M
    {
1191
43.2M
        ParamsStream ss{s, m_params};
1192
43.2M
        ::Serialize(ss, m_object);
1193
43.2M
    }
_ZNK13ParamsWrapperI20TransactionSerParamsK12CTransactionE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
1190
4.63M
    {
1191
4.63M
        ParamsStream ss{s, m_params};
1192
4.63M
        ::Serialize(ss, m_object);
1193
4.63M
    }
_ZNK13ParamsWrapperI20TransactionSerParamsK6CBlockE9SerializeI12SizeComputerEEvRT_
Line
Count
Source
1190
422k
    {
1191
422k
        ParamsStream ss{s, m_params};
1192
422k
        ::Serialize(ss, m_object);
1193
422k
    }
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK5CTxInE9SerializeI12SizeComputerEEvRT_
_ZNK13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
1190
1.66M
    {
1191
1.66M
        ParamsStream ss{s, m_params};
1192
1.66M
        ::Serialize(ss, m_object);
1193
1.66M
    }
_ZNK13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS5_10shared_ptrIK12CTransactionEENS5_9allocatorISA_EEEEEE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
1190
276k
    {
1191
276k
        ParamsStream ss{s, m_params};
1192
276k
        ::Serialize(ss, m_object);
1193
276k
    }
_ZNK13ParamsWrapperI20TransactionSerParamsNSt3__16vectorI6CBlockNS1_9allocatorIS3_EEEEE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
1190
916k
    {
1191
916k
        ParamsStream ss{s, m_params};
1192
916k
        ::Serialize(ss, m_object);
1193
916k
    }
_ZNK13ParamsWrapperI20TransactionSerParamsK12CTransactionE9SerializeI12VectorWriterEEvRT_
Line
Count
Source
1190
3.68M
    {
1191
3.68M
        ParamsStream ss{s, m_params};
1192
3.68M
        ::Serialize(ss, m_object);
1193
3.68M
    }
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
1190
769k
    {
1191
769k
        ParamsStream ss{s, m_params};
1192
769k
        ::Serialize(ss, m_object);
1193
769k
    }
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
1190
28.2k
    {
1191
28.2k
        ParamsStream ss{s, m_params};
1192
28.2k
        ::Serialize(ss, m_object);
1193
28.2k
    }
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK12CTransactionE9SerializeI8AutoFileEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK6CBlockE9SerializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZNK13ParamsWrapperI20TransactionSerParamsK19CMutableTransactionE9SerializeI10HashWriterEEvRT_
_ZNK13ParamsWrapperI20TransactionSerParamsK12CTransactionE9SerializeI10HashWriterEEvRT_
Line
Count
Source
1190
30.8M
    {
1191
30.8M
        ParamsStream ss{s, m_params};
1192
30.8M
        ::Serialize(ss, m_object);
1193
30.8M
    }
1194
    template <typename Stream>
1195
    void Unserialize(Stream& s)
1196
6.02M
    {
1197
6.02M
        ParamsStream ss{s, m_params};
1198
6.02M
        ::Unserialize(ss, m_object);
1199
6.02M
    }
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams6CBlockE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams19CMutableTransactionE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsE8AddrInfoE11UnserializeI10DataStreamEEvRT_
Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE11UnserializeI12ParamsStreamIR10DataStreamN8CAddress9SerParamsEEEEvRT_
_ZN13ParamsWrapperI20TransactionSerParams7WrapperI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
1196
1.41M
    {
1197
1.41M
        ParamsStream ss{s, m_params};
1198
1.41M
        ::Unserialize(ss, m_object);
1199
1.41M
    }
_ZN13ParamsWrapperI20TransactionSerParamsNSt3__110shared_ptrIK12CTransactionEEE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
1196
3.53M
    {
1197
3.53M
        ParamsStream ss{s, m_params};
1198
3.53M
        ::Unserialize(ss, m_object);
1199
3.53M
    }
Unexecuted instantiation: _ZN13ParamsWrapperIN8CNetAddr9SerParamsES0_E11UnserializeI10DataStreamEEvRT_
_ZN13ParamsWrapperIN8CNetAddr9SerParamsE8CServiceE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
1196
191k
    {
1197
191k
        ParamsStream ss{s, m_params};
1198
191k
        ::Unserialize(ss, m_object);
1199
191k
    }
Unexecuted instantiation: _ZN13ParamsWrapperIN8CAddress9SerParamsES0_E11UnserializeI10DataStreamEEvRT_
_ZN13ParamsWrapperI20TransactionSerParams7WrapperI15VectorFormatterI16DefaultFormatterERNSt3__16vectorINS5_10shared_ptrIK12CTransactionEENS5_9allocatorISA_EEEEEE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
1196
186k
    {
1197
186k
        ParamsStream ss{s, m_params};
1198
186k
        ::Unserialize(ss, m_object);
1199
186k
    }
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams19CMutableTransactionE11UnserializeI10SpanReaderEEvRT_
_ZN13ParamsWrapperIN8CAddress9SerParamsE8CNetAddrE11UnserializeI10DataStreamEEvRT_
Line
Count
Source
1196
382k
    {
1197
382k
        ParamsStream ss{s, m_params};
1198
382k
        ::Unserialize(ss, m_object);
1199
382k
    }
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
1196
308k
    {
1197
308k
        ParamsStream ss{s, m_params};
1198
308k
        ::Unserialize(ss, m_object);
1199
308k
    }
Unexecuted instantiation: _ZN13ParamsWrapperI20TransactionSerParams6CBlockE11UnserializeI12BufferedFileEEvRT_
1200
};
1201
1202
/**
1203
 * Helper macro for SerParams structs
1204
 *
1205
 * Allows you define SerParams instances and then apply them directly
1206
 * to an object via function call syntax, eg:
1207
 *
1208
 *   constexpr SerParams FOO{....};
1209
 *   ss << FOO(obj);
1210
 */
1211
#define SER_PARAMS_OPFUNC                                                                \
1212
    /**                                                                                  \
1213
     * Return a wrapper around t that (de)serializes it with specified parameter params. \
1214
     *                                                                                   \
1215
     * See SER_PARAMS for more information on serialization parameters.                  \
1216
     */                                                                                  \
1217
    template <typename T>                                                                \
1218
    auto operator()(T&& t) const                                                         \
1219
49.3M
    {                                                                                    \
1220
49.3M
        return ParamsWrapper{*this, t};                                                  \
1221
49.3M
    }
_ZNK20TransactionSerParamsclIRK12CTransactionEEDaOT_
Line
Count
Source
1219
39.1M
    {                                                                                    \
1220
39.1M
        return ParamsWrapper{*this, t};                                                  \
1221
39.1M
    }
_ZNK20TransactionSerParamsclIRK6CBlockEEDaOT_
Line
Count
Source
1219
450k
    {                                                                                    \
1220
450k
        return ParamsWrapper{*this, t};                                                  \
1221
450k
    }
Unexecuted instantiation: _ZNK20TransactionSerParamsclIRK5CTxInEEDaOT_
Unexecuted instantiation: _ZNK20TransactionSerParamsclIRKNSt3__110shared_ptrIK12CTransactionEEEEDaOT_
_ZNK20TransactionSerParamsclIRNSt3__110shared_ptrIK12CTransactionEEEEDaOT_
Line
Count
Source
1219
3.53M
    {                                                                                    \
1220
3.53M
        return ParamsWrapper{*this, t};                                                  \
1221
3.53M
    }
Unexecuted instantiation: _ZNK20TransactionSerParamsclIRK19CMutableTransactionEEDaOT_
Unexecuted instantiation: _ZNK20TransactionSerParamsclIR19CMutableTransactionEEDaOT_
_ZNK20TransactionSerParamsclIR6CBlockEEDaOT_
Line
Count
Source
1219
308k
    {                                                                                    \
1220
308k
        return ParamsWrapper{*this, t};                                                  \
1221
308k
    }
_ZNK20TransactionSerParamsclI7WrapperI16DefaultFormatterRKNSt3__110shared_ptrIK12CTransactionEEEEEDaOT_
Line
Count
Source
1219
1.66M
    {                                                                                    \
1220
1.66M
        return ParamsWrapper{*this, t};                                                  \
1221
1.66M
    }
_ZNK20TransactionSerParamsclI7WrapperI15VectorFormatterI16DefaultFormatterERKNSt3__16vectorINS5_10shared_ptrIK12CTransactionEENS5_9allocatorISA_EEEEEEEDaOT_
Line
Count
Source
1219
276k
    {                                                                                    \
1220
276k
        return ParamsWrapper{*this, t};                                                  \
1221
276k
    }
_ZNK20TransactionSerParamsclIRNSt3__16vectorI6CBlockNS1_9allocatorIS3_EEEEEEDaOT_
Line
Count
Source
1219
916k
    {                                                                                    \
1220
916k
        return ParamsWrapper{*this, t};                                                  \
1221
916k
    }
_ZNK8CNetAddr9SerParamsclIR8CServiceEEDaOT_
Line
Count
Source
1219
384k
    {                                                                                    \
1220
384k
        return ParamsWrapper{*this, t};                                                  \
1221
384k
    }
Unexecuted instantiation: _ZNK8CAddress9SerParamsclIR8AddrInfoEEDaOT_
_ZNK20TransactionSerParamsclI7WrapperI16DefaultFormatterRNSt3__110shared_ptrIK12CTransactionEEEEEDaOT_
Line
Count
Source
1219
1.41M
    {                                                                                    \
1220
1.41M
        return ParamsWrapper{*this, t};                                                  \
1221
1.41M
    }
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
1219
186k
    {                                                                                    \
1220
186k
        return ParamsWrapper{*this, t};                                                  \
1221
186k
    }
Unexecuted instantiation: _ZNK20TransactionSerParamsclIR25CBlockHeaderAndShortTxIDsEEDaOT_
_ZNK8CAddress9SerParamsclIR8CNetAddrEEDaOT_
Line
Count
Source
1219
382k
    {                                                                                    \
1220
382k
        return ParamsWrapper{*this, t};                                                  \
1221
382k
    }
_ZNK8CNetAddr9SerParamsclI8CServiceEEDaOT_
Line
Count
Source
1219
577k
    {                                                                                    \
1220
577k
        return ParamsWrapper{*this, t};                                                  \
1221
577k
    }
Unexecuted instantiation: _ZNK8CAddress9SerParamsclIRKNSt3__16vectorIS_NS2_9allocatorIS_EEEEEEDaOT_
Unexecuted instantiation: _ZNK8CAddress9SerParamsclIRNSt3__16vectorIS_NS2_9allocatorIS_EEEEEEDaOT_
1222
1223
#endif // BITCOIN_SERIALIZE_H