Coverage Report

Created: 2024-08-25 12:18

/src/harfbuzz/src/hb-null.hh
Line
Count
Source
1
/*
2
 * Copyright © 2018  Google, Inc.
3
 *
4
 *  This is part of HarfBuzz, a text shaping library.
5
 *
6
 * Permission is hereby granted, without written agreement and without
7
 * license or royalty fees, to use, copy, modify, and distribute this
8
 * software and its documentation for any purpose, provided that the
9
 * above copyright notice and the following two paragraphs appear in
10
 * all copies of this software.
11
 *
12
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13
 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15
 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16
 * DAMAGE.
17
 *
18
 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20
 * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
21
 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22
 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23
 *
24
 * Google Author(s): Behdad Esfahbod
25
 */
26
27
#ifndef HB_NULL_HH
28
#define HB_NULL_HH
29
30
#include "hb.hh"
31
#include "hb-meta.hh"
32
33
34
/*
35
 * Static pools
36
 */
37
38
/* Global nul-content Null pool.  Enlarge as necessary. */
39
40
#define HB_NULL_POOL_SIZE 448
41
42
template <typename T, typename>
43
struct _hb_has_min_size : hb_false_type {};
44
template <typename T>
45
struct _hb_has_min_size<T, hb_void_t<decltype (T::min_size)>>
46
  : hb_true_type {};
47
template <typename T>
48
using hb_has_min_size = _hb_has_min_size<T, void>;
49
#define hb_has_min_size(T) hb_has_min_size<T>::value
50
51
template <typename T, typename>
52
struct _hb_has_null_size : hb_false_type {};
53
template <typename T>
54
struct _hb_has_null_size<T, hb_void_t<decltype (T::null_size)>>
55
  : hb_true_type {};
56
template <typename T>
57
using hb_has_null_size = _hb_has_null_size<T, void>;
58
#define hb_has_null_size(T) hb_has_null_size<T>::value
59
60
/* Use SFINAE to sniff whether T has min_size; in which case return the larger
61
 * of sizeof(T) and T::null_size, otherwise return sizeof(T).
62
 *
63
 * The main purpose of this is to let structs communicate that they are not nullable,
64
 * by defining min_size but *not* null_size. */
65
66
/* The hard way...
67
 * https://stackoverflow.com/questions/7776448/sfinae-tried-with-bool-gives-compiler-error-template-argument-tvalue-invol
68
 */
69
70
template <typename T, typename>
71
struct _hb_null_size : hb_integral_constant<unsigned, sizeof (T)> {};
72
template <typename T>
73
struct _hb_null_size<T, hb_void_t<decltype (T::min_size)>>
74
  : hb_integral_constant<unsigned,
75
             (sizeof (T) > T::null_size ? sizeof (T) : T::null_size)> {};
76
template <typename T>
77
using hb_null_size = _hb_null_size<T, void>;
78
#define hb_null_size(T) hb_null_size<T>::value
79
80
/* These doesn't belong here, but since is copy/paste from above, put it here. */
81
82
/* hb_static_size (T)
83
 * Returns T::static_size if T::min_size is defined, or sizeof (T) otherwise. */
84
85
template <typename T, typename>
86
struct _hb_static_size : hb_integral_constant<unsigned, sizeof (T)> {};
87
template <typename T>
88
struct _hb_static_size<T, hb_void_t<decltype (T::min_size)>> : hb_integral_constant<unsigned, T::static_size> {};
89
template <typename T>
90
using hb_static_size = _hb_static_size<T, void>;
91
161M
#define hb_static_size(T) hb_static_size<T>::value
92
93
template <typename T, typename>
94
struct _hb_min_size : hb_integral_constant<unsigned, sizeof (T)> {};
95
template <typename T>
96
struct _hb_min_size<T, hb_void_t<decltype (T::min_size)>> : hb_integral_constant<unsigned, T::min_size> {};
97
template <typename T>
98
using hb_min_size = _hb_min_size<T, void>;
99
304M
#define hb_min_size(T) hb_min_size<T>::value
100
101
102
/*
103
 * Null()
104
 */
