fuzz coverage

Coverage Report

Created: 2025-09-17 22:41

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