fuzz coverage

Coverage Report

Created: 2025-06-01 19:34

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