105
106
extern HB_INTERNAL
107
uint64_t const _hb_NullPool[(HB_NULL_POOL_SIZE + sizeof (uint64_t) - 1) / sizeof (uint64_t)];
108
109
/* Generic nul-content Null objects. */
110
template <typename Type>
111
struct Null {
112
  static Type const & get_null ()
113
754M
  {
114
754M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
754M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
754M
  }
Unexecuted instantiation: Null<AAT::TrackData>::get_null()
Unexecuted instantiation: Null<AAT::TrackTableEntry>::get_null()
Null<OT::IntType<short, 2u> >::get_null()
Line
Count
Source
113
769
  {
114
769
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
769
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
769
  }
Unexecuted instantiation: Null<OT::HBFixed<OT::IntType<int, 4u>, 16u> >::get_null()
Unexecuted instantiation: Null<hb_aat_layout_feature_type_t>::get_null()
Null<AAT::FeatureName>::get_null()
Line
Count
Source
113
1.06M
  {
114
1.06M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.06M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.06M
  }
Unexecuted instantiation: Null<hb_aat_layout_feature_selector_info_t>::get_null()
Null<OT::GDEF_accelerator_t>::get_null()
Line
Count
Source
113
534k
  {
114
534k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
534k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
534k
  }
Null<OT::GDEF>::get_null()
Line
Count
Source
113
20.9M
  {
114
20.9M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
20.9M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
20.9M
  }
Null<AAT::ankr>::get_null()
Line
Count
Source
113
302k
  {
114
302k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
302k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
302k
  }
Unexecuted instantiation: Null<AAT::LookupSegmentArray<OT::IntType<unsigned short, 2u> > >::get_null()
Unexecuted instantiation: Null<AAT::LookupSegmentArray<OT::HBGlyphID16> >::get_null()
Null<hb_vector_t<hb_aat_map_t::range_flags_t, true> >::get_null()
Line
Count
Source
113
4.23k
  {
114
4.23k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
4.23k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
4.23k
  }
Null<hb_aat_map_t::range_flags_t>::get_null()
Line
Count
Source
113
3.84k
  {
114
3.84k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.84k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.84k
  }
Unexecuted instantiation: Null<AAT::Feature>::get_null()
Null<AAT::ltag>::get_null()
Line
Count
Source
113
5.67M
  {
114
5.67M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.67M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.67M
  }
Null<AAT::FTStringRange>::get_null()
Line
Count
Source
113
5.67M
  {
114
5.67M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.67M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.67M
  }
Null<AAT::morx>::get_null()
Line
Count
Source
113
716k
  {
114
716k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
716k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
716k
  }
Null<OT::IntType<unsigned short, 2u> >::get_null()
Line
Count
Source
113
3.96M
  {
114
3.96M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.96M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.96M
  }
Null<OT::HBGlyphID16>::get_null()
Line
Count
Source
113
160k
  {
114
160k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
160k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
160k
  }
Null<OT::ClassDef>::get_null()
Line
Count
Source
113
31.2M
  {
114
31.2M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
31.2M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
31.2M
  }
Null<OT::IntType<unsigned int, 4u> >::get_null()
Line
Count
Source
113
123k
  {
114
123k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
123k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
123k
  }
Null<AAT::mort>::get_null()
Line
Count
Source
113
657k
  {
114
657k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
657k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
657k
  }
Unexecuted instantiation: Null<AAT::LookupSegmentArray<OT::IntType<unsigned int, 4u> > >::get_null()
Null<AAT::kerx>::get_null()
Line
Count
Source
113
663k
  {
114
663k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
663k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
663k
  }
Unexecuted instantiation: Null<AAT::LookupSegmentSingle<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null()
Unexecuted instantiation: Null<AAT::LookupSegmentArray<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null()
Unexecuted instantiation: Null<AAT::LookupSingle<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null()
Null<OT::VariationStore>::get_null()
Line
Count
Source
113
53.5M
  {
114
53.5M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
53.5M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
53.5M
  }
Null<OT::VarRegionList>::get_null()
Line
Count
Source
113
72.3k
  {
114
72.3k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
72.3k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
72.3k
  }
Null<OT::MarkGlyphSets>::get_null()
Line
Count
Source
113
253k
  {
114
253k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
253k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
253k
  }
Null<OT::Layout::Common::Coverage>::get_null()
Line
Count
Source
113
7.34M
  {
114
7.34M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
7.34M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
7.34M
  }
Null<OT::OffsetTo<OT::Layout::Common::Coverage, OT::IntType<unsigned int, 4u>, true> >::get_null()
Line
Count
Source
113
4.84k
  {
114
4.84k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
4.84k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
4.84k
  }
Null<AAT::KernPair>::get_null()
Line
Count
Source
113
809k
  {
114
809k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
809k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
809k
  }
Unexecuted instantiation: Null<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> >::get_null()
Null<AAT::Anchor>::get_null()
Line
Count
Source
113
2.54M
  {
114
2.54M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.54M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.54M
  }
Null<OT::IntType<unsigned char, 1u> >::get_null()
Line
Count
Source
113
6.30k
  {
114
6.30k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
6.30k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
6.30k
  }
Null<AAT::trak>::get_null()
Line
Count
Source
113
665k
  {
114
665k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
665k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
665k
  }
Null<hb_blob_t>::get_null()
Line
Count
Source
113
31.8M
  {
114
31.8M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
31.8M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
31.8M
  }
Null<AAT::feat>::get_null()
Line
Count
Source
113
1.59M
  {
114
1.59M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.59M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.59M
  }
Null<hb_user_data_array_t::hb_user_data_item_t>::get_null()
Line
Count
Source
113
6.59k
  {
114
6.59k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
6.59k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
6.59k
  }
Null<hb_ot_map_t::stage_map_t>::get_null()
Line
Count
Source
113
12.4k
  {
114
12.4k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
12.4k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
12.4k
  }
Unexecuted instantiation: Null<unsigned long long>::get_null()
Unexecuted instantiation: Null<hb_bit_page_t>::get_null()
Unexecuted instantiation: Null<hb_bit_set_t::page_map_t>::get_null()
Null<unsigned int>::get_null()
Line
Count
Source
113
159k
  {
114
159k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
159k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
159k
  }
Unexecuted instantiation: Null<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>::get_null()
Null<hb_serialize_context_t::object_t::link_t>::get_null()
Line
Count
Source
113
1.14k
  {
114
1.14k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.14k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.14k
  }
Unexecuted instantiation: Null<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>::get_null()
Null<hb_serialize_context_t::object_t*>::get_null()
Line
Count
Source
113
1.30k
  {
114
1.30k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.30k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.30k
  }
Unexecuted instantiation: Null<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>::get_null()
Unexecuted instantiation: Null<hb_vector_t<unsigned int, false> >::get_null()
Unexecuted instantiation: Null<AAT::LookupSegmentSingle<OT::IntType<unsigned short, 2u> > >::get_null()
Unexecuted instantiation: Null<AAT::LookupSingle<OT::IntType<unsigned short, 2u> > >::get_null()
Unexecuted instantiation: Null<OT::HBGlyphID24>::get_null()
Unexecuted instantiation: Null<OT::IntType<unsigned int, 3u> >::get_null()
Unexecuted instantiation: Null<OT::FeatureParamsSize>::get_null()
Null<OT::FeatureParamsStylisticSet>::get_null()
Line
Count
Source
113
342
  {
114
342
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
342
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
342
  }
Null<OT::FeatureParamsCharacterVariants>::get_null()
Line
Count
Source
113
532k
  {
114
532k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
532k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
532k
  }
Null<OT::FeatureParams>::get_null()
Line
Count
Source
113
1.60M
  {
114
1.60M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.60M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.60M
  }
Null<OT::Record<OT::Feature> >::get_null()
Line
Count
Source
113
43.4M
  {
114
43.4M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
43.4M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
43.4M
  }
Null<OT::Feature>::get_null()
Line
Count
Source
113
3.90M
  {
114
3.90M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.90M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.90M
  }
Null<OT::Record<OT::LangSys> >::get_null()
Line
Count
Source
113
520k
  {
114
520k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
520k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
520k
  }
Unexecuted instantiation: Null<hb::unique_ptr<hb_set_t> >::get_null()
Null<OT::Record<OT::Script> >::get_null()
Line
Count
Source
113
36.0M
  {
114
36.0M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
36.0M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
36.0M
  }
Null<OT::Script>::get_null()
Line
Count
Source
113
36.1M
  {
114
36.1M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
36.1M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
36.1M
  }
Unexecuted instantiation: Null<OT::Offset<OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: Null<hb_pair_t<unsigned int, unsigned int> >::get_null()
Unexecuted instantiation: Null<OT::VarRegionAxis>::get_null()
Unexecuted instantiation: Null<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>::get_null()
Null<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >::get_null()
Line
Count
Source
113
20.0k
  {
114
20.0k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
20.0k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
20.0k
  }
Null<OT::VarData>::get_null()
Line
Count
Source
113
27.2k
  {
114
27.2k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
27.2k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
27.2k
  }
Unexecuted instantiation: Null<hb_inc_bimap_t>::get_null()
Null<int>::get_null()
Line
Count
Source
113
1.58M
  {
114
1.58M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.58M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.58M
  }
Null<OT::Condition>::get_null()
Line
Count
Source
113
10.6k
  {
114
10.6k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
10.6k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
10.6k
  }
Unexecuted instantiation: Null<hb::shared_ptr<hb_set_t> >::get_null()
Unexecuted instantiation: Null<OT::OffsetTo<OT::Condition, OT::IntType<unsigned int, 4u>, true> >::get_null()
Unexecuted instantiation: Null<OT::FeatureTableSubstitutionRecord>::get_null()
Null<OT::FeatureTableSubstitution>::get_null()
Line
Count
Source
113
5.71k
  {
114
5.71k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.71k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.71k
  }
Null<OT::ConditionSet>::get_null()
Line
Count
Source
113
46.2k
  {
114
46.2k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
46.2k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
46.2k
  }
Unexecuted instantiation: Null<OT::FeatureVariationRecord>::get_null()
Unexecuted instantiation: Null<OT::OffsetTo<OT::AttachPoint, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: Null<OT::AttachPoint>::get_null()
Null<OT::Device>::get_null()
Line
Count
Source
113
28.7M
  {
114
28.7M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
28.7M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
28.7M
  }
Unexecuted instantiation: Null<hb_pair_t<unsigned int, int> >::get_null()
Unexecuted instantiation: Null<OT::OffsetTo<OT::CaretValue, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: Null<OT::CaretValue>::get_null()
Null<OT::OffsetTo<OT::LigGlyph, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
20
  {
114
20
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
20
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
20
  }
Null<OT::LigGlyph>::get_null()
Line
Count
Source
113
24
  {
114
24
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
24
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
24
  }
Unexecuted instantiation: Null<OT::AttachList>::get_null()
Null<OT::LigCaretList>::get_null()
Line
Count
Source
113
524k
  {
114
524k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
524k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
524k
  }
Unexecuted instantiation: Null<AAT::LookupSegmentSingle<OT::HBGlyphID16> >::get_null()
Unexecuted instantiation: Null<AAT::LookupSingle<OT::HBGlyphID16> >::get_null()
Unexecuted instantiation: Null<AAT::LookupSegmentSingle<OT::OffsetTo<OT::ArrayOf<AAT::WidthDeltaPair, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, true> > >::get_null()
Unexecuted instantiation: Null<AAT::LookupSegmentArray<OT::OffsetTo<OT::ArrayOf<AAT::WidthDeltaPair, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, true> > >::get_null()
Unexecuted instantiation: Null<AAT::LookupSingle<OT::OffsetTo<OT::ArrayOf<AAT::WidthDeltaPair, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, true> > >::get_null()
Null<hb_set_t>::get_null()
Line
Count
Source
113
6.36k
  {
114
6.36k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
6.36k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
6.36k
  }
Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::Common::Coverage, OT::IntType<unsigned short, 2u>, true> >::get_null()
Null<OT::hb_accelerate_subtables_context_t::hb_applicable_t>::get_null()
Line
Count
Source
113
116k
  {
114
116k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
116k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
116k
  }
Null<OT::RecordListOfScript>::get_null()
Line
Count
Source
113
39.4M
  {
114
39.4M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
39.4M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
39.4M
  }
Null<OT::RecordListOf<OT::Feature> >::get_null()
Line
Count
Source
113
8.67M
  {
114
8.67M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
8.67M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
8.67M
  }
Null<OT::List16OfOffsetTo<OT::Lookup, OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
113
35.0k
  {
114
35.0k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
35.0k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
35.0k
  }
Null<OT::List16OfOffsetTo<OT::Lookup, OT::IntType<unsigned int, 3u> > >::get_null()
Line
Count
Source
113
10.5k
  {
114
10.5k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
10.5k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
10.5k
  }
Null<OT::Lookup>::get_null()
Line
Count
Source
113
20.0M
  {
114
20.0M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
20.0M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
20.0M
  }
Null<OT::FeatureVariations>::get_null()
Line
Count
Source
113
22.4M
  {
114
22.4M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
22.4M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
22.4M
  }
Null<OT::Layout::GPOS_impl::EntryExitRecord>::get_null()
Line
Count
Source
113
166k
  {
114
166k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
166k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
166k
  }
Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GPOS_impl::Anchor, OT::IntType<unsigned short, 2u>, true> >::get_null()
Null<OT::Layout::GPOS_impl::Anchor>::get_null()
Line
Count
Source
113
399k
  {
114
399k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
399k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
399k
  }
Null<OT::Layout::GPOS_impl::MarkRecord>::get_null()
Line
Count
Source
113
120k
  {
114
120k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
120k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
120k
  }
Null<OT::OffsetTo<OT::Layout::GPOS_impl::PairSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
5.58M
  {
114
5.58M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.58M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.58M
  }
Null<OT::Layout::GPOS_impl::PairSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
113
5.84M
  {
114
5.84M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.84M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.84M
  }
Null<OT::OffsetTo<OT::Layout::GPOS_impl::PairSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
930k
  {
114
930k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
930k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
930k
  }
Null<OT::Layout::GPOS_impl::PairSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
955k
  {
114
955k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
955k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
955k
  }
Null<OT::OffsetTo<OT::RuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
208k
  {
114
208k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
208k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
208k
  }
Unexecuted instantiation: Null<OT::OffsetTo<OT::Rule<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Null<OT::Rule<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
113
108k
  {
114
108k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
108k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
108k
  }
Null<OT::RuleSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
113
289k
  {
114
289k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
289k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
289k
  }
Null<OT::OffsetTo<OT::RuleSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
20.5k
  {
114
20.5k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
20.5k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
20.5k
  }
Unexecuted instantiation: Null<OT::OffsetTo<OT::Rule<OT::Layout::MediumTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Null<OT::Rule<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
1.18k
  {
114
1.18k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.18k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.18k
  }
Null<OT::RuleSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
22.1k
  {
114
22.1k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
22.1k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
22.1k
  }
Null<OT::OffsetTo<OT::RuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
5.64k
  {
114
5.64k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.64k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.64k
  }
Null<OT::OffsetTo<OT::ChainRuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
193k
  {
114
193k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
193k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
193k
  }
Unexecuted instantiation: Null<OT::OffsetTo<OT::ChainRule<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Null<OT::ChainRule<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
113
142k
  {
114
142k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
142k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
142k
  }
Null<OT::ChainRuleSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
113
2.52M
  {
114
2.52M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.52M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.52M
  }
Null<OT::OffsetTo<OT::ChainRuleSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
27.0k
  {
114
27.0k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
27.0k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
27.0k
  }
Unexecuted instantiation: Null<OT::OffsetTo<OT::ChainRule<OT::Layout::MediumTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Null<OT::ChainRule<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
2.87k
  {
114
2.87k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.87k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.87k
  }
Null<OT::ChainRuleSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
28.0k
  {
114
28.0k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
28.0k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
28.0k
  }
Null<OT::OffsetTo<OT::ChainRuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
10.3k
  {
114
10.3k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
10.3k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
10.3k
  }
Null<OT::Layout::GPOS_impl::PosLookupSubTable>::get_null()
Line
Count
Source
113
3.35M
  {
114
3.35M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.35M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.35M
  }
Null<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookupSubTable, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
2.13k
  {
114
2.13k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.13k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.13k
  }
Null<OT::Layout::GPOS_impl::MarkArray>::get_null()
Line
Count
Source
113
9.40k
  {
114
9.40k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
9.40k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
9.40k
  }
Null<OT::Layout::GPOS_impl::AnchorMatrix>::get_null()
Line
Count
Source
113
18.2k
  {
114
18.2k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
18.2k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
18.2k
  }
Null<OT::Layout::GPOS_impl::LigatureArray>::get_null()
Line
Count
Source
113
4.40k
  {
114
4.40k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
4.40k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
4.40k
  }
Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GPOS_impl::AnchorMatrix, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: Null<OT::LookupOffsetList<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned short, 2u> > >::get_null()
Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: Null<OT::Layout::GPOS_impl::PosLookup>::get_null()
Unexecuted instantiation: Null<OT::RecordListOfFeature>::get_null()
Unexecuted instantiation: Null<OT::LookupOffsetList<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned int, 3u> > >::get_null()
Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned int, 3u>, true> >::get_null()
Null<OT::Layout::GPOS>::get_null()
Line
Count
Source
113
30.6M
  {
114
30.6M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
30.6M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
30.6M
  }
Unexecuted instantiation: Null<AAT::LookupSegmentSingle<OT::IntType<unsigned int, 4u> > >::get_null()
Unexecuted instantiation: Null<AAT::LookupSingle<OT::IntType<unsigned int, 4u> > >::get_null()
Unexecuted instantiation: Null<hb_aat_map_builder_t::feature_range_t>::get_null()
Null<hb_aat_map_builder_t::feature_event_t>::get_null()
Line
Count
Source
113
1.38k
  {
114
1.38k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.38k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.38k
  }
Unexecuted instantiation: Null<hb_aat_map_builder_t::feature_info_t>::get_null()
Null<OT::maxp>::get_null()
Line
Count
Source
113
1.19M
  {
114
1.19M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.19M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.19M
  }
Null<OT::head>::get_null()
Line
Count
Source
113
1.29M
  {
114
1.29M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.29M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.29M
  }
Unexecuted instantiation: Null<OT::OS2V1Tail>::get_null()
Unexecuted instantiation: Null<OT::OS2V2Tail>::get_null()
Unexecuted instantiation: Null<OT::OS2V5Tail>::get_null()
Null<OT::MVAR>::get_null()
Line
Count
Source
113
2.13M
  {
114
2.13M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.13M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.13M
  }
Null<float>::get_null()
Line
Count
Source
113
569
  {
114
569
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
569
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
569
  }
Unexecuted instantiation: Null<OT::UnicodeValueRange>::get_null()
Null<OT::DefaultUVS>::get_null()
Line
Count
Source
113
1.06M
  {
114
1.06M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.06M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.06M
  }
Null<OT::NonDefaultUVS>::get_null()
Line
Count
Source
113
1.06M
  {
114
1.06M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.06M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.06M
  }
Null<OT::UVSMapping>::get_null()
Line
Count
Source
113
534k
  {
114
534k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
534k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
534k
  }
Null<OT::VariationSelectorRecord>::get_null()
Line
Count
Source
113
1.06M
  {
114
1.06M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.06M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.06M
  }
Null<OT::cmap>::get_null()
Line
Count
Source
113
836k
  {
114
836k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
836k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
836k
  }
Null<OT::CmapSubtable>::get_null()
Line
Count
Source
113
428k
  {
114
428k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
428k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
428k
  }
Null<OT::CmapSubtableFormat14>::get_null()
Line
Count
Source
113
536k
  {
114
536k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
536k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
536k
  }
Null<OT::OS2>::get_null()
Line
Count
Source
113
1.28M
  {
114
1.28M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.28M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.28M
  }
Null<OT::EncodingRecord>::get_null()
Line
Count
Source
113
4.77M
  {
114
4.77M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
4.77M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
4.77M
  }
Null<hb_transform_t>::get_null()
Line
Count
Source
113
147k
  {
114
147k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
147k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
147k
  }
Null<hb_bounds_t>::get_null()
Line
Count
Source
113
742k
  {
114
742k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
742k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
742k
  }
Null<OT::Paint>::get_null()
Line
Count
Source
113
6.12M
  {
114
6.12M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
6.12M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
6.12M
  }
Null<OT::ColorLine<OT::NoVariable> >::get_null()
Line
Count
Source
113
246k
  {
114
246k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
246k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
246k
  }
Null<OT::ColorLine<OT::Variable> >::get_null()
Line
Count
Source
113
142k
  {
114
142k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
142k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
142k
  }
Null<OT::NoVariable<OT::Affine2x3> >::get_null()
Line
Count
Source
113
27.2k
  {
114
27.2k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
27.2k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
27.2k
  }
Null<OT::Variable<OT::Affine2x3> >::get_null()
Line
Count
Source
113
18.8k
  {
114
18.8k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
18.8k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
18.8k
  }
Null<OT::ClipBox>::get_null()
Line
Count
Source
113
2.94k
  {
114
2.94k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.94k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.94k
  }
Null<OT::OffsetTo<OT::Paint, OT::IntType<unsigned int, 4u>, true> >::get_null()
Line
Count
Source
113
4.89M
  {
114
4.89M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
4.89M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
4.89M
  }
Null<OT::BaseGlyphList>::get_null()
Line
Count
Source
113
13.6k
  {
114
13.6k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
13.6k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
13.6k
  }
Null<OT::BaseGlyphRecord>::get_null()
Line
Count
Source
113
549k
  {
114
549k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
549k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
549k
  }
Unexecuted instantiation: Null<OT::LayerRecord>::get_null()
Unexecuted instantiation: Null<hb_ot_color_layer_t>::get_null()
Null<OT::COLR>::get_null()
Line
Count
Source
113
1.72M
  {
114
1.72M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.72M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.72M
  }
Null<OT::LayerList>::get_null()
Line
Count
Source
113
2.34k
  {
114
2.34k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.34k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.34k
  }
Null<OT::BaseGlyphPaintRecord>::get_null()
Line
Count
Source
113
391k
  {
114
391k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
391k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
391k
  }
Null<OT::ClipList>::get_null()
Line
Count
Source
113
373k
  {
114
373k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
373k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
373k
  }
Unexecuted instantiation: Null<OT::NoVariable<OT::ColorStop> >::get_null()
Unexecuted instantiation: Null<OT::Variable<OT::ColorStop> >::get_null()
Null<OT::DeltaSetIndexMap>::get_null()
Line
Count
Source
113
109k
  {
114
109k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
109k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
109k
  }
Unexecuted instantiation: Null<hb_set_t*>::get_null()
Unexecuted instantiation: Null<OT::index_map_subset_plan_t>::get_null()
Unexecuted instantiation: Null<OT::DeltaSetIndexMap const*>::get_null()
Null<OT::hhea>::get_null()
Line
Count
Source
113
1.68M
  {
114
1.68M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.68M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.68M
  }
Null<OT::vhea>::get_null()
Line
Count
Source
113
522k
  {
114
522k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
522k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
522k
  }
Unexecuted instantiation: Null<OT::HBFixed<OT::IntType<short, 2u>, 14u> >::get_null()
Null<OT::GlyphVariationData>::get_null()
Line
Count
Source
113
129k
  {
114
129k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
129k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
129k
  }
Null<OT::gvar>::get_null()
Line
Count
Source
113
281k
  {
114
281k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
281k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
281k
  }
Null<OT::contour_point_t>::get_null()
Line
Count
Source
113
22.1M
  {
114
22.1M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
22.1M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
22.1M
  }
Null<unsigned char>::get_null()
Line
Count
Source
113
342k
  {
114
342k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
342k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
342k
  }
Unexecuted instantiation: Null<OT::hmtxvmtx<OT::hmtx, OT::hhea, OT::HVAR> >::get_null()
Unexecuted instantiation: Null<OT::LongMetric>::get_null()
Unexecuted instantiation: Null<OT::hmtxvmtx<OT::vmtx, OT::vhea, OT::VVAR> >::get_null()
Null<OT::glyf_impl::GlyphHeader>::get_null()
Line
Count
Source
113
770k
  {
114
770k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
770k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
770k
  }
Unexecuted instantiation: Null<OT::glyf_impl::SubsetGlyph>::get_null()
Null<OT::gvar_accelerator_t>::get_null()
Line
Count
Source
113
523k
  {
114
523k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
523k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
523k
  }
Null<OT::hmtx_accelerator_t>::get_null()
Line
Count
Source
113
530k
  {
114
530k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
530k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
530k
  }
Null<OT::vmtx_accelerator_t>::get_null()
Line
Count
Source
113
530k
  {
114
530k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
530k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
530k
  }
Unexecuted instantiation: Null<OT::loca>::get_null()
Unexecuted instantiation: Null<OT::glyf>::get_null()
Unexecuted instantiation: Null<hb_hashmap_t<unsigned int, float, false>::item_t>::get_null()
Unexecuted instantiation: Null<hb_variation_t>::get_null()
Unexecuted instantiation: Null<OT::ResourceTypeRecord>::get_null()
Null<OT::TableRecord>::get_null()
Line
Count
Source
113
18.5M
  {
114
18.5M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
18.5M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
18.5M
  }
Null<OT::OffsetTo<OT::OpenTypeOffsetTable, OT::IntType<unsigned int, 4u>, true> >::get_null()
Line
Count
Source
113
724
  {
114
724
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
724
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
724
  }
Unexecuted instantiation: Null<OT::ResourceRecord>::get_null()
Null<OT::OpenTypeOffsetTable>::get_null()
Line
Count
Source
113
11.3M
  {
114
11.3M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
11.3M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
11.3M
  }
Null<OT::OpenTypeFontFile>::get_null()
Line
Count
Source
113
69.6k
  {
114
69.6k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
69.6k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
69.6k
  }
Null<OT::cmap_accelerator_t>::get_null()
Line
Count
Source
113
535k
  {
114
535k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
535k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
535k
  }
Null<OT::AxisRecord>::get_null()
Line
Count
Source
113
2
  {
114
2
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2
  }
Null<OT::fvar>::get_null()
Line
Count
Source
113
3.06M
  {
114
3.06M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.06M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.06M
  }
Null<OT::avar>::get_null()
Line
Count
Source
113
1.56M
  {
114
1.56M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.56M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.56M
  }
Unexecuted instantiation: Null<OT::AxisValueMap>::get_null()
Null<hb_map_t>::get_null()
Line
Count
Source
113
1.98k
  {
114
1.98k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.98k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.98k
  }
Null<OT::CPALV1Tail>::get_null()
Line
Count
Source
113
1.59M
  {
114
1.59M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.59M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.59M
  }
Null<OT::SVG>::get_null()
Line
Count
Source
113
1.59M
  {
114
1.59M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.59M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.59M
  }
Null<OT::SortedArrayOf<OT::SVGDocumentIndexEntry, OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
113
531k
  {
114
531k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
531k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
531k
  }
Null<OT::SVGDocumentIndexEntry>::get_null()
Line
Count
Source
113
532k
  {
114
532k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
532k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
532k
  }
Null<OT::sbix>::get_null()
Line
Count
Source
113
1.78M
  {
114
1.78M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.78M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.78M
  }
Null<OT::SBIXStrike>::get_null()
Line
Count
Source
113
30.2k
  {
114
30.2k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
30.2k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
30.2k
  }
Unexecuted instantiation: Null<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true> >::get_null()
Unexecuted instantiation: Null<OT::OffsetTo<OT::SBIXGlyph, OT::IntType<unsigned int, 4u>, true> >::get_null()
Null<OT::SBIXGlyph>::get_null()
Line
Count
Source
113
53
  {
114
53
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
53
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
53
  }
Null<OT::CBLC>::get_null()
Line
Count
Source
113
1.45M
  {
114
1.45M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.45M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.45M
  }
Null<OT::BitmapSizeTable>::get_null()
Line
Count
Source
113
729k
  {
114
729k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
729k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
729k
  }
Unexecuted instantiation: Null<OT::IndexSubtableRecord>::get_null()
Null<OT::IndexSubtable>::get_null()
Line
Count
Source
113
472
  {
114
472
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
472
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
472
  }
Unexecuted instantiation: Null<OT::Offset<OT::IntType<unsigned int, 4u>, true> >::get_null()
Unexecuted instantiation: Null<OT::CBDT>::get_null()
Null<OT::CPAL>::get_null()
Line
Count
Source
113
3.57M
  {
114
3.57M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.57M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.57M
  }
Null<OT::SVG_accelerator_t>::get_null()
Line
Count
Source
113
534k
  {
114
534k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
534k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
534k
  }
Null<OT::CBDT_accelerator_t>::get_null()
Line
Count
Source
113
534k
  {
114
534k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
534k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
534k
  }
Null<OT::sbix_accelerator_t>::get_null()
Line
Count
Source
113
534k
  {
114
534k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
534k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
534k
  }
Unexecuted instantiation: Null<hb_pair_t<unsigned int, OT::IndexSubtableRecord const*> >::get_null()
Null<OT::sbix::accelerator_t::PNGHeader>::get_null()
Line
Count
Source
113
3.40k
  {
114
3.40k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.40k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.40k
  }
Unexecuted instantiation: Null<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*>::get_null()
Null<OT::post_accelerator_t>::get_null()
Line
Count
Source
113
530k
  {
114
530k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
530k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
530k
  }
Null<OT::name_accelerator_t>::get_null()
Line
Count
Source
113
535k
  {
114
535k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
535k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
535k
  }
Null<OT::meta_accelerator_t>::get_null()
Line
Count
Source
113
534k
  {
114
534k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
534k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
534k
  }
Null<OT::glyf_accelerator_t>::get_null()
Line
Count
Source
113
530k
  {
114
530k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
530k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
530k
  }
Null<OT::cff1_accelerator_t>::get_null()
Line
Count
Source
113
529k
  {
114
529k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
529k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
529k
  }
Null<OT::cff2_accelerator_t>::get_null()
Line
Count
Source
113
504k
  {
114
504k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
504k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
504k
  }
Null<OT::GSUB_accelerator_t>::get_null()
Line
Count
Source
113
536k
  {
114
536k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
536k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
536k
  }
Null<OT::GPOS_accelerator_t>::get_null()
Line
Count
Source
113
535k
  {
114
535k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
535k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
535k
  }
Null<CFF::number_t>::get_null()
Line
Count
Source
113
32.3k
  {
114
32.3k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
32.3k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
32.3k
  }
Null<CFF::FDSelect>::get_null()
Line
Count
Source
113
81.5k
  {
114
81.5k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
81.5k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
81.5k
  }
Unexecuted instantiation: Null<CFF::FDSelect3_4_Range<OT::IntType<unsigned short, 2u>, OT::IntType<unsigned char, 1u> > >::get_null()
Null<CFF::Encoding1_Range>::get_null()
Line
Count
Source
113
17
  {
114
17
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
17
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
17
  }
Unexecuted instantiation: Null<CFF::SuppEncoding>::get_null()
Unexecuted instantiation: Null<CFF::code_pair_t>::get_null()
Unexecuted instantiation: Null<CFF::CFF1SuppEncData>::get_null()
Unexecuted instantiation: Null<hb_array_t<unsigned char const> >::get_null()
Null<CFF::cff1_top_dict_val_t>::get_null()
Line
Count
Source
113
2.46k
  {
114
2.46k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.46k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.46k
  }
Null<CFF::op_str_t>::get_null()
Line
Count
Source
113
2.09k
  {
114
2.09k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.09k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.09k
  }
Null<CFF::dict_val_t>::get_null()
Line
Count
Source
113
5.89k
  {
114
5.89k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.89k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.89k
  }
Null<CFF::cff1_font_dict_values_t>::get_null()
Line
Count
Source
113
20
  {
114
20
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
20
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
20
  }
Null<OT::cff1>::get_null()
Line
Count
Source
113
1.01M
  {
114
1.01M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.01M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.01M
  }
Null<CFF::CFFIndex<OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
113
63.8k
  {
114
63.8k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
63.8k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
63.8k
  }
Null<CFF::CFF1IndexOf<CFF::TopDict> >::get_null()
Line
Count
Source
113
34.9k
  {
114
34.9k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
34.9k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
34.9k
  }
Null<CFF::Charset>::get_null()
Line
Count
Source
113
3.27M
  {
114
3.27M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.27M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.27M
  }
Null<CFF::CFF1FDArray>::get_null()
Line
Count
Source
113
30.5k
  {
114
30.5k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
30.5k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
30.5k
  }
Null<CFF::CFF1FDSelect>::get_null()
Line
Count
Source
113
30.3k
  {
114
30.3k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
30.3k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
30.3k
  }
Null<CFF::Encoding>::get_null()
Line
Count
Source
113
30.1k
  {
114
30.1k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
30.1k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
30.1k
  }
Null<CFF::CFF1StringIndex>::get_null()
Line
Count
Source
113
29.4k
  {
114
29.4k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
29.4k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
29.4k
  }
Null<CFF::Subrs<OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
113
1.19M
  {
114
1.19M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.19M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.19M
  }
Null<CFF::cff1_private_dict_values_base_t<CFF::dict_val_t> >::get_null()
Line
Count
Source
113
478
  {
114
478
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
478
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
478
  }
Unexecuted instantiation: Null<OT::cff1::accelerator_t::gname_t>::get_null()
Null<CFF::CFF2FDSelect>::get_null()
Line
Count
Source
113
311k
  {
114
311k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
311k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
311k
  }
Unexecuted instantiation: Null<CFF::FDSelect3_4_Range<OT::IntType<unsigned int, 4u>, OT::IntType<unsigned short, 2u> > >::get_null()
Null<OT::cff2>::get_null()
Line
Count
Source
113
978k
  {
114
978k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
978k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
978k
  }
Null<CFF::CFF2VariationStore>::get_null()
Line
Count
Source
113
27.9k
  {
114
27.9k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
27.9k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
27.9k
  }
Null<CFF::CFFIndex<OT::IntType<unsigned int, 4u> > >::get_null()
Line
Count
Source
113
19.5k
  {
114
19.5k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
19.5k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
19.5k
  }
Null<CFF::Subrs<OT::IntType<unsigned int, 4u> > >::get_null()
Line
Count
Source
113
1.41M
  {
114
1.41M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.41M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.41M
  }
Null<CFF::CFF2FDArray>::get_null()
Line
Count
Source
113
18.7k
  {
114
18.7k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
18.7k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
18.7k
  }
Null<CFF::cff2_font_dict_values_t>::get_null()
Line
Count
Source
113
353k
  {
114
353k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
353k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
353k
  }
Null<CFF::UnsizedByteStr>::get_null()
Line
Count
Source
113
337k
  {
114
337k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
337k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
337k
  }
Null<CFF::cff2_private_dict_values_base_t<CFF::dict_val_t> >::get_null()
Line
Count
Source
113
170k
  {
114
170k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
170k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
170k
  }
Null<OT::meta>::get_null()
Line
Count
Source
113
1.06M
  {
114
1.06M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.06M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.06M
  }
Null<OT::DataMap>::get_null()
Line
Count
Source
113
532k
  {
114
532k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
532k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
532k
  }
Unexecuted instantiation: Null<hb_ot_meta_tag_t>::get_null()
Unexecuted instantiation: Null<hb_array_t<char const> >::get_null()
Unexecuted instantiation: Null<hb_ot_name_record_ids_t>::get_null()
Null<OT::name>::get_null()
Line
Count
Source
113
2.69M
  {
114
2.69M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.69M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.69M
  }
Null<hb_ot_name_entry_t>::get_null()
Line
Count
Source
113
15.3k
  {
114
15.3k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
15.3k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
15.3k
  }
Unexecuted instantiation: Null<OT::NameRecord>::get_null()
Null<OT::post>::get_null()
Line
Count
Source
113
461k
  {
114
461k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
461k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
461k
  }
Null<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
54.1k
  {
114
54.1k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
54.1k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
54.1k
  }
Null<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
1.15M
  {
114
1.15M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.15M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.15M
  }
Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Null<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
113
1.18M
  {
114
1.18M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.18M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.18M
  }
Null<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
113
4.08M
  {
114
4.08M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
4.08M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
4.08M
  }
Null<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
33.5k
  {
114
33.5k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
33.5k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
33.5k
  }
Null<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
41.1k
  {
114
41.1k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
41.1k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
41.1k
  }
Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::MediumTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Null<OT::Layout::GSUB_impl::Ligature<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
47.7k
  {
114
47.7k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
47.7k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
47.7k
  }
Null<OT::Layout::GSUB_impl::SubstLookupSubTable>::get_null()
Line
Count
Source
113
5.09M
  {
114
5.09M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.09M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.09M
  }
Null<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
2.15k
  {
114
2.15k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.15k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.15k
  }
Null<OT::OffsetTo<OT::Layout::GSUB_impl::Sequence<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
2.55M
  {
114
2.55M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.55M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.55M
  }
Null<OT::Layout::GSUB_impl::Sequence<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
113
2.71M
  {
114
2.71M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.71M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.71M
  }
Null<OT::OffsetTo<OT::Layout::GSUB_impl::Sequence<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
101k
  {
114
101k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
101k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
101k
  }
Null<OT::Layout::GSUB_impl::Sequence<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
102k
  {
114
102k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
102k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
102k
  }
Null<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
113
104k
  {
114
104k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
104k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
104k
  }
Null<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
22.1k
  {
114
22.1k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
22.1k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
22.1k
  }
Null<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
48.6k
  {
114
48.6k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
48.6k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
48.6k
  }
Unexecuted instantiation: Null<OT::LookupOffsetList<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned short, 2u> > >::get_null()
Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: Null<OT::Layout::GSUB_impl::SubstLookup>::get_null()
Unexecuted instantiation: Null<OT::LookupOffsetList<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned int, 3u> > >::get_null()
Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned int, 3u>, true> >::get_null()
Null<OT::Layout::GSUB>::get_null()
Line
Count
Source
113
39.1M
  {
114
39.1M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
39.1M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
39.1M
  }
Null<OT::HVAR>::get_null()
Line
Count
Source
113
12.2M
  {
114
12.2M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
12.2M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
12.2M
  }
Null<OT::VVAR>::get_null()
Line
Count
Source
113
4.83k
  {
114
4.83k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
4.83k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
4.83k
  }
Null<OT::VORG>::get_null()
Line
Count
Source
113
526k
  {
114
526k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
526k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
526k
  }
Unexecuted instantiation: Null<OT::VertOriginMetric>::get_null()
Unexecuted instantiation: Null<OT::StatAxisRecord>::get_null()
Unexecuted instantiation: Null<OT::AxisValueRecord>::get_null()
Unexecuted instantiation: Null<OT::AxisValue>::get_null()
Unexecuted instantiation: Null<OT::OffsetTo<OT::AxisValue, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: Null<OT::GSUBGPOS>::get_null()
Null<OT::Axis>::get_null()
Line
Count
Source
113
524k
  {
114
524k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
524k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
524k
  }
Null<OT::BaseScriptList>::get_null()
Line
Count
Source
113
524k
  {
114
524k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
524k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
524k
  }
Null<OT::BaseScriptRecord>::get_null()
Line
Count
Source
113
1.06M
  {
114
1.06M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.06M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.06M
  }
Null<OT::BaseScript>::get_null()
Line
Count
Source
113
525k
  {
114
525k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
525k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
525k
  }
Null<OT::SortedArrayOf<OT::Tag, OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
113
559
  {
114
559
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
559
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
559
  }
Unexecuted instantiation: Null<OT::BaseValues>::get_null()
Null<OT::BaseCoord>::get_null()
Line
Count
Source
113
56
  {
114
56
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
56
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
56
  }
Null<OT::OffsetTo<OT::BaseCoord, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
54
  {
114
54
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
54
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
54
  }
Null<OT::kern>::get_null()
Line
Count
Source
113
633k
  {
114
633k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
633k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
633k
  }
Null<hb_ot_map_t::lookup_map_t>::get_null()
Line
Count
Source
113
209k
  {
114
209k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
209k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
209k
  }
Null<OT::BASE>::get_null()
Line
Count
Source
113
523k
  {
114
523k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
523k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
523k
  }
Unexecuted instantiation: Null<OT::FeatMinMaxRecord>::get_null()
Unexecuted instantiation: Null<OT::MinMax>::get_null()
Unexecuted instantiation: Null<OT::BaseLangSysRecord>::get_null()
Unexecuted instantiation: Null<OT::Record<OT::JstfLangSys> >::get_null()
Unexecuted instantiation: Null<OT::JstfLangSys>::get_null()
Unexecuted instantiation: Null<OT::Record<OT::JstfScript> >::get_null()
Unexecuted instantiation: Null<OT::JstfScript>::get_null()
Unexecuted instantiation: Null<OT::OffsetTo<AAT::OpticalBounds, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: Null<AAT::OpticalBounds>::get_null()
Unexecuted instantiation: Null<AAT::LookupSegmentSingle<OT::OffsetTo<AAT::OpticalBounds, OT::IntType<unsigned short, 2u>, true> > >::get_null()
Unexecuted instantiation: Null<AAT::LookupSegmentArray<OT::OffsetTo<AAT::OpticalBounds, OT::IntType<unsigned short, 2u>, true> > >::get_null()
Unexecuted instantiation: Null<AAT::LookupSingle<OT::OffsetTo<AAT::OpticalBounds, OT::IntType<unsigned short, 2u>, true> > >::get_null()
Null<OT::MathConstants>::get_null()
Line
Count
Source
113
29.7M
  {
114
29.7M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
29.7M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
29.7M
  }
Null<OT::MathGlyphInfo>::get_null()
Line
Count
Source
113
3.18M
  {
114
3.18M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.18M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.18M
  }
Null<OT::MathItalicsCorrectionInfo>::get_null()
Line
Count
Source
113
531k
  {
114
531k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
531k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
531k
  }
Null<OT::MathValueRecord>::get_null()
Line
Count
Source
113
532k
  {
114
532k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
532k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
532k
  }
Null<OT::MathTopAccentAttachment>::get_null()
Line
Count
Source
113
531k
  {
114
531k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
531k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
531k
  }
Null<OT::MathKernInfo>::get_null()
Line
Count
Source
113
1.59M
  {
114
1.59M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.59M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.59M
  }
Null<OT::MathKernInfoRecord>::get_null()
Line
Count
Source
113
1.59M
  {
114
1.59M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.59M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.59M
  }
Null<OT::MathKern>::get_null()
Line
Count
Source
113
532k
  {
114
532k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
532k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
532k
  }
Null<OT::MathVariants>::get_null()
Line
Count
Source
113
3.71M
  {
114
3.71M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.71M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.71M
  }
Null<OT::MathGlyphConstruction>::get_null()
Line
Count
Source
113
3.19M
  {
114
3.19M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.19M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.19M
  }
Unexecuted instantiation: Null<OT::OffsetTo<OT::MathGlyphConstruction, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: Null<OT::MathGlyphVariantRecord>::get_null()
Unexecuted instantiation: Null<hb_ot_math_glyph_variant_t>::get_null()
Null<OT::MathGlyphAssembly>::get_null()
Line
Count
Source
113
1.59M
  {
114
1.59M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.59M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.59M
  }
Unexecuted instantiation: Null<OT::MathGlyphPartRecord>::get_null()
Unexecuted instantiation: Null<hb_ot_math_glyph_part_t>::get_null()
Null<OT::MATH>::get_null()
Line
Count
Source
113
37.1M
  {
114
37.1M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
37.1M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
37.1M
  }
Unexecuted instantiation: Null<OT::GaspRange>::get_null()
Null<hb_shape_plan_t>::get_null()
Line
Count
Source
113
2.93k
  {
114
2.93k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.93k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.93k
  }
Null<CFF::call_context_t>::get_null()
Line
Count
Source
113
4.15k
  {
114
4.15k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
4.15k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
4.15k
  }
Null<hb_ot_map_builder_t::feature_info_t>::get_null()
Line
Count
Source
113
166k
  {
114
166k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
166k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
166k
  }
Null<hb_ot_map_builder_t::stage_info_t>::get_null()
Line
Count
Source
113
16.1k
  {
114
16.1k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
16.1k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
16.1k
  }
Null<hb_ot_map_t::feature_map_t>::get_null()
Line
Count
Source
113
6.19k
  {
114
6.19k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
6.19k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
6.19k
  }
Null<arabic_fallback_plan_t>::get_null()
Line
Count
Source
113
7.40k
  {
114
7.40k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
7.40k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
7.40k
  }
Null<hb_glyph_info_t>::get_null()
Line
Count
Source
113
5.21M
  {
114
5.21M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.21M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.21M
  }
117
};
118
template <typename QType>
119
struct NullHelper
120
{
121
  typedef hb_remove_const<hb_remove_reference<QType>> Type;
122
845M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<AAT::TrackData>::get_null()
Unexecuted instantiation: NullHelper<AAT::TrackTableEntry>::get_null()
NullHelper<OT::IntType<short, 2u> >::get_null()
Line
Count
Source
122
769
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::HBFixed<OT::IntType<int, 4u>, 16u> >::get_null()
Unexecuted instantiation: NullHelper<hb_aat_layout_feature_type_t>::get_null()
NullHelper<AAT::FeatureName>::get_null()
Line
Count
Source
122
1.06M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<AAT::SettingName>::get_null()
Unexecuted instantiation: NullHelper<hb_aat_layout_feature_selector_info_t>::get_null()
NullHelper<OT::GDEF_accelerator_t>::get_null()
Line
Count
Source
122
534k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::GDEF>::get_null()
Line
Count
Source
122
20.9M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::ankr>::get_null()
Line
Count
Source
122
302k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<AAT::LookupSegmentArray<OT::IntType<unsigned short, 2u> > >::get_null()
Unexecuted instantiation: NullHelper<AAT::LookupSegmentArray<OT::HBGlyphID16> >::get_null()
NullHelper<hb_vector_t<hb_aat_map_t::range_flags_t, true> >::get_null()
Line
Count
Source
122
4.23k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_aat_map_t::range_flags_t>::get_null()
Line
Count
Source
122
3.84k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<AAT::Feature>::get_null()
NullHelper<AAT::ltag>::get_null()
Line
Count
Source
122
5.67M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::FTStringRange>::get_null()
Line
Count
Source
122
5.67M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::morx>::get_null()
Line
Count
Source
122
716k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::IntType<unsigned short, 2u> >::get_null()
Line
Count
Source
122
3.96M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<AAT::Lookup<OT::HBGlyphID16> >::get_null()
NullHelper<OT::HBGlyphID16>::get_null()
Line
Count
Source
122
160k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ClassDef>::get_null()
Line
Count
Source
122
31.2M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
122
47.1M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
122
2.13M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::IntType<unsigned int, 4u> >::get_null()
Line
Count
Source
122
123k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::mort>::get_null()
Line
Count
Source
122
657k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<AAT::LookupSegmentArray<OT::IntType<unsigned int, 4u> > >::get_null()
NullHelper<AAT::kerx>::get_null()
Line
Count
Source
122
663k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<AAT::LookupSegmentSingle<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null()
Unexecuted instantiation: NullHelper<AAT::LookupSegmentArray<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null()
Unexecuted instantiation: NullHelper<AAT::LookupSingle<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null()
NullHelper<OT::VariationStore>::get_null()
Line
Count
Source
122
53.5M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::VarRegionList>::get_null()
Line
Count
Source
122
72.3k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MarkGlyphSets>::get_null()
Line
Count
Source
122
253k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::Common::Coverage>::get_null()
Line
Count
Source
122
7.34M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::Layout::Common::Coverage, OT::IntType<unsigned int, 4u>, true> >::get_null()
Line
Count
Source
122
4.84k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::KernPair>::get_null()
Line
Count
Source
122
809k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::Lookup<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null()
Line
Count
Source
122
1.51M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> >::get_null()
NullHelper<AAT::Anchor>::get_null()
Line
Count
Source
122
2.54M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::IntType<unsigned char, 1u> >::get_null()
Line
Count
Source
122
6.30k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::trak>::get_null()
Line
Count
Source
122
665k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_blob_t>::get_null()
Line
Count
Source
122
31.8M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::feat>::get_null()
Line
Count
Source
122
1.59M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_user_data_array_t::hb_user_data_item_t>::get_null()
Line
Count
Source
122
6.59k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_ot_map_t::stage_map_t>::get_null()
Line
Count
Source
122
12.4k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<unsigned long long>::get_null()
Unexecuted instantiation: NullHelper<hb_bit_page_t>::get_null()
Unexecuted instantiation: NullHelper<hb_bit_set_t::page_map_t>::get_null()
NullHelper<unsigned int>::get_null()
Line
Count
Source
122
159k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>::get_null()
NullHelper<hb_serialize_context_t::object_t::link_t>::get_null()
Line
Count
Source
122
1.14k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>::get_null()
NullHelper<hb_serialize_context_t::object_t*>::get_null()
Line
Count
Source
122
1.30k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>::get_null()
Unexecuted instantiation: NullHelper<hb_vector_t<unsigned int, false> >::get_null()
Unexecuted instantiation: NullHelper<AAT::LookupSegmentSingle<OT::IntType<unsigned short, 2u> > >::get_null()
Unexecuted instantiation: NullHelper<AAT::LookupSingle<OT::IntType<unsigned short, 2u> > >::get_null()
Unexecuted instantiation: NullHelper<OT::HBGlyphID24>::get_null()
NullHelper<OT::Index>::get_null()
Line
Count
Source
122
139
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::IntType<unsigned int, 3u> >::get_null()
Unexecuted instantiation: NullHelper<OT::FeatureParamsSize>::get_null()
NullHelper<OT::FeatureParamsStylisticSet>::get_null()
Line
Count
Source
122
342
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::FeatureParamsCharacterVariants>::get_null()
Line
Count
Source
122
532k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::FeatureParams>::get_null()
Line
Count
Source
122
1.60M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Record<OT::Feature> >::get_null()
Line
Count
Source
122
43.4M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Feature>::get_null()
Line
Count
Source
122
3.90M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Record<OT::LangSys> >::get_null()
Line
Count
Source
122
520k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::LangSys>::get_null()
Line
Count
Source
122
35.2M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<hb::unique_ptr<hb_set_t> >::get_null()
NullHelper<OT::Record<OT::Script> >::get_null()
Line
Count
Source
122
36.0M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Script>::get_null()
Line
Count
Source
122
36.1M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::Offset<OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: NullHelper<hb_pair_t<unsigned int, unsigned int> >::get_null()
Unexecuted instantiation: NullHelper<OT::VarRegionAxis>::get_null()
Unexecuted instantiation: NullHelper<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>::get_null()
NullHelper<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >::get_null()
Line
Count
Source
122
20.0k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::VarData>::get_null()
Line
Count
Source
122
27.2k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<hb_inc_bimap_t>::get_null()
NullHelper<int>::get_null()
Line
Count
Source
122
1.58M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Condition>::get_null()
Line
Count
Source
122
10.6k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<hb::shared_ptr<hb_set_t> >::get_null()
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Condition, OT::IntType<unsigned int, 4u>, true> >::get_null()
Unexecuted instantiation: NullHelper<OT::FeatureTableSubstitutionRecord>::get_null()
NullHelper<OT::FeatureTableSubstitution>::get_null()
Line
Count
Source
122
5.71k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ConditionSet>::get_null()
Line
Count
Source
122
46.2k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::FeatureVariationRecord>::get_null()
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::AttachPoint, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: NullHelper<OT::AttachPoint>::get_null()
NullHelper<OT::Device>::get_null()
Line
Count
Source
122
28.7M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<hb_pair_t<unsigned int, int> >::get_null()
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::CaretValue, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: NullHelper<OT::CaretValue>::get_null()
NullHelper<OT::OffsetTo<OT::LigGlyph, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
122
20
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::LigGlyph>::get_null()
Line
Count
Source
122
24
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::AttachList>::get_null()
NullHelper<OT::LigCaretList>::get_null()
Line
Count
Source
122
524k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<AAT::LookupSegmentSingle<OT::HBGlyphID16> >::get_null()
Unexecuted instantiation: NullHelper<AAT::LookupSingle<OT::HBGlyphID16> >::get_null()
Unexecuted instantiation: NullHelper<AAT::LookupSegmentSingle<OT::OffsetTo<OT::ArrayOf<AAT::WidthDeltaPair, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, true> > >::get_null()
Unexecuted instantiation: NullHelper<AAT::LookupSegmentArray<OT::OffsetTo<OT::ArrayOf<AAT::WidthDeltaPair, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, true> > >::get_null()
Unexecuted instantiation: NullHelper<AAT::LookupSingle<OT::OffsetTo<OT::ArrayOf<AAT::WidthDeltaPair, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, true> > >::get_null()
NullHelper<hb_set_t>::get_null()
Line
Count
Source
122
6.36k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::Common::Coverage, OT::IntType<unsigned short, 2u>, true> >::get_null()
NullHelper<OT::hb_accelerate_subtables_context_t::hb_applicable_t>::get_null()
Line
Count
Source
122
116k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::RecordListOfScript>::get_null()
Line
Count
Source
122
39.4M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::RecordListOf<OT::Feature> >::get_null()
Line
Count
Source
122
8.67M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::List16OfOffsetTo<OT::Lookup, OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
122
35.0k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::List16OfOffsetTo<OT::Lookup, OT::IntType<unsigned int, 3u> > >::get_null()
Line
Count
Source
122
10.5k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Lookup>::get_null()
Line
Count
Source
122
20.0M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::FeatureVariations>::get_null()
Line
Count
Source
122
22.4M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GPOS_impl::EntryExitRecord>::get_null()
Line
Count
Source
122
166k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::Anchor, OT::IntType<unsigned short, 2u>, true> >::get_null()
NullHelper<OT::Layout::GPOS_impl::Anchor>::get_null()
Line
Count
Source
122
399k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GPOS_impl::MarkRecord>::get_null()
Line
Count
Source
122
120k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PairSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
122
5.58M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GPOS_impl::PairSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
122
5.84M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PairSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
122
930k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GPOS_impl::PairSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
122
955k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::RuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
122
208k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Rule<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
NullHelper<OT::Rule<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
122
108k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::RuleSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
122
289k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::RuleSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
122
20.5k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Rule<OT::Layout::MediumTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
NullHelper<OT::Rule<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
122
1.18k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::RuleSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
122
22.1k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::RuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
122
5.64k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::ChainRuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
122
193k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::ChainRule<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
NullHelper<OT::ChainRule<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
122
142k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ChainRuleSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
122
2.52M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::ChainRuleSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
122
27.0k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::ChainRule<OT::Layout::MediumTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
NullHelper<OT::ChainRule<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
122
2.87k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ChainRuleSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
122
28.0k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::ChainRuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
122
10.3k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GPOS_impl::PosLookupSubTable>::get_null()
Line
Count
Source
122
3.35M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookupSubTable, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
122
2.13k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GPOS_impl::MarkArray>::get_null()
Line
Count
Source
122
9.40k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GPOS_impl::AnchorMatrix>::get_null()
Line
Count
Source
122
18.2k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GPOS_impl::LigatureArray>::get_null()
Line
Count
Source
122
4.40k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::AnchorMatrix, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: NullHelper<OT::LookupOffsetList<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned short, 2u> > >::get_null()
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: NullHelper<OT::Layout::GPOS_impl::PosLookup>::get_null()
Unexecuted instantiation: NullHelper<OT::RecordListOfFeature>::get_null()
Unexecuted instantiation: NullHelper<OT::LookupOffsetList<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned int, 3u> > >::get_null()
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned int, 3u>, true> >::get_null()
NullHelper<OT::Layout::GPOS>::get_null()
Line
Count
Source
122
30.6M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<AAT::LookupSegmentSingle<OT::IntType<unsigned int, 4u> > >::get_null()
Unexecuted instantiation: NullHelper<AAT::LookupSingle<OT::IntType<unsigned int, 4u> > >::get_null()
Unexecuted instantiation: NullHelper<hb_aat_map_builder_t::feature_range_t>::get_null()
NullHelper<hb_aat_map_builder_t::feature_event_t>::get_null()
Line
Count
Source
122
1.38k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<hb_aat_map_builder_t::feature_info_t>::get_null()
NullHelper<hb_buffer_t>::get_null()
Line
Count
Source
122
7.21k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::maxp>::get_null()
Line
Count
Source
122
1.19M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::head>::get_null()
Line
Count
Source
122
1.29M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::OS2V1Tail>::get_null()
Unexecuted instantiation: NullHelper<OT::OS2V2Tail>::get_null()
Unexecuted instantiation: NullHelper<OT::OS2V5Tail>::get_null()
NullHelper<OT::MVAR>::get_null()
Line
Count
Source
122
2.13M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<float>::get_null()
Line
Count
Source
122
569
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CmapSubtableLongGroup>::get_null()
Line
Count
Source
122
3.11M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::UnicodeValueRange>::get_null()
NullHelper<OT::DefaultUVS>::get_null()
Line
Count
Source
122
1.06M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::NonDefaultUVS>::get_null()
Line
Count
Source
122
1.06M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::UVSMapping>::get_null()
Line
Count
Source
122
534k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::VariationSelectorRecord>::get_null()
Line
Count
Source
122
1.06M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::cmap>::get_null()
Line
Count
Source
122
836k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CmapSubtable>::get_null()
Line
Count
Source
122
426k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CmapSubtableFormat14>::get_null()
Line
Count
Source
122
529k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CmapSubtable const>::get_null()
Line
Count
Source
122
2.36k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OS2>::get_null()
Line
Count
Source
122
1.28M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CmapSubtableFormat14 const>::get_null()
Line
Count
Source
122
6.94k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::EncodingRecord>::get_null()
Line
Count
Source
122
4.77M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_transform_t>::get_null()
Line
Count
Source
122
147k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_bounds_t>::get_null()
Line
Count
Source
122
742k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Paint>::get_null()
Line
Count
Source
122
6.12M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ColorLine<OT::NoVariable> >::get_null()
Line
Count
Source
122
246k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ColorLine<OT::Variable> >::get_null()
Line
Count
Source
122
142k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::NoVariable<OT::Affine2x3> >::get_null()
Line
Count
Source
122
27.2k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Variable<OT::Affine2x3> >::get_null()
Line
Count
Source
122
18.8k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ClipBox>::get_null()
Line
Count
Source
122
2.94k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::ClipRecord>::get_null()
NullHelper<OT::OffsetTo<OT::Paint, OT::IntType<unsigned int, 4u>, true> >::get_null()
Line
Count
Source
122
4.89M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BaseGlyphList>::get_null()
Line
Count
Source
122
13.6k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BaseGlyphRecord>::get_null()
Line
Count
Source
122
549k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::LayerRecord>::get_null()
Unexecuted instantiation: NullHelper<hb_ot_color_layer_t>::get_null()
NullHelper<OT::COLR>::get_null()
Line
Count
Source
122
1.72M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::LayerList>::get_null()
Line
Count
Source
122
2.34k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BaseGlyphPaintRecord>::get_null()
Line
Count
Source
122
391k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ClipList>::get_null()
Line
Count
Source
122
373k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::NoVariable<OT::ColorStop> >::get_null()
Unexecuted instantiation: NullHelper<OT::Variable<OT::ColorStop> >::get_null()
NullHelper<OT::DeltaSetIndexMap>::get_null()
Line
Count
Source
122
109k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<hb_set_t*>::get_null()
Unexecuted instantiation: NullHelper<OT::index_map_subset_plan_t>::get_null()
Unexecuted instantiation: NullHelper<OT::DeltaSetIndexMap const*>::get_null()
NullHelper<OT::hhea>::get_null()
Line
Count
Source
122
1.68M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::vhea>::get_null()
Line
Count
Source
122
522k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::HBFixed<OT::IntType<short, 2u>, 14u> >::get_null()
NullHelper<OT::GlyphVariationData>::get_null()
Line
Count
Source
122
129k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::gvar>::get_null()
Line
Count
Source
122
281k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::contour_point_t>::get_null()
Line
Count
Source
122
22.1M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<unsigned char>::get_null()
Line
Count
Source
122
342k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::hmtxvmtx<OT::hmtx, OT::hhea, OT::HVAR> >::get_null()
Unexecuted instantiation: NullHelper<OT::LongMetric>::get_null()
Unexecuted instantiation: NullHelper<OT::hmtxvmtx<OT::vmtx, OT::vhea, OT::VVAR> >::get_null()
NullHelper<OT::glyf_impl::GlyphHeader>::get_null()
Line
Count
Source
122
770k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::glyf_impl::SubsetGlyph>::get_null()
NullHelper<OT::gvar_accelerator_t>::get_null()
Line
Count
Source
122
523k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::hmtx_accelerator_t>::get_null()
Line
Count
Source
122
530k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::vmtx_accelerator_t>::get_null()
Line
Count
Source
122
530k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::loca>::get_null()
Unexecuted instantiation: NullHelper<OT::glyf>::get_null()
Unexecuted instantiation: NullHelper<hb_hashmap_t<unsigned int, float, false>::item_t>::get_null()
Unexecuted instantiation: NullHelper<hb_variation_t>::get_null()
NullHelper<hb_draw_funcs_t>::get_null()
Line
Count
Source
122
533k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::ResourceTypeRecord>::get_null()
NullHelper<OT::TableRecord>::get_null()
Line
Count
Source
122
18.5M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::OpenTypeOffsetTable, OT::IntType<unsigned int, 4u>, true> >::get_null()
Line
Count
Source
122
724
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::ResourceRecord>::get_null()
NullHelper<OT::OpenTypeOffsetTable>::get_null()
Line
Count
Source
122
11.3M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OpenTypeFontFile>::get_null()
Line
Count
Source
122
69.6k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_face_t>::get_null()
Line
Count
Source
122
233
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::cmap_accelerator_t>::get_null()
Line
Count
Source
122
535k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::AxisRecord>::get_null()
Line
Count
Source
122
2
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_font_t>::get_null()
Line
Count
Source
122
532k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::fvar>::get_null()
Line
Count
Source
122
3.06M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::avar>::get_null()
Line
Count
Source
122
1.56M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::AxisValueMap>::get_null()
NullHelper<hb_map_t>::get_null()
Line
Count
Source
122
1.98k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CPALV1Tail>::get_null()
Line
Count
Source
122
1.59M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::SVG>::get_null()
Line
Count
Source
122
1.59M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::SortedArrayOf<OT::SVGDocumentIndexEntry, OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
122
531k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::SVGDocumentIndexEntry>::get_null()
Line
Count
Source
122
532k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::sbix>::get_null()
Line
Count
Source
122
1.78M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::SBIXStrike>::get_null()
Line
Count
Source
122
30.2k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true> >::get_null()
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::SBIXGlyph, OT::IntType<unsigned int, 4u>, true> >::get_null()
NullHelper<OT::SBIXGlyph>::get_null()
Line
Count
Source
122
53
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CBLC>::get_null()
Line
Count
Source
122
1.45M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BitmapSizeTable>::get_null()
Line
Count
Source
122
729k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::IndexSubtableRecord>::get_null()
NullHelper<OT::IndexSubtable>::get_null()
Line
Count
Source
122
472
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::Offset<OT::IntType<unsigned int, 4u>, true> >::get_null()
Unexecuted instantiation: NullHelper<OT::CBDT>::get_null()
NullHelper<OT::CPAL>::get_null()
Line
Count
Source
122
3.57M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::SVG_accelerator_t>::get_null()
Line
Count
Source
122
534k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CBDT_accelerator_t>::get_null()
Line
Count
Source
122
534k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::sbix_accelerator_t>::get_null()
Line
Count
Source
122
534k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<hb_pair_t<unsigned int, OT::IndexSubtableRecord const*> >::get_null()
NullHelper<OT::sbix::accelerator_t::PNGHeader>::get_null()
Line
Count
Source
122
3.40k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*>::get_null()
NullHelper<OT::post_accelerator_t>::get_null()
Line
Count
Source
122
530k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::name_accelerator_t>::get_null()
Line
Count
Source
122
535k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::meta_accelerator_t>::get_null()
Line
Count
Source
122
534k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::glyf_accelerator_t>::get_null()
Line
Count
Source
122
530k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::cff1_accelerator_t>::get_null()
Line
Count
Source
122
529k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::cff2_accelerator_t>::get_null()
Line
Count
Source
122
504k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::GSUB_accelerator_t>::get_null()
Line
Count
Source
122
536k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::GPOS_accelerator_t>::get_null()
Line
Count
Source
122
535k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::number_t>::get_null()
Line
Count
Source
122
32.3k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::FDSelect>::get_null()
Line
Count
Source
122
81.5k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<CFF::FDSelect3_4_Range<OT::IntType<unsigned short, 2u>, OT::IntType<unsigned char, 1u> > >::get_null()
NullHelper<CFF::Encoding1_Range>::get_null()
Line
Count
Source
122
17
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<CFF::SuppEncoding>::get_null()
Unexecuted instantiation: NullHelper<CFF::code_pair_t>::get_null()
Unexecuted instantiation: NullHelper<CFF::CFF1SuppEncData>::get_null()
Unexecuted instantiation: NullHelper<hb_array_t<unsigned char const> >::get_null()
NullHelper<CFF::cff1_top_dict_val_t>::get_null()
Line
Count
Source
122
2.46k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::op_str_t>::get_null()
Line
Count
Source
122
2.09k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::dict_val_t>::get_null()
Line
Count
Source
122
5.89k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::cff1_font_dict_values_t>::get_null()
Line
Count
Source
122
20
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::cff1>::get_null()
Line
Count
Source
122
1.01M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFFIndex<OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
122
63.8k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFF1IndexOf<CFF::TopDict> >::get_null()
Line
Count
Source
122
34.9k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::Charset>::get_null()
Line
Count
Source
122
3.27M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFF1FDArray>::get_null()
Line
Count
Source
122
30.5k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFF1FDSelect>::get_null()
Line
Count
Source
122
30.3k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::Encoding>::get_null()
Line
Count
Source
122
30.1k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFF1StringIndex>::get_null()
Line
Count
Source
122
29.4k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::Subrs<OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
122
1.19M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::cff1_private_dict_values_base_t<CFF::dict_val_t> >::get_null()
Line
Count
Source
122
478
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::cff1::accelerator_t::gname_t>::get_null()
NullHelper<CFF::CFF2FDSelect>::get_null()
Line
Count
Source
122
311k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<CFF::FDSelect3_4_Range<OT::IntType<unsigned int, 4u>, OT::IntType<unsigned short, 2u> > >::get_null()
NullHelper<OT::cff2>::get_null()
Line
Count
Source
122
978k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFF2VariationStore>::get_null()
Line
Count
Source
122
27.9k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFFIndex<OT::IntType<unsigned int, 4u> > >::get_null()
Line
Count
Source
122
19.5k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::Subrs<OT::IntType<unsigned int, 4u> > >::get_null()
Line
Count
Source
122
1.41M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFF2FDArray>::get_null()
Line
Count
Source
122
18.7k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::cff2_font_dict_values_t>::get_null()
Line
Count
Source
122
353k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::UnsizedByteStr>::get_null()
Line
Count
Source
122
337k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::cff2_private_dict_values_base_t<CFF::dict_val_t> >::get_null()
Line
Count
Source
122
170k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::meta>::get_null()
Line
Count
Source
122
1.06M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::DataMap>::get_null()
Line
Count
Source
122
532k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<hb_ot_meta_tag_t>::get_null()
Unexecuted instantiation: NullHelper<hb_array_t<char const> >::get_null()
Unexecuted instantiation: NullHelper<hb_ot_name_record_ids_t>::get_null()
NullHelper<OT::name>::get_null()
Line
Count
Source
122
2.69M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_ot_name_entry_t>::get_null()
Line
Count
Source
122
15.3k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::NameRecord>::get_null()
NullHelper<OT::post>::get_null()
Line
Count
Source
122
461k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
122
54.1k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
122
1.15M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
NullHelper<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
122
1.18M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
122
4.08M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
122
33.5k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
122
41.1k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::MediumTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
NullHelper<OT::Layout::GSUB_impl::Ligature<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
122
47.7k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GSUB_impl::SubstLookupSubTable>::get_null()
Line
Count
Source
122
5.09M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
122
2.15k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::Sequence<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
122
2.55M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GSUB_impl::Sequence<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
122
2.71M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::Sequence<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
122
101k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GSUB_impl::Sequence<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
122
102k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
122
104k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
122
22.1k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
122
48.6k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::LookupOffsetList<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned short, 2u> > >::get_null()
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: NullHelper<OT::Layout::GSUB_impl::SubstLookup>::get_null()
Unexecuted instantiation: NullHelper<OT::LookupOffsetList<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned int, 3u> > >::get_null()
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned int, 3u>, true> >::get_null()
NullHelper<OT::Layout::GSUB>::get_null()
Line
Count
Source
122
39.1M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::HVAR>::get_null()
Line
Count
Source
122
12.2M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::VVAR>::get_null()
Line
Count
Source
122
4.83k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::VORG>::get_null()
Line
Count
Source
122
526k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::VertOriginMetric>::get_null()
Unexecuted instantiation: NullHelper<OT::StatAxisRecord>::get_null()
Unexecuted instantiation: NullHelper<OT::AxisValueRecord>::get_null()
Unexecuted instantiation: NullHelper<OT::AxisValue>::get_null()
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::AxisValue, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: NullHelper<OT::GSUBGPOS>::get_null()
NullHelper<OT::Axis>::get_null()
Line
Count
Source
122
524k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BaseScriptList>::get_null()
Line
Count
Source
122
524k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BaseScriptRecord>::get_null()
Line
Count
Source
122
1.06M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BaseScript>::get_null()
Line
Count
Source
122
525k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::SortedArrayOf<OT::Tag, OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
122
559
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::BaseValues>::get_null()
NullHelper<OT::BaseCoord>::get_null()
Line
Count
Source
122
56
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OffsetTo<OT::BaseCoord, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
122
54
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::kern>::get_null()
Line
Count
Source
122
633k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_ot_map_t::lookup_map_t>::get_null()
Line
Count
Source
122
209k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BASE>::get_null()
Line
Count
Source
122
523k
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::FeatMinMaxRecord>::get_null()
Unexecuted instantiation: NullHelper<OT::MinMax>::get_null()
Unexecuted instantiation: NullHelper<OT::BaseLangSysRecord>::get_null()
Unexecuted instantiation: NullHelper<OT::Record<OT::JstfLangSys> >::get_null()
Unexecuted instantiation: NullHelper<OT::JstfLangSys>::get_null()
Unexecuted instantiation: NullHelper<OT::Record<OT::JstfScript> >::get_null()
Unexecuted instantiation: NullHelper<OT::JstfScript>::get_null()
Unexecuted instantiation: NullHelper<OT::OffsetTo<AAT::OpticalBounds, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: NullHelper<AAT::OpticalBounds>::get_null()
Unexecuted instantiation: NullHelper<AAT::LookupSegmentSingle<OT::OffsetTo<AAT::OpticalBounds, OT::IntType<unsigned short, 2u>, true> > >::get_null()
Unexecuted instantiation: NullHelper<AAT::LookupSegmentArray<OT::OffsetTo<AAT::OpticalBounds, OT::IntType<unsigned short, 2u>, true> > >::get_null()
Unexecuted instantiation: NullHelper<AAT::LookupSingle<OT::OffsetTo<AAT::OpticalBounds, OT::IntType<unsigned short, 2u>, true> > >::get_null()
NullHelper<OT::MathConstants>::get_null()
Line
Count
Source
122
29.7M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathGlyphInfo>::get_null()
Line
Count
Source
122
3.18M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathItalicsCorrectionInfo>::get_null()
Line
Count
Source
122
531k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathValueRecord>::get_null()
Line
Count
Source
122
532k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathTopAccentAttachment>::get_null()
Line
Count
Source
122
531k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathKernInfo>::get_null()
Line
Count
Source
122
1.59M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathKernInfoRecord>::get_null()
Line
Count
Source
122
1.59M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathKern>::get_null()
Line
Count
Source
122
532k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathVariants>::get_null()
Line
Count
Source
122
3.71M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathGlyphConstruction>::get_null()
Line
Count
Source
122
3.19M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::MathGlyphConstruction, OT::IntType<unsigned short, 2u>, true> >::get_null()
Unexecuted instantiation: NullHelper<OT::MathGlyphVariantRecord>::get_null()
Unexecuted instantiation: NullHelper<hb_ot_math_glyph_variant_t>::get_null()
NullHelper<OT::MathGlyphAssembly>::get_null()
Line
Count
Source
122
1.59M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::MathGlyphPartRecord>::get_null()
Unexecuted instantiation: NullHelper<hb_ot_math_glyph_part_t>::get_null()
NullHelper<OT::MATH>::get_null()
Line
Count
Source
122
37.1M
  static const Type & get_null () { return Null<Type>::get_null (); }
Unexecuted instantiation: NullHelper<OT::GaspRange>::get_null()
NullHelper<hb_shape_plan_t>::get_null()
Line
Count
Source
122
2.93k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_unicode_funcs_t>::get_null()
Line
Count
Source
122
1.65k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::call_context_t>::get_null()
Line
Count
Source
122
4.15k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_ot_map_builder_t::feature_info_t>::get_null()
Line
Count
Source
122
166k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_ot_map_builder_t::stage_info_t>::get_null()
Line
Count
Source
122
16.1k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_ot_map_t::feature_map_t>::get_null()
Line
Count
Source
122
6.19k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<arabic_fallback_plan_t>::get_null()
Line
Count
Source
122
7.40k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_glyph_info_t>::get_null()
Line
Count
Source
122
5.21M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_paint_funcs_t>::get_null()
Line
Count
Source
122
1.57k
  static const Type & get_null () { return Null<Type>::get_null (); }
123
};
124
755M
#define Null(Type) NullHelper<Type>::get_null ()
125
126
/* Specializations for arbitrary-content Null objects expressed in bytes. */
127
#define DECLARE_NULL_NAMESPACE_BYTES(Namespace, Type) \
128
  } /* Close namespace. */ \
129
  extern HB_INTERNAL const unsigned char _hb_Null_##Namespace##_##Type[hb_null_size (Namespace::Type)]; \
130
  template <> \
131
  struct Null<Namespace::Type> { \
132
38.4M
    static Namespace::Type const & get_null () { \
133
38.4M
      return *reinterpret_cast<const Namespace::Type *> (_hb_Null_##Namespace##_##Type); \
134
38.4M
    } \
Unexecuted instantiation: Null<AAT::SettingName>::get_null()
Null<OT::Index>::get_null()
Line
Count
Source
132
139
    static Namespace::Type const & get_null () { \
133
139
      return *reinterpret_cast<const Namespace::Type *> (_hb_Null_##Namespace##_##Type); \
134
139
    } \
Unexecuted instantiation: Null<OT::VarIdx>::get_null()
Null<OT::LangSys>::get_null()
Line
Count
Source
132
35.2M
    static Namespace::Type const & get_null () { \
133
35.2M
      return *reinterpret_cast<const Namespace::Type *> (_hb_Null_##Namespace##_##Type); \
134
35.2M
    } \
Null<OT::CmapSubtableLongGroup>::get_null()
Line
Count
Source
132
3.11M
    static Namespace::Type const & get_null () { \
133
3.11M
      return *reinterpret_cast<const Namespace::Type *> (_hb_Null_##Namespace##_##Type); \
134
3.11M
    } \
Unexecuted instantiation: Null<OT::ClipRecord>::get_null()
135
  }; \
136
  namespace Namespace { \
137
  static_assert (true, "") /* Require semicolon after. */
138
#define DECLARE_NULL_NAMESPACE_BYTES_TEMPLATE1(Namespace, Type, Size) \
139
  } /* Close namespace. */ \
140
  extern HB_INTERNAL const unsigned char _hb_Null_##Namespace##_##Type[Size]; \
141
  template <typename Spec> \
142
  struct Null<Namespace::Type<Spec>> { \
143
1.51M
    static Namespace::Type<Spec> const & get_null () { \
144
1.51M
      return *reinterpret_cast<const Namespace::Type<Spec> *> (_hb_Null_##Namespace##_##Type); \
145
1.51M
    } \
Unexecuted instantiation: Null<AAT::Lookup<OT::HBGlyphID16> >::get_null()
Null<AAT::Lookup<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null()
Line
Count
Source
143
1.51M
    static Namespace::Type<Spec> const & get_null () { \
144
1.51M
      return *reinterpret_cast<const Namespace::Type<Spec> *> (_hb_Null_##Namespace##_##Type); \
145
1.51M
    } \
146
  }; \
147
  namespace Namespace { \
148
  static_assert (true, "") /* Require semicolon after. */
149
#define DEFINE_NULL_NAMESPACE_BYTES(Namespace, Type) \
150
  const unsigned char _hb_Null_##Namespace##_##Type[sizeof (_hb_Null_##Namespace##_##Type)]
151
152
/* Specializations for arbitrary-content Null objects expressed as struct initializer. */
153
#define DECLARE_NULL_INSTANCE(Type) \
154
  extern HB_INTERNAL const Type _hb_Null_##Type; \
155
  template <> \
156
  struct Null<Type> { \
157
1.07M
    static Type const & get_null () { \
158
1.07M
      return _hb_Null_##Type; \
159
1.07M
    } \
Null<hb_unicode_funcs_t>::get_null()
Line
Count
Source
157
1.65k
    static Type const & get_null () { \
158
1.65k
      return _hb_Null_##Type; \
159
1.65k
    } \
Null<hb_buffer_t>::get_null()
Line
Count
Source
157
7.21k
    static Type const & get_null () { \
158
7.21k
      return _hb_Null_##Type; \
159
7.21k
    } \
Null<hb_face_t>::get_null()
Line
Count
Source
157
233
    static Type const & get_null () { \
158
233
      return _hb_Null_##Type; \
159
233
    } \
Unexecuted instantiation: Null<hb_font_funcs_t>::get_null()
Null<hb_font_t>::get_null()
Line
Count
Source
157
532k
    static Type const & get_null () { \
158
532k
      return _hb_Null_##Type; \
159
532k
    } \
Null<hb_paint_funcs_t>::get_null()
Line
Count
Source
157
1.57k
    static Type const & get_null () { \
158
1.57k
      return _hb_Null_##Type; \
159
1.57k
    } \
Null<hb_draw_funcs_t>::get_null()
Line
Count
Source
157
533k
    static Type const & get_null () { \
158
533k
      return _hb_Null_##Type; \
159
533k
    } \
160
  }; \
161
  static_assert (true, "") /* Require semicolon after. */
162
#define DEFINE_NULL_INSTANCE(Type) \
163
  const Type _hb_Null_##Type
164
165
/* Global writable pool.  Enlarge as necessary. */
166
167
/* To be fully correct, CrapPool must be thread_local. However, we do not rely on CrapPool
168
 * for correct operation. It only exist to catch and divert program logic bugs instead of
169
 * causing bad memory access. So, races there are not actually introducing incorrectness
170
 * in the code. Has ~12kb binary size overhead to have it, also clang build fails with it. */
171
extern HB_INTERNAL
172
/*thread_local*/ uint64_t _hb_CrapPool[(HB_NULL_POOL_SIZE + sizeof (uint64_t) - 1) / sizeof (uint64_t)];
173
174
/* CRAP pool: Common Region for Access Protection. */
175
template <typename Type>
176
30.5M
static inline Type& Crap () {
177
30.5M
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
30.5M
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
30.5M
  memcpy (obj, &Null (Type), sizeof (*obj));
180
30.5M
  return *obj;
181
30.5M
}
Unexecuted instantiation: hb-aat-layout.cc:hb_aat_layout_feature_type_t& Crap<hb_aat_layout_feature_type_t>()
Unexecuted instantiation: hb-aat-layout.cc:hb_aat_layout_feature_selector_info_t& Crap<hb_aat_layout_feature_selector_info_t>()
Unexecuted instantiation: hb-aat-layout.cc:hb_vector_t<hb_aat_map_t::range_flags_t, true>& Crap<hb_vector_t<hb_aat_map_t::range_flags_t, true> >()
hb-aat-layout.cc:hb_aat_map_t::range_flags_t& Crap<hb_aat_map_t::range_flags_t>()
Line
Count
Source
176
1.92k
static inline Type& Crap () {
177
1.92k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
1.92k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
1.92k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
1.92k
  return *obj;
181
1.92k
}
Unexecuted instantiation: hb-aat-layout.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-aat-layout.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-aat-layout.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-aat-layout.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-aat-layout.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-aat-layout.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-aat-layout.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-aat-layout.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-aat-layout.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-aat-layout.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-aat-layout.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
Unexecuted instantiation: hb-aat-layout.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-aat-layout.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-aat-layout.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-aat-layout.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-aat-layout.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-aat-layout.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-aat-layout.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-aat-layout.cc:int& Crap<int>()
Unexecuted instantiation: hb-aat-layout.cc:hb_set_t& Crap<hb_set_t>()
Unexecuted instantiation: hb-aat-layout.cc:OT::hb_accelerate_subtables_context_t::hb_applicable_t& Crap<OT::hb_accelerate_subtables_context_t::hb_applicable_t>()
Unexecuted instantiation: hb-aat-map.cc:hb_aat_map_builder_t::feature_range_t& Crap<hb_aat_map_builder_t::feature_range_t>()
hb-aat-map.cc:hb_aat_map_builder_t::feature_event_t& Crap<hb_aat_map_builder_t::feature_event_t>()
Line
Count
Source
176
1.38k
static inline Type& Crap () {
177
1.38k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
1.38k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
1.38k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
1.38k
  return *obj;
181
1.38k
}
Unexecuted instantiation: hb-aat-map.cc:hb_aat_map_builder_t::feature_info_t& Crap<hb_aat_map_builder_t::feature_info_t>()
hb-aat-map.cc:hb_aat_map_t::range_flags_t& Crap<hb_aat_map_t::range_flags_t>()
Line
Count
Source
176
1.92k
static inline Type& Crap () {
177
1.92k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
1.92k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
1.92k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
1.92k
  return *obj;
181
1.92k
}
Unexecuted instantiation: hb-aat-map.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-aat-map.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-aat-map.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-aat-map.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-aat-map.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-aat-map.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-aat-map.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-aat-map.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-aat-map.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-aat-map.cc:hb_aat_layout_feature_selector_info_t& Crap<hb_aat_layout_feature_selector_info_t>()
Unexecuted instantiation: hb-aat-map.cc:hb_aat_layout_feature_type_t& Crap<hb_aat_layout_feature_type_t>()
hb-blob.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Line
Count
Source
176
6.59k
static inline Type& Crap () {
177
6.59k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
6.59k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
6.59k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
6.59k
  return *obj;
181
6.59k
}
Unexecuted instantiation: hb-buffer.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-buffer.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-buffer.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-buffer.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-buffer.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-buffer.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-buffer.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-buffer.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-buffer.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-common.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-common.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-common.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-common.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-common.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-common.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-common.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-common.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-common.cc:hb_aat_layout_feature_selector_info_t& Crap<hb_aat_layout_feature_selector_info_t>()
Unexecuted instantiation: hb-common.cc:hb_aat_layout_feature_type_t& Crap<hb_aat_layout_feature_type_t>()
Unexecuted instantiation: hb-common.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-common.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
Unexecuted instantiation: hb-common.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-common.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-common.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-common.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-common.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-common.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-common.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-common.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-common.cc:OT::VariationSelectorRecord& Crap<OT::VariationSelectorRecord>()
Unexecuted instantiation: hb-common.cc:hb_transform_t& Crap<hb_transform_t>()
Unexecuted instantiation: hb-common.cc:hb_bounds_t& Crap<hb_bounds_t>()
Unexecuted instantiation: hb-common.cc:hb_ot_color_layer_t& Crap<hb_ot_color_layer_t>()
Unexecuted instantiation: hb-common.cc:OT::LayerRecord& Crap<OT::LayerRecord>()
Unexecuted instantiation: hb-common.cc:hb_set_t*& Crap<hb_set_t*>()
Unexecuted instantiation: hb-common.cc:OT::index_map_subset_plan_t& Crap<OT::index_map_subset_plan_t>()
Unexecuted instantiation: hb-common.cc:OT::DeltaSetIndexMap const*& Crap<OT::DeltaSetIndexMap const*>()
Unexecuted instantiation: hb-common.cc:int& Crap<int>()
Unexecuted instantiation: hb-common.cc:OT::contour_point_t& Crap<OT::contour_point_t>()
Unexecuted instantiation: hb-common.cc:unsigned char& Crap<unsigned char>()
Unexecuted instantiation: hb-common.cc:OT::glyf_impl::SubsetGlyph& Crap<OT::glyf_impl::SubsetGlyph>()
Unexecuted instantiation: hb-common.cc:OT::IntType<unsigned int, 4u>& Crap<OT::IntType<unsigned int, 4u> >()
Unexecuted instantiation: hb-common.cc:hb_hashmap_t<unsigned int, float, false>::item_t& Crap<hb_hashmap_t<unsigned int, float, false>::item_t>()
Unexecuted instantiation: hb-common.cc:hb_variation_t& Crap<hb_variation_t>()
Unexecuted instantiation: hb-draw.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-face.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-face.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-face.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-face.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-face.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-face.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-face.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-face.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-face.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-face.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-face.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
Unexecuted instantiation: hb-face.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-face.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-face.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-face.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-face.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-face.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-face.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-face.cc:OT::VariationSelectorRecord& Crap<OT::VariationSelectorRecord>()
Unexecuted instantiation: hb-fallback-shape.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-font.cc:int& Crap<int>()
Unexecuted instantiation: hb-font.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-font.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-font.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-font.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-font.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-font.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-font.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-font.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-font.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-font.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-font.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
Unexecuted instantiation: hb-font.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-font.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-font.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-font.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-font.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-font.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-font.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-map.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-map.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-map.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-map.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-map.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-number.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-color.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-color.cc:hb_ot_color_layer_t& Crap<hb_ot_color_layer_t>()
Unexecuted instantiation: hb-ot-color.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-color.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-color.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-color.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-color.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-color.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-color.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-color.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-color.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-ot-color.cc:hb_pair_t<unsigned int, OT::IndexSubtableRecord const*>& Crap<hb_pair_t<unsigned int, OT::IndexSubtableRecord const*> >()
Unexecuted instantiation: hb-ot-color.cc:OT::IndexSubtableRecord& Crap<OT::IndexSubtableRecord>()
Unexecuted instantiation: hb-ot-color.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-ot-color.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
Unexecuted instantiation: hb-ot-color.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-ot-color.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-ot-color.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-ot-color.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-ot-color.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-ot-color.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-ot-color.cc:hb_transform_t& Crap<hb_transform_t>()
Unexecuted instantiation: hb-ot-color.cc:hb_bounds_t& Crap<hb_bounds_t>()
Unexecuted instantiation: hb-ot-color.cc:OT::LayerRecord& Crap<OT::LayerRecord>()
Unexecuted instantiation: hb-ot-color.cc:OT::OffsetTo<OT::SBIXGlyph, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::SBIXGlyph, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-ot-color.cc:OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*& Crap<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*>()
Unexecuted instantiation: hb-ot-face.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-face.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-face.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-face.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-face.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-face.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-face.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-face.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-face.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-ot-face.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
Unexecuted instantiation: hb-ot-face.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-ot-face.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-ot-face.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-ot-face.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-face.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-ot-face.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-ot-face.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-ot-face.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-ot-face.cc:OT::VariationSelectorRecord& Crap<OT::VariationSelectorRecord>()
Unexecuted instantiation: hb-ot-face.cc:hb_set_t*& Crap<hb_set_t*>()
Unexecuted instantiation: hb-ot-face.cc:OT::index_map_subset_plan_t& Crap<OT::index_map_subset_plan_t>()
Unexecuted instantiation: hb-ot-face.cc:OT::DeltaSetIndexMap const*& Crap<OT::DeltaSetIndexMap const*>()
Unexecuted instantiation: hb-ot-face.cc:int& Crap<int>()
Unexecuted instantiation: hb-ot-face.cc:OT::contour_point_t& Crap<OT::contour_point_t>()
Unexecuted instantiation: hb-ot-face.cc:unsigned char& Crap<unsigned char>()
Unexecuted instantiation: hb-ot-face.cc:OT::glyf_impl::SubsetGlyph& Crap<OT::glyf_impl::SubsetGlyph>()
Unexecuted instantiation: hb-ot-face.cc:OT::IntType<unsigned int, 4u>& Crap<OT::IntType<unsigned int, 4u> >()
Unexecuted instantiation: hb-ot-face.cc:hb_hashmap_t<unsigned int, float, false>::item_t& Crap<hb_hashmap_t<unsigned int, float, false>::item_t>()
Unexecuted instantiation: hb-ot-face.cc:hb_variation_t& Crap<hb_variation_t>()
Unexecuted instantiation: hb-ot-face.cc:CFF::number_t& Crap<CFF::number_t>()
Unexecuted instantiation: hb-ot-face.cc:OT::IntType<unsigned char, 1u>& Crap<OT::IntType<unsigned char, 1u> >()
Unexecuted instantiation: hb-ot-face.cc:CFF::Encoding1_Range& Crap<CFF::Encoding1_Range>()
Unexecuted instantiation: hb-ot-face.cc:CFF::SuppEncoding& Crap<CFF::SuppEncoding>()
Unexecuted instantiation: hb-ot-face.cc:hb_array_t<unsigned char const>& Crap<hb_array_t<unsigned char const> >()
Unexecuted instantiation: hb-ot-face.cc:CFF::cff1_top_dict_val_t& Crap<CFF::cff1_top_dict_val_t>()
Unexecuted instantiation: hb-ot-face.cc:CFF::op_str_t& Crap<CFF::op_str_t>()
Unexecuted instantiation: hb-ot-face.cc:CFF::dict_val_t& Crap<CFF::dict_val_t>()
Unexecuted instantiation: hb-ot-face.cc:CFF::cff1_private_dict_values_base_t<CFF::dict_val_t>& Crap<CFF::cff1_private_dict_values_base_t<CFF::dict_val_t> >()
Unexecuted instantiation: hb-ot-face.cc:CFF::cff1_font_dict_values_t& Crap<CFF::cff1_font_dict_values_t>()
Unexecuted instantiation: hb-ot-face.cc:OT::cff1::accelerator_t::gname_t& Crap<OT::cff1::accelerator_t::gname_t>()
Unexecuted instantiation: hb-ot-face.cc:CFF::cff2_font_dict_values_t& Crap<CFF::cff2_font_dict_values_t>()
Unexecuted instantiation: hb-ot-face.cc:CFF::cff2_private_dict_values_base_t<CFF::dict_val_t>& Crap<CFF::cff2_private_dict_values_base_t<CFF::dict_val_t> >()
Unexecuted instantiation: hb-ot-face.cc:hb_set_t& Crap<hb_set_t>()
Unexecuted instantiation: hb-ot-face.cc:OT::hb_accelerate_subtables_context_t::hb_applicable_t& Crap<OT::hb_accelerate_subtables_context_t::hb_applicable_t>()
Unexecuted instantiation: hb-ot-face.cc:hb_ot_meta_tag_t& Crap<hb_ot_meta_tag_t>()
Unexecuted instantiation: hb-ot-face.cc:hb_ot_name_record_ids_t& Crap<hb_ot_name_record_ids_t>()
Unexecuted instantiation: hb-ot-face.cc:hb_ot_name_entry_t& Crap<hb_ot_name_entry_t>()
Unexecuted instantiation: hb-ot-face.cc:hb_pair_t<unsigned int, OT::IndexSubtableRecord const*>& Crap<hb_pair_t<unsigned int, OT::IndexSubtableRecord const*> >()
Unexecuted instantiation: hb-ot-face.cc:OT::IndexSubtableRecord& Crap<OT::IndexSubtableRecord>()
Unexecuted instantiation: hb-ot-face.cc:OT::OffsetTo<OT::SBIXGlyph, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::SBIXGlyph, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-ot-face.cc:OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*& Crap<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*>()
Unexecuted instantiation: hb-ot-face.cc:OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >()
Unexecuted instantiation: hb-ot-face.cc:OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >()
Unexecuted instantiation: hb-ot-face.cc:OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >()
Unexecuted instantiation: hb-ot-face.cc:OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> >()
hb-ot-font.cc:OT::contour_point_t& Crap<OT::contour_point_t>()
Line
Count
Source
176
22.1M
static inline Type& Crap () {
177
22.1M
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
22.1M
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
22.1M
  memcpy (obj, &Null (Type), sizeof (*obj));
180
22.1M
  return *obj;
181
22.1M
}
hb-ot-font.cc:unsigned int& Crap<unsigned int>()
Line
Count
Source
176
77.3k
static inline Type& Crap () {
177
77.3k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
77.3k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
77.3k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
77.3k
  return *obj;
181
77.3k
}
hb-ot-font.cc:int& Crap<int>()
Line
Count
Source
176
1.58M
static inline Type& Crap () {
177
1.58M
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
1.58M
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
1.58M
  memcpy (obj, &Null (Type), sizeof (*obj));
180
1.58M
  return *obj;
181
1.58M
}
hb-ot-font.cc:CFF::number_t& Crap<CFF::number_t>()
Line
Count
Source
176
1.54k
static inline Type& Crap () {
177
1.54k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
1.54k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
1.54k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
1.54k
  return *obj;
181
1.54k
}
hb-ot-font.cc:CFF::cff1_top_dict_val_t& Crap<CFF::cff1_top_dict_val_t>()
Line
Count
Source
176
2.46k
static inline Type& Crap () {
177
2.46k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
2.46k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
2.46k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
2.46k
  return *obj;
181
2.46k
}
Unexecuted instantiation: hb-ot-font.cc:CFF::cff1_private_dict_values_base_t<CFF::dict_val_t>& Crap<CFF::cff1_private_dict_values_base_t<CFF::dict_val_t> >()
hb-ot-font.cc:CFF::cff1_font_dict_values_t& Crap<CFF::cff1_font_dict_values_t>()
Line
Count
Source
176
20
static inline Type& Crap () {
177
20
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
20
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
20
  memcpy (obj, &Null (Type), sizeof (*obj));
180
20
  return *obj;
181
20
}
hb-ot-font.cc:CFF::op_str_t& Crap<CFF::op_str_t>()
Line
Count
Source
176
2.09k
static inline Type& Crap () {
177
2.09k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
2.09k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
2.09k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
2.09k
  return *obj;
181
2.09k
}
hb-ot-font.cc:CFF::dict_val_t& Crap<CFF::dict_val_t>()
Line
Count
Source
176
5.89k
static inline Type& Crap () {
177
5.89k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
5.89k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
5.89k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
5.89k
  return *obj;
181
5.89k
}
hb-ot-font.cc:CFF::cff2_font_dict_values_t& Crap<CFF::cff2_font_dict_values_t>()
Line
Count
Source
176
353k
static inline Type& Crap () {
177
353k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
353k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
353k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
353k
  return *obj;
181
353k
}
Unexecuted instantiation: hb-ot-font.cc:CFF::cff2_private_dict_values_base_t<CFF::dict_val_t>& Crap<CFF::cff2_private_dict_values_base_t<CFF::dict_val_t> >()
hb-ot-font.cc:hb_transform_t& Crap<hb_transform_t>()
Line
Count
Source
176
1.51k
static inline Type& Crap () {
177
1.51k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
1.51k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
1.51k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
1.51k
  return *obj;
181
1.51k
}
hb-ot-font.cc:hb_bounds_t& Crap<hb_bounds_t>()
Line
Count
Source
176
6.12k
static inline Type& Crap () {
177
6.12k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
6.12k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
6.12k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
6.12k
  return *obj;
181
6.12k
}
Unexecuted instantiation: hb-ot-font.cc:OT::cff1::accelerator_t::gname_t& Crap<OT::cff1::accelerator_t::gname_t>()
Unexecuted instantiation: hb-ot-font.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-font.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-font.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-font.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-font.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-font.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-font.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-font.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-ot-font.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
Unexecuted instantiation: hb-ot-font.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-ot-font.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-ot-font.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-ot-font.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-font.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-ot-font.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-ot-font.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-ot-font.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-ot-font.cc:OT::VariationSelectorRecord& Crap<OT::VariationSelectorRecord>()
Unexecuted instantiation: hb-ot-font.cc:hb_set_t*& Crap<hb_set_t*>()
Unexecuted instantiation: hb-ot-font.cc:OT::index_map_subset_plan_t& Crap<OT::index_map_subset_plan_t>()
Unexecuted instantiation: hb-ot-font.cc:OT::DeltaSetIndexMap const*& Crap<OT::DeltaSetIndexMap const*>()
Unexecuted instantiation: hb-ot-font.cc:unsigned char& Crap<unsigned char>()
Unexecuted instantiation: hb-ot-font.cc:OT::glyf_impl::SubsetGlyph& Crap<OT::glyf_impl::SubsetGlyph>()
Unexecuted instantiation: hb-ot-font.cc:OT::IntType<unsigned int, 4u>& Crap<OT::IntType<unsigned int, 4u> >()
Unexecuted instantiation: hb-ot-font.cc:hb_hashmap_t<unsigned int, float, false>::item_t& Crap<hb_hashmap_t<unsigned int, float, false>::item_t>()
Unexecuted instantiation: hb-ot-font.cc:hb_variation_t& Crap<hb_variation_t>()
Unexecuted instantiation: hb-ot-font.cc:OT::IntType<unsigned char, 1u>& Crap<OT::IntType<unsigned char, 1u> >()
Unexecuted instantiation: hb-ot-font.cc:CFF::Encoding1_Range& Crap<CFF::Encoding1_Range>()
Unexecuted instantiation: hb-ot-font.cc:CFF::SuppEncoding& Crap<CFF::SuppEncoding>()
Unexecuted instantiation: hb-ot-font.cc:hb_array_t<unsigned char const>& Crap<hb_array_t<unsigned char const> >()
Unexecuted instantiation: hb-ot-font.cc:hb_pair_t<unsigned int, OT::IndexSubtableRecord const*>& Crap<hb_pair_t<unsigned int, OT::IndexSubtableRecord const*> >()
Unexecuted instantiation: hb-ot-font.cc:OT::IndexSubtableRecord& Crap<OT::IndexSubtableRecord>()
Unexecuted instantiation: hb-ot-font.cc:hb_ot_color_layer_t& Crap<hb_ot_color_layer_t>()
Unexecuted instantiation: hb-ot-font.cc:OT::LayerRecord& Crap<OT::LayerRecord>()
Unexecuted instantiation: hb-ot-font.cc:OT::OffsetTo<OT::SBIXGlyph, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::SBIXGlyph, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-ot-font.cc:OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*& Crap<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*>()
Unexecuted instantiation: hb-ot-layout.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-layout.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-layout.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-layout.cc:int& Crap<int>()
Unexecuted instantiation: hb-ot-layout.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-layout.cc:hb_set_t& Crap<hb_set_t>()
hb-ot-layout.cc:OT::hb_accelerate_subtables_context_t::hb_applicable_t& Crap<OT::hb_accelerate_subtables_context_t::hb_applicable_t>()
Line
Count
Source
176
116k
static inline Type& Crap () {
177
116k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
116k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
116k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
116k
  return *obj;
181
116k
}
Unexecuted instantiation: hb-ot-layout.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-layout.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-layout.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-layout.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-layout.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-layout.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-ot-layout.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
Unexecuted instantiation: hb-ot-layout.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-ot-layout.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-ot-layout.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-ot-layout.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-ot-layout.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-ot-layout.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-ot-layout.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-ot-layout.cc:OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >()
Unexecuted instantiation: hb-ot-layout.cc:OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >()
Unexecuted instantiation: hb-ot-layout.cc:OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >()
Unexecuted instantiation: hb-ot-layout.cc:OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> >()
Unexecuted instantiation: hb-ot-layout.cc:hb_ot_name_record_ids_t& Crap<hb_ot_name_record_ids_t>()
Unexecuted instantiation: hb-ot-layout.cc:hb_ot_name_entry_t& Crap<hb_ot_name_entry_t>()
Unexecuted instantiation: hb-ot-math.cc:hb_ot_math_glyph_variant_t& Crap<hb_ot_math_glyph_variant_t>()
Unexecuted instantiation: hb-ot-math.cc:hb_ot_math_glyph_part_t& Crap<hb_ot_math_glyph_part_t>()
Unexecuted instantiation: hb-ot-math.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-math.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-math.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-math.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-math.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-math.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-math.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-math.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-math.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-math.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-ot-math.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
Unexecuted instantiation: hb-ot-math.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-ot-math.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-ot-math.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-ot-math.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-ot-math.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-ot-math.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-ot-math.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-ot-meta.cc:hb_ot_meta_tag_t& Crap<hb_ot_meta_tag_t>()
Unexecuted instantiation: hb-ot-meta.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-meta.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-meta.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-meta.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-meta.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-meta.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-meta.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-meta.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-meta.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-metrics.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-metrics.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-metrics.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-metrics.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-metrics.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-metrics.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-metrics.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-metrics.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-metrics.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-metrics.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-ot-metrics.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
Unexecuted instantiation: hb-ot-metrics.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-ot-metrics.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-ot-metrics.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-ot-metrics.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-ot-metrics.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-ot-metrics.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-ot-metrics.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-ot-metrics.cc:hb_set_t*& Crap<hb_set_t*>()
Unexecuted instantiation: hb-ot-metrics.cc:OT::index_map_subset_plan_t& Crap<OT::index_map_subset_plan_t>()
Unexecuted instantiation: hb-ot-metrics.cc:OT::DeltaSetIndexMap const*& Crap<OT::DeltaSetIndexMap const*>()
hb-ot-name.cc:hb_ot_name_entry_t& Crap<hb_ot_name_entry_t>()
Line
Count
Source
176
15.3k
static inline Type& Crap () {
177
15.3k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
15.3k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
15.3k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
15.3k
  return *obj;
181
15.3k
}
Unexecuted instantiation: hb-ot-name.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-name.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-name.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-name.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-name.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-name.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-name.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-name.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-name.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-name.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-ot-name.cc:hb_ot_name_record_ids_t& Crap<hb_ot_name_record_ids_t>()
Unexecuted instantiation: hb-ot-shape.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shape.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shape.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shape.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shape.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shape.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-shape.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-shape.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shape.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-var.cc:int& Crap<int>()
Unexecuted instantiation: hb-ot-var.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-var.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-var.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-var.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-var.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-var.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-var.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-var.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-var.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-var.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-ot-var.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
Unexecuted instantiation: hb-ot-var.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-ot-var.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-ot-var.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-ot-var.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-ot-var.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-ot-var.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-ot-var.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-set.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-set.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-set.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-set.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-shape-plan.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-shape.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-shaper.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-unicode.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-buffer-verify.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
hb-paint-extents.cc:hb_transform_t& Crap<hb_transform_t>()
Line
Count
Source
176
97.9k
static inline Type& Crap () {
177
97.9k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
97.9k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
97.9k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
97.9k
  return *obj;
181
97.9k
}
hb-paint-extents.cc:hb_bounds_t& Crap<hb_bounds_t>()
Line
Count
Source
176
496k
static inline Type& Crap () {
177
496k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
496k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
496k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
496k
  return *obj;
181
496k
}
Unexecuted instantiation: hb-paint-extents.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
hb-ot-cff1-table.cc:CFF::number_t& Crap<CFF::number_t>()
Line
Count
Source
176
3.91k
static inline Type& Crap () {
177
3.91k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
3.91k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
3.91k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
3.91k
  return *obj;
181
3.91k
}
hb-ot-cff1-table.cc:CFF::call_context_t& Crap<CFF::call_context_t>()
Line
Count
Source
176
429
static inline Type& Crap () {
177
429
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
429
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
429
  memcpy (obj, &Null (Type), sizeof (*obj));
180
429
  return *obj;
181
429
}
Unexecuted instantiation: hb-ot-cff1-table.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-cff1-table.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-cff1-table.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-cff1-table.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-cff1-table.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-cff1-table.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-cff1-table.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-cff1-table.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-cff1-table.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-cff1-table.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-ot-cff1-table.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
Unexecuted instantiation: hb-ot-cff1-table.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-ot-cff1-table.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-ot-cff1-table.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-ot-cff1-table.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-ot-cff1-table.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-ot-cff1-table.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-ot-cff1-table.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-ot-cff1-table.cc:OT::IntType<unsigned char, 1u>& Crap<OT::IntType<unsigned char, 1u> >()
Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::Encoding1_Range& Crap<CFF::Encoding1_Range>()
Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::SuppEncoding& Crap<CFF::SuppEncoding>()
Unexecuted instantiation: hb-ot-cff1-table.cc:hb_array_t<unsigned char const>& Crap<hb_array_t<unsigned char const> >()
Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::cff1_top_dict_val_t& Crap<CFF::cff1_top_dict_val_t>()
Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::op_str_t& Crap<CFF::op_str_t>()
Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::dict_val_t& Crap<CFF::dict_val_t>()
Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::cff1_private_dict_values_base_t<CFF::dict_val_t>& Crap<CFF::cff1_private_dict_values_base_t<CFF::dict_val_t> >()
Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::cff1_font_dict_values_t& Crap<CFF::cff1_font_dict_values_t>()
Unexecuted instantiation: hb-ot-cff1-table.cc:OT::cff1::accelerator_t::gname_t& Crap<OT::cff1::accelerator_t::gname_t>()
hb-ot-cff2-table.cc:CFF::call_context_t& Crap<CFF::call_context_t>()
Line
Count
Source
176
3.72k
static inline Type& Crap () {
177
3.72k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
3.72k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
3.72k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
3.72k
  return *obj;
181
3.72k
}
hb-ot-cff2-table.cc:CFF::number_t& Crap<CFF::number_t>()
Line
Count
Source
176
26.9k
static inline Type& Crap () {
177
26.9k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
26.9k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
26.9k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
26.9k
  return *obj;
181
26.9k
}
hb-ot-cff2-table.cc:float& Crap<float>()
Line
Count
Source
176
569
static inline Type& Crap () {
177
569
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
569
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
569
  memcpy (obj, &Null (Type), sizeof (*obj));
180
569
  return *obj;
181
569
}
Unexecuted instantiation: hb-ot-cff2-table.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-cff2-table.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-cff2-table.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-cff2-table.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-cff2-table.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-cff2-table.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-cff2-table.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-cff2-table.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-cff2-table.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-cff2-table.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-ot-cff2-table.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
Unexecuted instantiation: hb-ot-cff2-table.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-ot-cff2-table.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-ot-cff2-table.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-ot-cff2-table.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-ot-cff2-table.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-ot-cff2-table.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-ot-cff2-table.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-ot-cff2-table.cc:CFF::op_str_t& Crap<CFF::op_str_t>()
Unexecuted instantiation: hb-ot-cff2-table.cc:CFF::dict_val_t& Crap<CFF::dict_val_t>()
Unexecuted instantiation: hb-ot-cff2-table.cc:CFF::cff2_font_dict_values_t& Crap<CFF::cff2_font_dict_values_t>()
Unexecuted instantiation: hb-ot-cff2-table.cc:CFF::cff2_private_dict_values_base_t<CFF::dict_val_t>& Crap<CFF::cff2_private_dict_values_base_t<CFF::dict_val_t> >()
Unexecuted instantiation: hb-ot-map.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
hb-ot-map.cc:hb_ot_map_builder_t::feature_info_t& Crap<hb_ot_map_builder_t::feature_info_t>()
Line
Count
Source
176
166k
static inline Type& Crap () {
177
166k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
166k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
166k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
166k
  return *obj;
181
166k
}
hb-ot-map.cc:hb_ot_map_t::lookup_map_t& Crap<hb_ot_map_t::lookup_map_t>()
Line
Count
Source
176
209k
static inline Type& Crap () {
177
209k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
209k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
209k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
209k
  return *obj;
181
209k
}
hb-ot-map.cc:hb_ot_map_builder_t::stage_info_t& Crap<hb_ot_map_builder_t::stage_info_t>()
Line
Count
Source
176
16.1k
static inline Type& Crap () {
177
16.1k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
16.1k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
16.1k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
16.1k
  return *obj;
181
16.1k
}
hb-ot-map.cc:hb_ot_map_t::feature_map_t& Crap<hb_ot_map_t::feature_map_t>()
Line
Count
Source
176
6.19k
static inline Type& Crap () {
177
6.19k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
6.19k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
6.19k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
6.19k
  return *obj;
181
6.19k
}
hb-ot-map.cc:hb_ot_map_t::stage_map_t& Crap<hb_ot_map_t::stage_map_t>()
Line
Count
Source
176
12.4k
static inline Type& Crap () {
177
12.4k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
12.4k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
12.4k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
12.4k
  return *obj;
181
12.4k
}
Unexecuted instantiation: hb-ot-map.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-map.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-map.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-map.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-map.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-map.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-map.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-map.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
hb-ot-shaper-arabic.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Line
Count
Source
176
1.30k
static inline Type& Crap () {
177
1.30k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
1.30k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
1.30k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
1.30k
  return *obj;
181
1.30k
}
Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::HBGlyphID16& Crap<OT::HBGlyphID16>()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
hb-ot-shaper-arabic.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Line
Count
Source
176
1.14k
static inline Type& Crap () {
177
1.14k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
1.14k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
1.14k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
1.14k
  return *obj;
181
1.14k
}
Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> >()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::hb_accelerate_subtables_context_t::hb_applicable_t& Crap<OT::hb_accelerate_subtables_context_t::hb_applicable_t>()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:int& Crap<int>()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_set_t& Crap<hb_set_t>()
Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >()
Unexecuted instantiation: hb-ot-shaper-default.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shaper-default.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shaper-default.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shaper-default.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shaper-default.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shaper-default.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-shaper-default.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-shaper-default.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shaper-default.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shaper-hangul.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shaper-hebrew.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shaper-indic.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shaper-khmer.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shaper-myanmar.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shaper-syllabic.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shaper-thai.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
hb-ot-shaper-use.cc:hb_glyph_info_t& Crap<hb_glyph_info_t>()
Line
Count
Source
176
5.21M
static inline Type& Crap () {
177
5.21M
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
5.21M
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
5.21M
  memcpy (obj, &Null (Type), sizeof (*obj));
180
5.21M
  return *obj;
181
5.21M
}
Unexecuted instantiation: hb-ot-shaper-use.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shaper-use.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shaper-use.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shaper-use.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shaper-use.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shaper-use.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-shaper-use.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-shaper-use.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shaper-use.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shape-fallback.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-shape-fallback.cc:OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >()
Unexecuted instantiation: hb-ot-shape-fallback.cc:OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes>& Crap<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >()
Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>()
Unexecuted instantiation: hb-ot-shape-fallback.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >()
Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >()
Unexecuted instantiation: hb-ot-shape-fallback.cc:OT::VarRegionAxis& Crap<OT::VarRegionAxis>()
Unexecuted instantiation: hb-ot-shape-fallback.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>()
Unexecuted instantiation: hb-ot-shape-fallback.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >()
Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>()
Unexecuted instantiation: hb-ot-shape-fallback.cc:int& Crap<int>()
Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_set_t& Crap<hb_set_t>()
Unexecuted instantiation: hb-ot-shape-fallback.cc:OT::hb_accelerate_subtables_context_t::hb_applicable_t& Crap<OT::hb_accelerate_subtables_context_t::hb_applicable_t>()
Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shape-normalize.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
Unexecuted instantiation: hb-ot-tag.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ucd.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-buffer-serialize.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-paint.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>()
Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>()
Unexecuted instantiation: hb-ot-shaper-indic-table.cc:unsigned int& Crap<unsigned int>()
Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_bit_page_t& Crap<hb_bit_page_t>()
Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>()
Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>()
Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>()
Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t& Crap<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>()
Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >()
182
template <typename QType>
183
struct CrapHelper
184
{
185
  typedef hb_remove_const<hb_remove_reference<QType>> Type;
186
30.5M
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<hb_aat_layout_feature_type_t>::get_crap()
Unexecuted instantiation: CrapHelper<hb_aat_layout_feature_selector_info_t>::get_crap()
Unexecuted instantiation: CrapHelper<hb_vector_t<hb_aat_map_t::range_flags_t, true> >::get_crap()
CrapHelper<hb_aat_map_t::range_flags_t>::get_crap()
Line
Count
Source
186
3.84k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_user_data_array_t::hb_user_data_item_t>::get_crap()
Line
Count
Source
186
6.59k
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<hb_bit_set_t::page_map_t>::get_crap()
CrapHelper<unsigned int>::get_crap()
Line
Count
Source
186
77.3k
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<hb_bit_page_t>::get_crap()
Unexecuted instantiation: CrapHelper<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>::get_crap()
CrapHelper<hb_serialize_context_t::object_t::link_t>::get_crap()
Line
Count
Source
186
1.14k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_serialize_context_t::object_t*>::get_crap()
Line
Count
Source
186
1.30k
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>::get_crap()
Unexecuted instantiation: CrapHelper<hb_vector_t<unsigned int, false> >::get_crap()
Unexecuted instantiation: CrapHelper<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >::get_crap()
Unexecuted instantiation: CrapHelper<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >::get_crap()
Unexecuted instantiation: CrapHelper<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>::get_crap()
Unexecuted instantiation: CrapHelper<OT::IntType<unsigned short, 2u> >::get_crap()
Unexecuted instantiation: CrapHelper<hb_pair_t<unsigned int, unsigned int> >::get_crap()
Unexecuted instantiation: CrapHelper<OT::VarRegionAxis>::get_crap()
Unexecuted instantiation: CrapHelper<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>::get_crap()
Unexecuted instantiation: CrapHelper<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >::get_crap()
Unexecuted instantiation: CrapHelper<hb_inc_bimap_t>::get_crap()
CrapHelper<int>::get_crap()
Line
Count
Source
186
1.58M
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<hb_set_t>::get_crap()
CrapHelper<OT::hb_accelerate_subtables_context_t::hb_applicable_t>::get_crap()
Line
Count
Source
186
116k
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<hb_aat_map_builder_t::feature_range_t>::get_crap()
CrapHelper<hb_aat_map_builder_t::feature_event_t>::get_crap()
Line
Count
Source
186
1.38k
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<hb_aat_map_builder_t::feature_info_t>::get_crap()
Unexecuted instantiation: CrapHelper<OT::VariationSelectorRecord>::get_crap()
CrapHelper<hb_transform_t>::get_crap()
Line
Count
Source
186
99.4k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_bounds_t>::get_crap()
Line
Count
Source
186
502k
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<hb_ot_color_layer_t>::get_crap()
Unexecuted instantiation: CrapHelper<OT::LayerRecord>::get_crap()
Unexecuted instantiation: CrapHelper<hb_set_t*>::get_crap()
Unexecuted instantiation: CrapHelper<OT::index_map_subset_plan_t>::get_crap()
Unexecuted instantiation: CrapHelper<OT::DeltaSetIndexMap const*>::get_crap()
CrapHelper<OT::contour_point_t>::get_crap()
Line
Count
Source
186
22.1M
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<unsigned char>::get_crap()
Unexecuted instantiation: CrapHelper<OT::glyf_impl::SubsetGlyph>::get_crap()
Unexecuted instantiation: CrapHelper<OT::IntType<unsigned int, 4u> >::get_crap()
Unexecuted instantiation: CrapHelper<hb_hashmap_t<unsigned int, float, false>::item_t>::get_crap()
Unexecuted instantiation: CrapHelper<hb_variation_t>::get_crap()
Unexecuted instantiation: CrapHelper<hb_pair_t<unsigned int, OT::IndexSubtableRecord const*> >::get_crap()
Unexecuted instantiation: CrapHelper<OT::IndexSubtableRecord>::get_crap()
Unexecuted instantiation: CrapHelper<OT::OffsetTo<OT::SBIXGlyph, OT::IntType<unsigned int, 4u>, true> >::get_crap()
Unexecuted instantiation: CrapHelper<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*>::get_crap()
CrapHelper<CFF::number_t>::get_crap()
Line
Count
Source
186
32.3k
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<OT::IntType<unsigned char, 1u> >::get_crap()
Unexecuted instantiation: CrapHelper<CFF::Encoding1_Range>::get_crap()
Unexecuted instantiation: CrapHelper<CFF::SuppEncoding>::get_crap()
Unexecuted instantiation: CrapHelper<hb_array_t<unsigned char const> >::get_crap()
CrapHelper<CFF::cff1_top_dict_val_t>::get_crap()
Line
Count
Source
186
2.46k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<CFF::op_str_t>::get_crap()
Line
Count
Source
186
2.09k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<CFF::dict_val_t>::get_crap()
Line
Count
Source
186
5.89k
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<CFF::cff1_private_dict_values_base_t<CFF::dict_val_t> >::get_crap()
CrapHelper<CFF::cff1_font_dict_values_t>::get_crap()
Line
Count
Source
186
20
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<OT::cff1::accelerator_t::gname_t>::get_crap()
CrapHelper<CFF::cff2_font_dict_values_t>::get_crap()
Line
Count
Source
186
353k
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<CFF::cff2_private_dict_values_base_t<CFF::dict_val_t> >::get_crap()
Unexecuted instantiation: CrapHelper<hb_ot_meta_tag_t>::get_crap()
Unexecuted instantiation: CrapHelper<hb_ot_name_record_ids_t>::get_crap()
CrapHelper<hb_ot_name_entry_t>::get_crap()
Line
Count
Source
186
15.3k
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_crap()
Unexecuted instantiation: CrapHelper<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_crap()
Unexecuted instantiation: CrapHelper<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_crap()
Unexecuted instantiation: CrapHelper<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> >::get_crap()
Unexecuted instantiation: CrapHelper<hb_ot_math_glyph_variant_t>::get_crap()
Unexecuted instantiation: CrapHelper<hb_ot_math_glyph_part_t>::get_crap()
CrapHelper<CFF::call_context_t>::get_crap()
Line
Count
Source
186
4.15k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<float>::get_crap()
Line
Count
Source
186
569
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_ot_map_builder_t::feature_info_t>::get_crap()
Line
Count
Source
186
166k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_ot_map_t::lookup_map_t>::get_crap()
Line
Count
Source
186
209k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_ot_map_builder_t::stage_info_t>::get_crap()
Line
Count
Source
186
16.1k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_ot_map_t::feature_map_t>::get_crap()
Line
Count
Source
186
6.19k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_ot_map_t::stage_map_t>::get_crap()
Line
Count
Source
186
12.4k
  static Type & get_crap () { return Crap<Type> (); }
Unexecuted instantiation: CrapHelper<OT::HBGlyphID16>::get_crap()
CrapHelper<hb_glyph_info_t>::get_crap()
Line
Count
Source
186
5.21M
  static Type & get_crap () { return Crap<Type> (); }
187
};
188
30.1M
#define Crap(Type) CrapHelper<Type>::get_crap ()
189
190
template <typename Type>
191
struct CrapOrNullHelper {
192
5.37M
  static Type & get () { return Crap (Type); }
Unexecuted instantiation: CrapOrNullHelper<hb_aat_layout_feature_type_t>::get()
Unexecuted instantiation: CrapOrNullHelper<hb_aat_layout_feature_selector_info_t>::get()
Unexecuted instantiation: CrapOrNullHelper<unsigned int>::get()
Unexecuted instantiation: CrapOrNullHelper<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>::get()
Unexecuted instantiation: CrapOrNullHelper<hb_hashmap_t<hb_ot_name_record_ids_t, hb_array_t<char const>, false>::item_t>::get()
CrapOrNullHelper<int>::get()
Line
Count
Source
192
158k
  static Type & get () { return Crap (Type); }
Unexecuted instantiation: CrapOrNullHelper<hb_ot_color_layer_t>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::DeltaSetIndexMap const*>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::index_map_subset_plan_t>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::contour_point_t>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::IntType<unsigned short, 2u> >::get()
Unexecuted instantiation: CrapOrNullHelper<OT::IntType<unsigned int, 4u> >::get()
Unexecuted instantiation: CrapOrNullHelper<hb_hashmap_t<unsigned int, float, false>::item_t>::get()
Unexecuted instantiation: CrapOrNullHelper<hb_ot_meta_tag_t>::get()
Unexecuted instantiation: CrapOrNullHelper<hb_ot_math_glyph_variant_t>::get()
Unexecuted instantiation: CrapOrNullHelper<hb_ot_math_glyph_part_t>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::HBGlyphID16>::get()
CrapOrNullHelper<hb_glyph_info_t>::get()
Line
Count
Source
192
5.21M
  static Type & get () { return Crap (Type); }
193
};
194
template <typename Type>
195
struct CrapOrNullHelper<const Type> {
196
342k
  static const Type & get () { return Null (Type); }
CrapOrNullHelper<OT::IntType<short, 2u> const>::get()
Line
Count
Source
196
769
  static const Type & get () { return Null (Type); }
Unexecuted instantiation: CrapOrNullHelper<OT::HBFixed<OT::IntType<int, 4u>, 16u> const>::get()
Unexecuted instantiation: CrapOrNullHelper<AAT::FeatureName const>::get()
Unexecuted instantiation: CrapOrNullHelper<AAT::SettingName const>::get()
Unexecuted instantiation: CrapOrNullHelper<hb_aat_map_t::range_flags_t const>::get()
Unexecuted instantiation: CrapOrNullHelper<unsigned long long const>::get()
Unexecuted instantiation: CrapOrNullHelper<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t* const>::get()
Unexecuted instantiation: CrapOrNullHelper<unsigned int const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> const>::get()
CrapOrNullHelper<OT::Index const>::get()
Line
Count
Source
196
139
  static const Type & get () { return Null (Type); }
Unexecuted instantiation: CrapOrNullHelper<OT::IntType<unsigned int, 3u> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::Record<OT::Feature> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::Record<OT::LangSys> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::Record<OT::Script> const>::get()
Unexecuted instantiation: CrapOrNullHelper<hb_pair_t<unsigned int, unsigned int> const>::get()
Unexecuted instantiation: CrapOrNullHelper<hb_inc_bimap_t const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::FeatureTableSubstitutionRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::AttachPoint, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::CaretValue, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::LigGlyph, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::hb_accelerate_subtables_context_t::hb_applicable_t const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::IntType<unsigned short, 2u> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::Layout::GPOS_impl::EntryExitRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::Layout::GPOS_impl::MarkRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PairSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PairSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::RuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Rule<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::RuleSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Rule<OT::Layout::MediumTypes>, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::RuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned int, 3u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::ChainRuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::ChainRule<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::ChainRuleSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::ChainRule<OT::Layout::MediumTypes>, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::ChainRuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned int, 3u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookupSubTable, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::AnchorMatrix, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned int, 3u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::UVSMapping const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::VariationSelectorRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::EncodingRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Paint, OT::IntType<unsigned int, 4u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::LayerRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::HBFixed<OT::IntType<short, 2u>, 14u> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::ResourceRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::TableRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::AxisRecord const>::get()
CrapOrNullHelper<OT::IntType<unsigned int, 4u> const>::get()
Line
Count
Source
196
822
  static const Type & get () { return Null (Type); }
Unexecuted instantiation: CrapOrNullHelper<hb_array_t<unsigned char const> const>::get()
CrapOrNullHelper<unsigned char const>::get()
Line
Count
Source
196
337k
  static const Type & get () { return Null (Type); }
CrapOrNullHelper<OT::IntType<unsigned char, 1u> const>::get()
Line
Count
Source
196
2.78k
  static const Type & get () { return Null (Type); }
Unexecuted instantiation: CrapOrNullHelper<OT::DataMap const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::NameRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::HBGlyphID16 const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::HBGlyphID24 const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::MediumTypes>, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::Sequence<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::Sequence<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned int, 3u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::StatAxisRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::AxisValueRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::AxisValue, OT::IntType<unsigned short, 2u>, true> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::VertOriginMetric const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::Record<OT::JstfLangSys> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::Record<OT::JstfScript> const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::MathGlyphVariantRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::MathGlyphPartRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::MathValueRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::MathKernInfoRecord const>::get()
Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::MathGlyphConstruction, OT::IntType<unsigned short, 2u>, true> const>::get()
197
};
198
5.72M
#define CrapOrNull(Type) CrapOrNullHelper<Type>::get ()
199
200
201
/*
202
 * hb_nonnull_ptr_t
203
 */
204
205
template <typename P>
206
struct hb_nonnull_ptr_t
207
{
208
  typedef hb_remove_pointer<P> T;
209
210
10.5M
  hb_nonnull_ptr_t (T *v_ = nullptr) : v (v_) {}
hb_nonnull_ptr_t<hb_blob_t>::hb_nonnull_ptr_t(hb_blob_t*)
Line
Count
Source
210
9.49M
  hb_nonnull_ptr_t (T *v_ = nullptr) : v (v_) {}
hb_nonnull_ptr_t<OT::CmapSubtable const>::hb_nonnull_ptr_t(OT::CmapSubtable const*)
Line
Count
Source
210
529k
  hb_nonnull_ptr_t (T *v_ = nullptr) : v (v_) {}
hb_nonnull_ptr_t<OT::CmapSubtableFormat14 const>::hb_nonnull_ptr_t(OT::CmapSubtableFormat14 const*)
Line
Count
Source
210
529k
  hb_nonnull_ptr_t (T *v_ = nullptr) : v (v_) {}
211
20.5M
  T * operator = (T *v_)   { return v = v_; }
hb_nonnull_ptr_t<hb_blob_t>::operator=(hb_blob_t*)
Line
Count
Source
211
19.5M
  T * operator = (T *v_)   { return v = v_; }
hb_nonnull_ptr_t<OT::CmapSubtable const>::operator=(OT::CmapSubtable const*)
Line
Count
Source
211
529k
  T * operator = (T *v_)   { return v = v_; }
hb_nonnull_ptr_t<OT::CmapSubtableFormat14 const>::operator=(OT::CmapSubtableFormat14 const*)
Line
Count
Source
211
532k
  T * operator = (T *v_)   { return v = v_; }
212
212M
  T * operator -> () const { return get (); }
hb_nonnull_ptr_t<hb_blob_t>::operator->() const
Line
Count
Source
212
209M
  T * operator -> () const { return get (); }
hb_nonnull_ptr_t<OT::CmapSubtable const>::operator->() const
Line
Count
Source
212
1.11M
  T * operator -> () const { return get (); }
hb_nonnull_ptr_t<OT::CmapSubtableFormat14 const>::operator->() const
Line
Count
Source
212
1.59M
  T * operator -> () const { return get (); }
213
  T & operator * () const  { return *get (); }
214
  T ** operator & () const { return &v; }
215
  /* Only auto-cast to const types. */
216
529k
  template <typename C> operator const C * () const { return get (); }
217
  operator const char * () const { return (const char *) get (); }
218
219M
  T * get () const { return v ? v : const_cast<T *> (&Null (T)); }
hb_nonnull_ptr_t<hb_blob_t>::get() const
Line
Count
Source
218
216M
  T * get () const { return v ? v : const_cast<T *> (&Null (T)); }
hb_nonnull_ptr_t<OT::CmapSubtable const>::get() const
Line
Count
Source
218
1.64M
  T * get () const { return v ? v : const_cast<T *> (&Null (T)); }
hb_nonnull_ptr_t<OT::CmapSubtableFormat14 const>::get() const
Line
Count
Source
218
1.59M
  T * get () const { return v ? v : const_cast<T *> (&Null (T)); }
219
12.0M
  T * get_raw () const { return v; }
220
221
  private:
222
  T *v;
223
};
224
225
226
#endif /* HB_NULL_HH */