Coverage Report

Created: 2024-09-05 14:38

/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
73.8M
#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
185M
#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
421M
  {
114
421M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
421M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
421M
  }
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
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<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
636k
  {
114
636k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
636k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
636k
  }
Unexecuted instantiation: Null<hb_aat_layout_feature_selector_info_t>::get_null()
Null<OT::GDEF_accelerator_t>::get_null()
Line
Count
Source
113
319k
  {
114
319k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
319k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
319k
  }
Null<OT::GDEF>::get_null()
Line
Count
Source
113
11.7M
  {
114
11.7M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
11.7M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
11.7M
  }
Null<AAT::ankr>::get_null()
Line
Count
Source
113
214k
  {
114
214k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
214k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
214k
  }
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
7.13k
  {
114
7.13k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
7.13k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
7.13k
  }
Null<hb_aat_map_t::range_flags_t>::get_null()
Line
Count
Source
113
5.85k
  {
114
5.85k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.85k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.85k
  }
Unexecuted instantiation: Null<AAT::Feature>::get_null()
Null<AAT::ltag>::get_null()
Line
Count
Source
113
1.38M
  {
114
1.38M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.38M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.38M
  }
Null<AAT::FTStringRange>::get_null()
Line
Count
Source
113
1.38M
  {
114
1.38M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.38M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.38M
  }
Null<AAT::morx>::get_null()
Line
Count
Source
113
448k
  {
114
448k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
448k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
448k
  }
Null<OT::IntType<unsigned short, 2u> >::get_null()
Line
Count
Source
113
684k
  {
114
684k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
684k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
684k
  }
Null<OT::HBGlyphID16>::get_null()
Line
Count
Source
113
59.5k
  {
114
59.5k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
59.5k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
59.5k
  }
Null<OT::ClassDef>::get_null()
Line
Count
Source
113
18.3M
  {
114
18.3M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
18.3M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
18.3M
  }
Null<OT::IntType<unsigned int, 4u> >::get_null()
Line
Count
Source
113
19.2k
  {
114
19.2k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
19.2k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
19.2k
  }
Null<AAT::mort>::get_null()
Line
Count
Source
113
393k
  {
114
393k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
393k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
393k
  }
Unexecuted instantiation: Null<AAT::LookupSegmentArray<OT::IntType<unsigned int, 4u> > >::get_null()
Null<AAT::kerx>::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
  }
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
32.1M
  {
114
32.1M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
32.1M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
32.1M
  }
Null<OT::VarRegionList>::get_null()
Line
Count
Source
113
52.8k
  {
114
52.8k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
52.8k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
52.8k
  }
Null<OT::MarkGlyphSets>::get_null()
Line
Count
Source
113
88.4k
  {
114
88.4k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
88.4k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
88.4k
  }
Null<OT::Layout::Common::Coverage>::get_null()
Line
Count
Source
113
4.32M
  {
114
4.32M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
4.32M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
4.32M
  }
Null<OT::OffsetTo<OT::Layout::Common::Coverage, OT::IntType<unsigned int, 4u>, true> >::get_null()
Line
Count
Source
113
697
  {
114
697
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
697
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
697
  }
Null<AAT::KernPair>::get_null()
Line
Count
Source
113
83.9k
  {
114
83.9k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
83.9k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
83.9k
  }
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
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::IntType<unsigned char, 1u> >::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
  }
Null<AAT::trak>::get_null()
Line
Count
Source
113
401k
  {
114
401k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
401k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
401k
  }
Null<hb_blob_t>::get_null()
Line
Count
Source
113
18.8M
  {
114
18.8M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
18.8M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
18.8M
  }
Null<AAT::feat>::get_null()
Line
Count
Source
113
953k
  {
114
953k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
953k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
953k
  }
Null<hb_user_data_array_t::hb_user_data_item_t>::get_null()
Line
Count
Source
113
3.14k
  {
114
3.14k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.14k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.14k
  }
Null<hb_ot_map_t::stage_map_t>::get_null()
Line
Count
Source
113
6.48k
  {
114
6.48k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
6.48k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
6.48k
  }
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
137k
  {
114
137k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
137k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
137k
  }
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.08k
  {
114
1.08k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.08k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.08k
  }
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.08k
  {
114
1.08k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.08k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.08k
  }
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
434
  {
114
434
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
434
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
434
  }
Null<OT::FeatureParamsCharacterVariants>::get_null()
Line
Count
Source
113
317k
  {
114
317k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
317k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
317k
  }
Null<OT::FeatureParams>::get_null()
Line
Count
Source
113
956k
  {
114
956k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
956k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
956k
  }
Null<OT::Record<OT::Feature> >::get_null()
Line
Count
Source
113
22.8M
  {
114
22.8M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
22.8M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
22.8M
  }
Null<OT::Feature>::get_null()
Line
Count
Source
113
2.40M
  {
114
2.40M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.40M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.40M
  }
Null<OT::Record<OT::LangSys> >::get_null()
Line
Count
Source
113
304k
  {
114
304k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
304k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
304k
  }
Unexecuted instantiation: Null<hb::unique_ptr<hb_set_t> >::get_null()
Null<OT::Record<OT::Script> >::get_null()
Line
Count
Source
113
21.5M
  {
114
21.5M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
21.5M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
21.5M
  }
Null<OT::Script>::get_null()
Line
Count
Source
113
21.7M
  {
114
21.7M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
21.7M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
21.7M
  }
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
7.29k
  {
114
7.29k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
7.29k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
7.29k
  }
Null<OT::VarData>::get_null()
Line
Count
Source
113
9.97k
  {
114
9.97k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
9.97k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
9.97k
  }
Unexecuted instantiation: Null<hb_inc_bimap_t>::get_null()
Null<int>::get_null()
Line
Count
Source
113
264k
  {
114
264k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
264k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
264k
  }
Null<OT::Condition>::get_null()
Line
Count
Source
113
3.76k
  {
114
3.76k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.76k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.76k
  }
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.41k
  {
114
5.41k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.41k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.41k
  }
Null<OT::ConditionSet>::get_null()
Line
Count
Source
113
29.1k
  {
114
29.1k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
29.1k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
29.1k
  }
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
17.1M
  {
114
17.1M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
17.1M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
17.1M
  }
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
35
  {
114
35
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
35
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
35
  }
Null<OT::LigGlyph>::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
  }
Unexecuted instantiation: Null<OT::AttachList>::get_null()
Null<OT::LigCaretList>::get_null()
Line
Count
Source
113
314k
  {
114
314k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
314k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
314k
  }
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
3.51k
  {
114
3.51k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.51k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.51k
  }
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
6.04k
  {
114
6.04k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
6.04k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
6.04k
  }
Null<OT::RecordListOfScript>::get_null()
Line
Count
Source
113
23.3M
  {
114
23.3M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
23.3M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
23.3M
  }
Null<OT::RecordListOf<OT::Feature> >::get_null()
Line
Count
Source
113
2.88M
  {
114
2.88M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.88M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.88M
  }
Null<OT::List16OfOffsetTo<OT::Lookup, OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
113
20.1k
  {
114
20.1k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
20.1k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
20.1k
  }
Null<OT::List16OfOffsetTo<OT::Lookup, OT::IntType<unsigned int, 3u> > >::get_null()
Line
Count
Source
113
11.4k
  {
114
11.4k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
11.4k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
11.4k
  }
Null<OT::Lookup>::get_null()
Line
Count
Source
113
11.8M
  {
114
11.8M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
11.8M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
11.8M
  }
Null<OT::FeatureVariations>::get_null()
Line
Count
Source
113
13.4M
  {
114
13.4M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
13.4M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
13.4M
  }
Null<OT::Layout::GPOS_impl::EntryExitRecord>::get_null()
Line
Count
Source
113
202k
  {
114
202k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
202k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
202k
  }
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
31.1k
  {
114
31.1k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
31.1k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
31.1k
  }
Null<OT::Layout::GPOS_impl::MarkRecord>::get_null()
Line
Count
Source
113
17.7k
  {
114
17.7k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
17.7k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
17.7k
  }
Null<OT::OffsetTo<OT::Layout::GPOS_impl::PairSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
2.45M
  {
114
2.45M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.45M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.45M
  }
Null<OT::Layout::GPOS_impl::PairSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
113
2.46M
  {
114
2.46M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.46M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.46M
  }
Null<OT::OffsetTo<OT::Layout::GPOS_impl::PairSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
666k
  {
114
666k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
666k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
666k
  }
Null<OT::Layout::GPOS_impl::PairSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
666k
  {
114
666k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
666k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
666k
  }
Null<OT::OffsetTo<OT::RuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
128k
  {
114
128k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
128k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
128k
  }
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
66.7k
  {
114
66.7k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
66.7k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
66.7k
  }
Null<OT::RuleSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
113
186k
  {
114
186k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
186k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
186k
  }
Null<OT::OffsetTo<OT::RuleSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
13.7k
  {
114
13.7k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
13.7k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
13.7k
  }
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
2.07k
  {
114
2.07k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.07k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.07k
  }
Null<OT::RuleSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
14.8k
  {
114
14.8k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
14.8k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
14.8k
  }
Null<OT::OffsetTo<OT::RuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
5.29k
  {
114
5.29k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.29k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.29k
  }
Null<OT::OffsetTo<OT::ChainRuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
168k
  {
114
168k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
168k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
168k
  }
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
50.7k
  {
114
50.7k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
50.7k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
50.7k
  }
Null<OT::ChainRuleSet<OT::Layout::SmallTypes> >::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::OffsetTo<OT::ChainRuleSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
13.1k
  {
114
13.1k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
13.1k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
13.1k
  }
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
3.31k
  {
114
3.31k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.31k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.31k
  }
Null<OT::ChainRuleSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
14.1k
  {
114
14.1k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
14.1k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
14.1k
  }
Null<OT::OffsetTo<OT::ChainRuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
3.20k
  {
114
3.20k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.20k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.20k
  }
Null<OT::Layout::GPOS_impl::PosLookupSubTable>::get_null()
Line
Count
Source
113
971k
  {
114
971k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
971k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
971k
  }
Null<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookupSubTable, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
673
  {
114
673
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
673
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
673
  }
Null<OT::Layout::GPOS_impl::MarkArray>::get_null()
Line
Count
Source
113
5.17k
  {
114
5.17k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.17k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.17k
  }
Null<OT::Layout::GPOS_impl::AnchorMatrix>::get_null()
Line
Count
Source
113
7.15k
  {
114
7.15k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
7.15k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
7.15k
  }
Null<OT::Layout::GPOS_impl::LigatureArray>::get_null()
Line
Count
Source
113
1.51k
  {
114
1.51k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.51k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.51k
  }
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
17.4M
  {
114
17.4M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
17.4M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
17.4M
  }
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.78k
  {
114
1.78k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.78k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.78k
  }
Unexecuted instantiation: Null<hb_aat_map_builder_t::feature_info_t>::get_null()
Null<OT::maxp>::get_null()
Line
Count
Source
113
684k
  {
114
684k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
684k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
684k
  }
Null<OT::head>::get_null()
Line
Count
Source
113
751k
  {
114
751k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
751k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
751k
  }
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
1.39M
  {
114
1.39M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.39M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.39M
  }
Null<float>::get_null()
Line
Count
Source
113
308
  {
114
308
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
308
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
308
  }
Unexecuted instantiation: Null<OT::UnicodeValueRange>::get_null()
Null<OT::DefaultUVS>::get_null()
Line
Count
Source
113
638k
  {
114
638k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
638k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
638k
  }
Null<OT::NonDefaultUVS>::get_null()
Line
Count
Source
113
638k
  {
114
638k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
638k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
638k
  }
Null<OT::UVSMapping>::get_null()
Line
Count
Source
113
321k
  {
114
321k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
321k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
321k
  }
Null<OT::VariationSelectorRecord>::get_null()
Line
Count
Source
113
639k
  {
114
639k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
639k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
639k
  }
Null<OT::cmap>::get_null()
Line
Count
Source
113
456k
  {
114
456k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
456k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
456k
  }
Null<OT::CmapSubtable>::get_null()
Line
Count
Source
113
237k
  {
114
237k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
237k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
237k
  }
Null<OT::CmapSubtableFormat14>::get_null()
Line
Count
Source
113
321k
  {
114
321k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
321k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
321k
  }
Null<OT::OS2>::get_null()
Line
Count
Source
113
694k
  {
114
694k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
694k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
694k
  }
Null<OT::EncodingRecord>::get_null()
Line
Count
Source
113
2.76M
  {
114
2.76M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.76M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.76M
  }
Null<hb_transform_t>::get_null()
Line
Count
Source
113
21.3k
  {
114
21.3k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
21.3k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
21.3k
  }
Null<hb_bounds_t>::get_null()
Line
Count
Source
113
38.1k
  {
114
38.1k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
38.1k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
38.1k
  }
Null<OT::Paint>::get_null()
Line
Count
Source
113
390k
  {
114
390k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
390k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
390k
  }
Null<OT::ColorLine<OT::NoVariable> >::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<OT::ColorLine<OT::Variable> >::get_null()
Line
Count
Source
113
11.8k
  {
114
11.8k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
11.8k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
11.8k
  }
Null<OT::NoVariable<OT::Affine2x3> >::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<OT::Variable<OT::Affine2x3> >::get_null()
Line
Count
Source
113
2.33k
  {
114
2.33k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.33k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.33k
  }
Null<OT::ClipBox>::get_null()
Line
Count
Source
113
283
  {
114
283
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
283
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
283
  }
Null<OT::OffsetTo<OT::Paint, OT::IntType<unsigned int, 4u>, true> >::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
  }
Null<OT::BaseGlyphList>::get_null()
Line
Count
Source
113
9.74k
  {
114
9.74k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
9.74k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
9.74k
  }
Null<OT::BaseGlyphRecord>::get_null()
Line
Count
Source
113
332k
  {
114
332k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
332k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
332k
  }
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.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<OT::LayerList>::get_null()
Line
Count
Source
113
1.41k
  {
114
1.41k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.41k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.41k
  }
Null<OT::BaseGlyphPaintRecord>::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::ClipList>::get_null()
Line
Count
Source
113
144k
  {
114
144k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
144k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
144k
  }
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
73.4k
  {
114
73.4k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
73.4k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
73.4k
  }
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
919k
  {
114
919k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
919k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
919k
  }
Null<OT::vhea>::get_null()
Line
Count
Source
113
312k
  {
114
312k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
312k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
312k
  }
Unexecuted instantiation: Null<OT::HBFixed<OT::IntType<short, 2u>, 14u> >::get_null()
Null<OT::GlyphVariationData>::get_null()
Line
Count
Source
113
71.9k
  {
114
71.9k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
71.9k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
71.9k
  }
Null<OT::gvar>::get_null()
Line
Count
Source
113
112k
  {
114
112k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
112k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
112k
  }
Null<OT::contour_point_t>::get_null()
Line
Count
Source
113
2.34M
  {
114
2.34M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.34M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.34M
  }
Null<unsigned char>::get_null()
Line
Count
Source
113
405k
  {
114
405k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
405k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
405k
  }
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
475k
  {
114
475k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
475k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
475k
  }
Unexecuted instantiation: Null<OT::glyf_impl::SubsetGlyph>::get_null()
Null<OT::gvar_accelerator_t>::get_null()
Line
Count
Source
113
312k
  {
114
312k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
312k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
312k
  }
Null<OT::hmtx_accelerator_t>::get_null()
Line
Count
Source
113
318k
  {
114
318k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
318k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
318k
  }
Null<OT::vmtx_accelerator_t>::get_null()
Line
Count
Source
113
318k
  {
114
318k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
318k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
318k
  }
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
10.8M
  {
114
10.8M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
10.8M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
10.8M
  }
Null<OT::OffsetTo<OT::OpenTypeOffsetTable, OT::IntType<unsigned int, 4u>, true> >::get_null()
Line
Count
Source
113
685
  {
114
685
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
685
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
685
  }
Unexecuted instantiation: Null<OT::ResourceRecord>::get_null()
Null<OT::OpenTypeOffsetTable>::get_null()
Line
Count
Source
113
6.52M
  {
114
6.52M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
6.52M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
6.52M
  }
Null<OT::OpenTypeFontFile>::get_null()
Line
Count
Source
113
47.6k
  {
114
47.6k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
47.6k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
47.6k
  }
Null<OT::cmap_accelerator_t>::get_null()
Line
Count
Source
113
320k
  {
114
320k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
320k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
320k
  }
Null<OT::AxisRecord>::get_null()
Line
Count
Source
113
73
  {
114
73
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
73
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
73
  }
Null<OT::fvar>::get_null()
Line
Count
Source
113
1.81M
  {
114
1.81M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.81M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.81M
  }
Null<OT::avar>::get_null()
Line
Count
Source
113
931k
  {
114
931k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
931k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
931k
  }
Unexecuted instantiation: Null<OT::AxisValueMap>::get_null()
Null<hb_map_t>::get_null()
Line
Count
Source
113
1.04k
  {
114
1.04k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.04k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.04k
  }
Null<OT::CPALV1Tail>::get_null()
Line
Count
Source
113
951k
  {
114
951k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
951k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
951k
  }
Null<OT::SVG>::get_null()
Line
Count
Source
113
952k
  {
114
952k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
952k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
952k
  }
Null<OT::SortedArrayOf<OT::SVGDocumentIndexEntry, OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
113
317k
  {
114
317k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
317k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
317k
  }
Null<OT::SVGDocumentIndexEntry>::get_null()
Line
Count
Source
113
318k
  {
114
318k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
318k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
318k
  }
Null<OT::sbix>::get_null()
Line
Count
Source
113
1.04M
  {
114
1.04M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.04M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.04M
  }
Null<OT::SBIXStrike>::get_null()
Line
Count
Source
113
19.3k
  {
114
19.3k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
19.3k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
19.3k
  }
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
141
  {
114
141
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
141
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
141
  }
Null<OT::CBLC>::get_null()
Line
Count
Source
113
833k
  {
114
833k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
833k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
833k
  }
Null<OT::BitmapSizeTable>::get_null()
Line
Count
Source
113
416k
  {
114
416k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
416k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
416k
  }
Unexecuted instantiation: Null<OT::IndexSubtableRecord>::get_null()
Null<OT::IndexSubtable>::get_null()
Line
Count
Source
113
832
  {
114
832
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
832
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
832
  }
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
2.36M
  {
114
2.36M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.36M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.36M
  }
Null<OT::SVG_accelerator_t>::get_null()
Line
Count
Source
113
319k
  {
114
319k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
319k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
319k
  }
Null<OT::CBDT_accelerator_t>::get_null()
Line
Count
Source
113
319k
  {
114
319k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
319k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
319k
  }
Null<OT::sbix_accelerator_t>::get_null()
Line
Count
Source
113
319k
  {
114
319k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
319k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
319k
  }
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
2.73k
  {
114
2.73k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.73k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.73k
  }
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
318k
  {
114
318k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
318k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
318k
  }
Null<OT::name_accelerator_t>::get_null()
Line
Count
Source
113
320k
  {
114
320k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
320k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
320k
  }
Null<OT::meta_accelerator_t>::get_null()
Line
Count
Source
113
319k
  {
114
319k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
319k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
319k
  }
Null<OT::glyf_accelerator_t>::get_null()
Line
Count
Source
113
318k
  {
114
318k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
318k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
318k
  }
Null<OT::cff1_accelerator_t>::get_null()
Line
Count
Source
113
318k
  {
114
318k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
318k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
318k
  }
Null<OT::cff2_accelerator_t>::get_null()
Line
Count
Source
113
297k
  {
114
297k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
297k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
297k
  }
Null<OT::GSUB_accelerator_t>::get_null()
Line
Count
Source
113
321k
  {
114
321k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
321k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
321k
  }
Null<OT::GPOS_accelerator_t>::get_null()
Line
Count
Source
113
320k
  {
114
320k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
320k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
320k
  }
Null<CFF::number_t>::get_null()
Line
Count
Source
113
3.59k
  {
114
3.59k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.59k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.59k
  }
Null<CFF::FDSelect>::get_null()
Line
Count
Source
113
43.0k
  {
114
43.0k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
43.0k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
43.0k
  }
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
12
  {
114
12
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
12
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
12
  }
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
916
  {
114
916
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
916
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
916
  }
Null<CFF::op_str_t>::get_null()
Line
Count
Source
113
639
  {
114
639
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
639
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
639
  }
Null<CFF::dict_val_t>::get_null()
Line
Count
Source
113
1.99k
  {
114
1.99k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.99k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.99k
  }
Null<CFF::cff1_font_dict_values_t>::get_null()
Line
Count
Source
113
19
  {
114
19
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
19
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
19
  }
Null<OT::cff1>::get_null()
Line
Count
Source
113
604k
  {
114
604k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
604k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
604k
  }
Null<CFF::CFFIndex<OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
113
47.5k
  {
114
47.5k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
47.5k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
47.5k
  }
Null<CFF::CFF1IndexOf<CFF::TopDict> >::get_null()
Line
Count
Source
113
26.6k
  {
114
26.6k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
26.6k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
26.6k
  }
Null<CFF::Charset>::get_null()
Line
Count
Source
113
2.14M
  {
114
2.14M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.14M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.14M
  }
Null<CFF::CFF1FDArray>::get_null()
Line
Count
Source
113
23.0k
  {
114
23.0k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
23.0k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
23.0k
  }
Null<CFF::CFF1FDSelect>::get_null()
Line
Count
Source
113
22.8k
  {
114
22.8k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
22.8k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
22.8k
  }
Null<CFF::Encoding>::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<CFF::CFF1StringIndex>::get_null()
Line
Count
Source
113
21.6k
  {
114
21.6k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
21.6k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
21.6k
  }
Null<CFF::Subrs<OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
113
863k
  {
114
863k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
863k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
863k
  }
Null<CFF::cff1_private_dict_values_base_t<CFF::dict_val_t> >::get_null()
Line
Count
Source
113
410
  {
114
410
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
410
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
410
  }
Unexecuted instantiation: Null<OT::cff1::accelerator_t::gname_t>::get_null()
Null<CFF::CFF2FDSelect>::get_null()
Line
Count
Source
113
83.1k
  {
114
83.1k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
83.1k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
83.1k
  }
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
579k
  {
114
579k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
579k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
579k
  }
Null<CFF::CFF2VariationStore>::get_null()
Line
Count
Source
113
12.6k
  {
114
12.6k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
12.6k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
12.6k
  }
Null<CFF::CFFIndex<OT::IntType<unsigned int, 4u> > >::get_null()
Line
Count
Source
113
9.28k
  {
114
9.28k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
9.28k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
9.28k
  }
Null<CFF::Subrs<OT::IntType<unsigned int, 4u> > >::get_null()
Line
Count
Source
113
1.64M
  {
114
1.64M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.64M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.64M
  }
Null<CFF::CFF2FDArray>::get_null()
Line
Count
Source
113
8.72k
  {
114
8.72k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
8.72k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
8.72k
  }
Null<CFF::cff2_font_dict_values_t>::get_null()
Line
Count
Source
113
410k
  {
114
410k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
410k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
410k
  }
Null<CFF::UnsizedByteStr>::get_null()
Line
Count
Source
113
404k
  {
114
404k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
404k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
404k
  }
Null<CFF::cff2_private_dict_values_base_t<CFF::dict_val_t> >::get_null()
Line
Count
Source
113
35.7k
  {
114
35.7k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
35.7k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
35.7k
  }
Null<OT::meta>::get_null()
Line
Count
Source
113
634k
  {
114
634k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
634k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
634k
  }
Null<OT::DataMap>::get_null()
Line
Count
Source
113
318k
  {
114
318k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
318k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
318k
  }
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
1.51M
  {
114
1.51M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.51M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.51M
  }
Null<hb_ot_name_entry_t>::get_null()
Line
Count
Source
113
10.9k
  {
114
10.9k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
10.9k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
10.9k
  }
Unexecuted instantiation: Null<OT::NameRecord>::get_null()
Null<OT::post>::get_null()
Line
Count
Source
113
274k
  {
114
274k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
274k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
274k
  }
Null<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
64.3k
  {
114
64.3k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
64.3k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
64.3k
  }
Null<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
866k
  {
114
866k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
866k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
866k
  }
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
918k
  {
114
918k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
918k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
918k
  }
Null<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
113
7.28M
  {
114
7.28M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
7.28M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
7.28M
  }
Null<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
37.8k
  {
114
37.8k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
37.8k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
37.8k
  }
Null<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
39.9k
  {
114
39.9k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
39.9k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
39.9k
  }
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
6.69k
  {
114
6.69k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
6.69k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
6.69k
  }
Null<OT::Layout::GSUB_impl::SubstLookupSubTable>::get_null()
Line
Count
Source
113
3.80M
  {
114
3.80M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.80M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.80M
  }
Null<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> >::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
  }
Null<OT::OffsetTo<OT::Layout::GSUB_impl::Sequence<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
1.32M
  {
114
1.32M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.32M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.32M
  }
Null<OT::Layout::GSUB_impl::Sequence<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
113
1.52M
  {
114
1.52M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.52M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.52M
  }
Null<OT::OffsetTo<OT::Layout::GSUB_impl::Sequence<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
25.6k
  {
114
25.6k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
25.6k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
25.6k
  }
Null<OT::Layout::GSUB_impl::Sequence<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
28.5k
  {
114
28.5k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
28.5k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
28.5k
  }
Null<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
113
74.1k
  {
114
74.1k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
74.1k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
74.1k
  }
Null<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::MediumTypes>, OT::IntType<unsigned int, 3u>, true> >::get_null()
Line
Count
Source
113
5.81k
  {
114
5.81k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.81k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.81k
  }
Null<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
113
7.97k
  {
114
7.97k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
7.97k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
7.97k
  }
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
22.7M
  {
114
22.7M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
22.7M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
22.7M
  }
Null<OT::HVAR>::get_null()
Line
Count
Source
113
7.17M
  {
114
7.17M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
7.17M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
7.17M
  }
Null<OT::VVAR>::get_null()
Line
Count
Source
113
5.79k
  {
114
5.79k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
5.79k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
5.79k
  }
Null<OT::VORG>::get_null()
Line
Count
Source
113
314k
  {
114
314k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
314k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
314k
  }
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
312k
  {
114
312k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
312k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
312k
  }
Null<OT::BaseScriptList>::get_null()
Line
Count
Source
113
313k
  {
114
313k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
313k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
313k
  }
Null<OT::BaseScriptRecord>::get_null()
Line
Count
Source
113
636k
  {
114
636k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
636k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
636k
  }
Null<OT::BaseScript>::get_null()
Line
Count
Source
113
313k
  {
114
313k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
313k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
313k
  }
Null<OT::SortedArrayOf<OT::Tag, OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
113
337
  {
114
337
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
337
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
337
  }
Unexecuted instantiation: Null<OT::BaseValues>::get_null()
Null<OT::BaseCoord>::get_null()
Line
Count
Source
113
39
  {
114
39
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
39
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
39
  }
Null<OT::OffsetTo<OT::BaseCoord, OT::IntType<unsigned short, 2u>, true> >::get_null()
Line
Count
Source
113
29
  {
114
29
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
29
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
29
  }
Null<OT::kern>::get_null()
Line
Count
Source
113
382k
  {
114
382k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
382k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
382k
  }
Null<hb_ot_map_t::lookup_map_t>::get_null()
Line
Count
Source
113
48.3k
  {
114
48.3k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
48.3k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
48.3k
  }
Null<OT::BASE>::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<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
17.7M
  {
114
17.7M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
17.7M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
17.7M
  }
Null<OT::MathGlyphInfo>::get_null()
Line
Count
Source
113
1.89M
  {
114
1.89M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.89M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.89M
  }
Null<OT::MathItalicsCorrectionInfo>::get_null()
Line
Count
Source
113
317k
  {
114
317k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
317k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
317k
  }
Null<OT::MathValueRecord>::get_null()
Line
Count
Source
113
317k
  {
114
317k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
317k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
317k
  }
Null<OT::MathTopAccentAttachment>::get_null()
Line
Count
Source
113
317k
  {
114
317k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
317k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
317k
  }
Null<OT::MathKernInfo>::get_null()
Line
Count
Source
113
951k
  {
114
951k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
951k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
951k
  }
Null<OT::MathKernInfoRecord>::get_null()
Line
Count
Source
113
953k
  {
114
953k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
953k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
953k
  }
Null<OT::MathKern>::get_null()
Line
Count
Source
113
317k
  {
114
317k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
317k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
317k
  }
Null<OT::MathVariants>::get_null()
Line
Count
Source
113
2.21M
  {
114
2.21M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.21M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.21M
  }
Null<OT::MathGlyphConstruction>::get_null()
Line
Count
Source
113
1.90M
  {
114
1.90M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.90M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.90M
  }
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
954k
  {
114
954k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
954k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
954k
  }
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
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
  }
Unexecuted instantiation: Null<OT::GaspRange>::get_null()
Null<hb_shape_plan_t>::get_null()
Line
Count
Source
113
1.90k
  {
114
1.90k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
1.90k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
1.90k
  }
Null<CFF::call_context_t>::get_null()
Line
Count
Source
113
496
  {
114
496
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
496
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
496
  }
Null<hb_ot_map_builder_t::feature_info_t>::get_null()
Line
Count
Source
113
94.4k
  {
114
94.4k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
94.4k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
94.4k
  }
Null<hb_ot_map_builder_t::stage_info_t>::get_null()
Line
Count
Source
113
9.75k
  {
114
9.75k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
9.75k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
9.75k
  }
Null<hb_ot_map_t::feature_map_t>::get_null()
Line
Count
Source
113
3.32k
  {
114
3.32k
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
3.32k
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
3.32k
  }
Null<arabic_fallback_plan_t>::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<hb_glyph_info_t>::get_null()
Line
Count
Source
113
2.15M
  {
114
2.15M
    static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
115
2.15M
    return *reinterpret_cast<Type const *> (_hb_NullPool);
116
2.15M
  }
117
};
118
template <typename QType>
119
struct NullHelper
120
{
121
  typedef hb_remove_const<hb_remove_reference<QType>> Type;
122
474M
  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
1.30k
  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
636k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::SettingName>::get_null()
Line
Count
Source
122
28
  static const Type & get_null () { return Null<Type>::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
319k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::GDEF>::get_null()
Line
Count
Source
122
11.7M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::ankr>::get_null()
Line
Count
Source
122
214k
  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
7.13k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_aat_map_t::range_flags_t>::get_null()
Line
Count
Source
122
5.85k
  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
1.38M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::FTStringRange>::get_null()
Line
Count
Source
122
1.38M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::morx>::get_null()
Line
Count
Source
122
448k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::IntType<unsigned short, 2u> >::get_null()
Line
Count
Source
122
684k
  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
59.5k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ClassDef>::get_null()
Line
Count
Source
122
18.3M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
122
26.9M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::Common::RangeRecord<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
122
1.62M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::IntType<unsigned int, 4u> >::get_null()
Line
Count
Source
122
19.2k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::mort>::get_null()
Line
Count
Source
122
393k
  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
399k
  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
32.1M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::VarRegionList>::get_null()
Line
Count
Source
122
52.8k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MarkGlyphSets>::get_null()
Line
Count
Source
122
88.4k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::Common::Coverage>::get_null()
Line
Count
Source
122
4.32M
  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
697
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::KernPair>::get_null()
Line
Count
Source
122
83.9k
  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
805k
  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
1.60M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::IntType<unsigned char, 1u> >::get_null()
Line
Count
Source
122
15.3k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::trak>::get_null()
Line
Count
Source
122
401k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_blob_t>::get_null()
Line
Count
Source
122
18.8M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<AAT::feat>::get_null()
Line
Count
Source
122
953k
  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
3.14k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_ot_map_t::stage_map_t>::get_null()
Line
Count
Source
122
6.48k
  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
137k
  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.08k
  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.08k
  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
112
  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
434
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::FeatureParamsCharacterVariants>::get_null()
Line
Count
Source
122
317k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::FeatureParams>::get_null()
Line
Count
Source
122
956k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Record<OT::Feature> >::get_null()
Line
Count
Source
122
22.8M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Feature>::get_null()
Line
Count
Source
122
2.40M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Record<OT::LangSys> >::get_null()
Line
Count
Source
122
304k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::LangSys>::get_null()
Line
Count
Source
122
21.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
21.5M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Script>::get_null()
Line
Count
Source
122
21.7M
  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
7.29k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::VarData>::get_null()
Line
Count
Source
122
9.97k
  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
264k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Condition>::get_null()
Line
Count
Source
122
3.76k
  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.41k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ConditionSet>::get_null()
Line
Count
Source
122
29.1k
  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
17.1M
  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
35
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::LigGlyph>::get_null()
Line
Count
Source
122
54
  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
314k
  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
3.51k
  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
6.04k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::RecordListOfScript>::get_null()
Line
Count
Source
122
23.3M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::RecordListOf<OT::Feature> >::get_null()
Line
Count
Source
122
2.88M
  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
20.1k
  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
11.4k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Lookup>::get_null()
Line
Count
Source
122
11.8M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::FeatureVariations>::get_null()
Line
Count
Source
122
13.4M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GPOS_impl::EntryExitRecord>::get_null()
Line
Count
Source
122
202k
  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
31.1k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GPOS_impl::MarkRecord>::get_null()
Line
Count
Source
122
17.7k
  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
2.45M
  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
2.46M
  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
666k
  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
666k
  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
128k
  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
66.7k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::RuleSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
122
186k
  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
13.7k
  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
2.07k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::RuleSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
122
14.8k
  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.29k
  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
168k
  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
50.7k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ChainRuleSet<OT::Layout::SmallTypes> >::get_null()
Line
Count
Source
122
1.68M
  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
13.1k
  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
3.31k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ChainRuleSet<OT::Layout::MediumTypes> >::get_null()
Line
Count
Source
122
14.1k
  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
3.20k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GPOS_impl::PosLookupSubTable>::get_null()
Line
Count
Source
122
971k
  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
673
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GPOS_impl::MarkArray>::get_null()
Line
Count
Source
122
5.17k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GPOS_impl::AnchorMatrix>::get_null()
Line
Count
Source
122
7.15k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GPOS_impl::LigatureArray>::get_null()
Line
Count
Source
122
1.51k
  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
17.4M
  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.78k
  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
3.33k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::maxp>::get_null()
Line
Count
Source
122
684k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::head>::get_null()
Line
Count
Source
122
751k
  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
1.39M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<float>::get_null()
Line
Count
Source
122
308
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CmapSubtableLongGroup>::get_null()
Line
Count
Source
122
2.42M
  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
638k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::NonDefaultUVS>::get_null()
Line
Count
Source
122
638k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::UVSMapping>::get_null()
Line
Count
Source
122
321k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::VariationSelectorRecord>::get_null()
Line
Count
Source
122
639k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::cmap>::get_null()
Line
Count
Source
122
456k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CmapSubtable>::get_null()
Line
Count
Source
122
235k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CmapSubtableFormat14>::get_null()
Line
Count
Source
122
316k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CmapSubtable const>::get_null()
Line
Count
Source
122
1.65k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OS2>::get_null()
Line
Count
Source
122
694k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CmapSubtableFormat14 const>::get_null()
Line
Count
Source
122
4.90k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::EncodingRecord>::get_null()
Line
Count
Source
122
2.76M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_transform_t>::get_null()
Line
Count
Source
122
21.3k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_bounds_t>::get_null()
Line
Count
Source
122
38.1k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Paint>::get_null()
Line
Count
Source
122
390k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ColorLine<OT::NoVariable> >::get_null()
Line
Count
Source
122
29.4k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ColorLine<OT::Variable> >::get_null()
Line
Count
Source
122
11.8k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::NoVariable<OT::Affine2x3> >::get_null()
Line
Count
Source
122
4.23k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Variable<OT::Affine2x3> >::get_null()
Line
Count
Source
122
2.33k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ClipBox>::get_null()
Line
Count
Source
122
283
  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
342k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BaseGlyphList>::get_null()
Line
Count
Source
122
9.74k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BaseGlyphRecord>::get_null()
Line
Count
Source
122
332k
  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.01M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::LayerList>::get_null()
Line
Count
Source
122
1.41k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BaseGlyphPaintRecord>::get_null()
Line
Count
Source
122
160k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::ClipList>::get_null()
Line
Count
Source
122
144k
  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
73.4k
  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
919k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::vhea>::get_null()
Line
Count
Source
122
312k
  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
71.9k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::gvar>::get_null()
Line
Count
Source
122
112k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::contour_point_t>::get_null()
Line
Count
Source
122
2.34M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<unsigned char>::get_null()
Line
Count
Source
122
405k
  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
475k
  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
312k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::hmtx_accelerator_t>::get_null()
Line
Count
Source
122
318k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::vmtx_accelerator_t>::get_null()
Line
Count
Source
122
318k
  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
318k
  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
10.8M
  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
685
  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
6.52M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::OpenTypeFontFile>::get_null()
Line
Count
Source
122
47.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
320k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::AxisRecord>::get_null()
Line
Count
Source
122
73
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_font_t>::get_null()
Line
Count
Source
122
318k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::fvar>::get_null()
Line
Count
Source
122
1.81M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::avar>::get_null()
Line
Count
Source
122
931k
  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.04k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CPALV1Tail>::get_null()
Line
Count
Source
122
951k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::SVG>::get_null()
Line
Count
Source
122
952k
  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
317k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::SVGDocumentIndexEntry>::get_null()
Line
Count
Source
122
318k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::sbix>::get_null()
Line
Count
Source
122
1.04M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::SBIXStrike>::get_null()
Line
Count
Source
122
19.3k
  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
141
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CBLC>::get_null()
Line
Count
Source
122
833k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BitmapSizeTable>::get_null()
Line
Count
Source
122
416k
  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
832
  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
2.36M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::SVG_accelerator_t>::get_null()
Line
Count
Source
122
319k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::CBDT_accelerator_t>::get_null()
Line
Count
Source
122
319k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::sbix_accelerator_t>::get_null()
Line
Count
Source
122
319k
  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
2.73k
  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
318k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::name_accelerator_t>::get_null()
Line
Count
Source
122
320k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::meta_accelerator_t>::get_null()
Line
Count
Source
122
319k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::glyf_accelerator_t>::get_null()
Line
Count
Source
122
318k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::cff1_accelerator_t>::get_null()
Line
Count
Source
122
318k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::cff2_accelerator_t>::get_null()
Line
Count
Source
122
297k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::GSUB_accelerator_t>::get_null()
Line
Count
Source
122
321k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::GPOS_accelerator_t>::get_null()
Line
Count
Source
122
320k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::number_t>::get_null()
Line
Count
Source
122
3.59k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::FDSelect>::get_null()
Line
Count
Source
122
43.0k
  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
12
  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
916
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::op_str_t>::get_null()
Line
Count
Source
122
639
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::dict_val_t>::get_null()
Line
Count
Source
122
1.99k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::cff1_font_dict_values_t>::get_null()
Line
Count
Source
122
19
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::cff1>::get_null()
Line
Count
Source
122
604k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFFIndex<OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
122
47.5k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFF1IndexOf<CFF::TopDict> >::get_null()
Line
Count
Source
122
26.6k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::Charset>::get_null()
Line
Count
Source
122
2.14M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFF1FDArray>::get_null()
Line
Count
Source
122
23.0k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFF1FDSelect>::get_null()
Line
Count
Source
122
22.8k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::Encoding>::get_null()
Line
Count
Source
122
22.1k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFF1StringIndex>::get_null()
Line
Count
Source
122
21.6k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::Subrs<OT::IntType<unsigned short, 2u> > >::get_null()
Line
Count
Source
122
863k
  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
410
  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
83.1k
  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
579k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFF2VariationStore>::get_null()
Line
Count
Source
122
12.6k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFFIndex<OT::IntType<unsigned int, 4u> > >::get_null()
Line
Count
Source
122
9.28k
  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.64M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::CFF2FDArray>::get_null()
Line
Count
Source
122
8.72k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::cff2_font_dict_values_t>::get_null()
Line
Count
Source
122
410k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::UnsizedByteStr>::get_null()
Line
Count
Source
122
404k
  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
35.7k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::meta>::get_null()
Line
Count
Source
122
634k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::DataMap>::get_null()
Line
Count
Source
122
318k
  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
1.51M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_ot_name_entry_t>::get_null()
Line
Count
Source
122
10.9k
  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
274k
  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
64.3k
  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
866k
  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
918k
  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
7.28M
  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
37.8k
  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
39.9k
  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
6.69k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::Layout::GSUB_impl::SubstLookupSubTable>::get_null()
Line
Count
Source
122
3.80M
  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
1.38k
  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
1.32M
  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
1.52M
  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
25.6k
  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
28.5k
  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
74.1k
  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
5.81k
  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
7.97k
  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
22.7M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::HVAR>::get_null()
Line
Count
Source
122
7.17M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::VVAR>::get_null()
Line
Count
Source
122
5.79k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::VORG>::get_null()
Line
Count
Source
122
314k
  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
312k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BaseScriptList>::get_null()
Line
Count
Source
122
313k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BaseScriptRecord>::get_null()
Line
Count
Source
122
636k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BaseScript>::get_null()
Line
Count
Source
122
313k
  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
337
  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
39
  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
29
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::kern>::get_null()
Line
Count
Source
122
382k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_ot_map_t::lookup_map_t>::get_null()
Line
Count
Source
122
48.3k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::BASE>::get_null()
Line
Count
Source
122
311k
  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
17.7M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathGlyphInfo>::get_null()
Line
Count
Source
122
1.89M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathItalicsCorrectionInfo>::get_null()
Line
Count
Source
122
317k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathValueRecord>::get_null()
Line
Count
Source
122
317k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathTopAccentAttachment>::get_null()
Line
Count
Source
122
317k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathKernInfo>::get_null()
Line
Count
Source
122
951k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathKernInfoRecord>::get_null()
Line
Count
Source
122
953k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathKern>::get_null()
Line
Count
Source
122
317k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathVariants>::get_null()
Line
Count
Source
122
2.21M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<OT::MathGlyphConstruction>::get_null()
Line
Count
Source
122
1.90M
  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
954k
  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
22.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
1.90k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_unicode_funcs_t>::get_null()
Line
Count
Source
122
1.09k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<CFF::call_context_t>::get_null()
Line
Count
Source
122
496
  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
94.4k
  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
9.75k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_ot_map_t::feature_map_t>::get_null()
Line
Count
Source
122
3.32k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<arabic_fallback_plan_t>::get_null()
Line
Count
Source
122
5.64k
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_glyph_info_t>::get_null()
Line
Count
Source
122
2.15M
  static const Type & get_null () { return Null<Type>::get_null (); }
NullHelper<hb_paint_funcs_t>::get_null()
Line
Count
Source
122
853
  static const Type & get_null () { return Null<Type>::get_null (); }
123
};
124
422M
#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
23.6M
    static Namespace::Type const & get_null () { \
133
23.6M
      return *reinterpret_cast<const Namespace::Type *> (_hb_Null_##Namespace##_##Type); \
134
23.6M
    } \
Null<AAT::SettingName>::get_null()
Line
Count
Source
132
28
    static Namespace::Type const & get_null () { \
133
28
      return *reinterpret_cast<const Namespace::Type *> (_hb_Null_##Namespace##_##Type); \
134
28
    } \
Null<OT::Index>::get_null()
Line
Count
Source
132
112
    static Namespace::Type const & get_null () { \
133
112
      return *reinterpret_cast<const Namespace::Type *> (_hb_Null_##Namespace##_##Type); \
134
112
    } \
Unexecuted instantiation: Null<OT::VarIdx>::get_null()
Null<OT::LangSys>::get_null()
Line
Count
Source
132
21.2M
    static Namespace::Type const & get_null () { \
133
21.2M
      return *reinterpret_cast<const Namespace::Type *> (_hb_Null_##Namespace##_##Type); \
134
21.2M
    } \
Null<OT::CmapSubtableLongGroup>::get_null()
Line
Count
Source
132
2.42M
    static Namespace::Type const & get_null () { \
133
2.42M
      return *reinterpret_cast<const Namespace::Type *> (_hb_Null_##Namespace##_##Type); \
134
2.42M
    } \
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
805k
    static Namespace::Type<Spec> const & get_null () { \
144
805k
      return *reinterpret_cast<const Namespace::Type<Spec> *> (_hb_Null_##Namespace##_##Type); \
145
805k
    } \
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
805k
    static Namespace::Type<Spec> const & get_null () { \
144
805k
      return *reinterpret_cast<const Namespace::Type<Spec> *> (_hb_Null_##Namespace##_##Type); \
145
805k
    } \
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
642k
    static Type const & get_null () { \
158
642k
      return _hb_Null_##Type; \
159
642k
    } \
Null<hb_unicode_funcs_t>::get_null()
Line
Count
Source
157
1.09k
    static Type const & get_null () { \
158
1.09k
      return _hb_Null_##Type; \
159
1.09k
    } \
Null<hb_buffer_t>::get_null()
Line
Count
Source
157
3.33k
    static Type const & get_null () { \
158
3.33k
      return _hb_Null_##Type; \
159
3.33k
    } \
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
318k
    static Type const & get_null () { \
158
318k
      return _hb_Null_##Type; \
159
318k
    } \
Null<hb_paint_funcs_t>::get_null()
Line
Count
Source
157
853
    static Type const & get_null () { \
158
853
      return _hb_Null_##Type; \
159
853
    } \
Null<hb_draw_funcs_t>::get_null()
Line
Count
Source
157
318k
    static Type const & get_null () { \
158
318k
      return _hb_Null_##Type; \
159
318k
    } \
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
5.45M
static inline Type& Crap () {
177
5.45M
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
5.45M
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
5.45M
  memcpy (obj, &Null (Type), sizeof (*obj));
180
5.45M
  return *obj;
181
5.45M
}
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
2.92k
static inline Type& Crap () {
177
2.92k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
2.92k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
2.92k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
2.92k
  return *obj;
181
2.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.78k
static inline Type& Crap () {
177
1.78k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
1.78k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
1.78k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
1.78k
  return *obj;
181
1.78k
}
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
2.92k
static inline Type& Crap () {
177
2.92k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
2.92k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
2.92k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
2.92k
  return *obj;
181
2.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
3.14k
static inline Type& Crap () {
177
3.14k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
3.14k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
3.14k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
3.14k
  return *obj;
181
3.14k
}
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
2.34M
static inline Type& Crap () {
177
2.34M
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
2.34M
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
2.34M
  memcpy (obj, &Null (Type), sizeof (*obj));
180
2.34M
  return *obj;
181
2.34M
}
hb-ot-font.cc:unsigned int& Crap<unsigned int>()
Line
Count
Source
176
43.3k
static inline Type& Crap () {
177
43.3k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
43.3k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
43.3k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
43.3k
  return *obj;
181
43.3k
}
hb-ot-font.cc:int& Crap<int>()
Line
Count
Source
176
264k
static inline Type& Crap () {
177
264k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
264k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
264k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
264k
  return *obj;
181
264k
}
hb-ot-font.cc:CFF::number_t& Crap<CFF::number_t>()
Line
Count
Source
176
711
static inline Type& Crap () {
177
711
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
711
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
711
  memcpy (obj, &Null (Type), sizeof (*obj));
180
711
  return *obj;
181
711
}
hb-ot-font.cc:CFF::cff1_top_dict_val_t& Crap<CFF::cff1_top_dict_val_t>()
Line
Count
Source
176
916
static inline Type& Crap () {
177
916
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
916
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
916
  memcpy (obj, &Null (Type), sizeof (*obj));
180
916
  return *obj;
181
916
}
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
19
static inline Type& Crap () {
177
19
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
19
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
19
  memcpy (obj, &Null (Type), sizeof (*obj));
180
19
  return *obj;
181
19
}
hb-ot-font.cc:CFF::op_str_t& Crap<CFF::op_str_t>()
Line
Count
Source
176
639
static inline Type& Crap () {
177
639
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
639
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
639
  memcpy (obj, &Null (Type), sizeof (*obj));
180
639
  return *obj;
181
639
}
hb-ot-font.cc:CFF::dict_val_t& Crap<CFF::dict_val_t>()
Line
Count
Source
176
1.99k
static inline Type& Crap () {
177
1.99k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
1.99k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
1.99k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
1.99k
  return *obj;
181
1.99k
}
hb-ot-font.cc:CFF::cff2_font_dict_values_t& Crap<CFF::cff2_font_dict_values_t>()
Line
Count
Source
176
410k
static inline Type& Crap () {
177
410k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
410k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
410k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
410k
  return *obj;
181
410k
}
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
400
static inline Type& Crap () {
177
400
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
400
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
400
  memcpy (obj, &Null (Type), sizeof (*obj));
180
400
  return *obj;
181
400
}
hb-ot-font.cc:hb_bounds_t& Crap<hb_bounds_t>()
Line
Count
Source
176
1.39k
static inline Type& Crap () {
177
1.39k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
1.39k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
1.39k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
1.39k
  return *obj;
181
1.39k
}
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
6.04k
static inline Type& Crap () {
177
6.04k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
6.04k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
6.04k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
6.04k
  return *obj;
181
6.04k
}
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
10.9k
static inline Type& Crap () {
177
10.9k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
10.9k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
10.9k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
10.9k
  return *obj;
181
10.9k
}
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
15.1k
static inline Type& Crap () {
177
15.1k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
15.1k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
15.1k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
15.1k
  return *obj;
181
15.1k
}
hb-paint-extents.cc:hb_bounds_t& Crap<hb_bounds_t>()
Line
Count
Source
176
26.0k
static inline Type& Crap () {
177
26.0k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
26.0k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
26.0k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
26.0k
  return *obj;
181
26.0k
}
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
709
static inline Type& Crap () {
177
709
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
709
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
709
  memcpy (obj, &Null (Type), sizeof (*obj));
180
709
  return *obj;
181
709
}
hb-ot-cff1-table.cc:CFF::call_context_t& Crap<CFF::call_context_t>()
Line
Count
Source
176
149
static inline Type& Crap () {
177
149
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
149
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
149
  memcpy (obj, &Null (Type), sizeof (*obj));
180
149
  return *obj;
181
149
}
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
347
static inline Type& Crap () {
177
347
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
347
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
347
  memcpy (obj, &Null (Type), sizeof (*obj));
180
347
  return *obj;
181
347
}
hb-ot-cff2-table.cc:CFF::number_t& Crap<CFF::number_t>()
Line
Count
Source
176
2.17k
static inline Type& Crap () {
177
2.17k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
2.17k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
2.17k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
2.17k
  return *obj;
181
2.17k
}
hb-ot-cff2-table.cc:float& Crap<float>()
Line
Count
Source
176
308
static inline Type& Crap () {
177
308
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
308
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
308
  memcpy (obj, &Null (Type), sizeof (*obj));
180
308
  return *obj;
181
308
}
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
94.4k
static inline Type& Crap () {
177
94.4k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
94.4k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
94.4k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
94.4k
  return *obj;
181
94.4k
}
hb-ot-map.cc:hb_ot_map_t::lookup_map_t& Crap<hb_ot_map_t::lookup_map_t>()
Line
Count
Source
176
48.3k
static inline Type& Crap () {
177
48.3k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
48.3k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
48.3k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
48.3k
  return *obj;
181
48.3k
}
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
9.75k
static inline Type& Crap () {
177
9.75k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
9.75k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
9.75k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
9.75k
  return *obj;
181
9.75k
}
hb-ot-map.cc:hb_ot_map_t::feature_map_t& Crap<hb_ot_map_t::feature_map_t>()
Line
Count
Source
176
3.32k
static inline Type& Crap () {
177
3.32k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
3.32k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
3.32k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
3.32k
  return *obj;
181
3.32k
}
hb-ot-map.cc:hb_ot_map_t::stage_map_t& Crap<hb_ot_map_t::stage_map_t>()
Line
Count
Source
176
6.48k
static inline Type& Crap () {
177
6.48k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
6.48k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
6.48k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
6.48k
  return *obj;
181
6.48k
}
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.08k
static inline Type& Crap () {
177
1.08k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
1.08k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
1.08k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
1.08k
  return *obj;
181
1.08k
}
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.08k
static inline Type& Crap () {
177
1.08k
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
1.08k
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
1.08k
  memcpy (obj, &Null (Type), sizeof (*obj));
180
1.08k
  return *obj;
181
1.08k
}
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
2.15M
static inline Type& Crap () {
177
2.15M
  static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE.");
178
2.15M
  Type *obj = reinterpret_cast<Type *> (_hb_CrapPool);
179
2.15M
  memcpy (obj, &Null (Type), sizeof (*obj));
180
2.15M
  return *obj;
181
2.15M
}
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
5.45M
  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
5.85k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_user_data_array_t::hb_user_data_item_t>::get_crap()
Line
Count
Source
186
3.14k
  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
43.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.08k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_serialize_context_t::object_t*>::get_crap()
Line
Count
Source
186
1.08k
  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
264k
  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
6.04k
  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.78k
  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
15.5k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_bounds_t>::get_crap()
Line
Count
Source
186
27.4k
  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
2.34M
  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
3.59k
  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
916
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<CFF::op_str_t>::get_crap()
Line
Count
Source
186
639
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<CFF::dict_val_t>::get_crap()
Line
Count
Source
186
1.99k
  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
19
  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
410k
  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
10.9k
  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
496
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<float>::get_crap()
Line
Count
Source
186
308
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_ot_map_builder_t::feature_info_t>::get_crap()
Line
Count
Source
186
94.4k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_ot_map_t::lookup_map_t>::get_crap()
Line
Count
Source
186
48.3k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_ot_map_builder_t::stage_info_t>::get_crap()
Line
Count
Source
186
9.75k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_ot_map_t::feature_map_t>::get_crap()
Line
Count
Source
186
3.32k
  static Type & get_crap () { return Crap<Type> (); }
CrapHelper<hb_ot_map_t::stage_map_t>::get_crap()
Line
Count
Source
186
6.48k
  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
2.15M
  static Type & get_crap () { return Crap<Type> (); }
187
};
188
5.04M
#define Crap(Type) CrapHelper<Type>::get_crap ()
189
190
template <typename Type>
191
struct CrapOrNullHelper {
192
2.40M
  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
252k
  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
2.15M
  static Type & get () { return Crap (Type); }
193
};
194
template <typename Type>
195
struct CrapOrNullHelper<const Type> {
196
415k
  static const Type & get () { return Null (Type); }
CrapOrNullHelper<OT::IntType<short, 2u> const>::get()
Line
Count
Source
196
1.30k
  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()
CrapOrNullHelper<AAT::SettingName const>::get()
Line
Count
Source
196
28
  static const Type & get () { return Null (Type); }
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
112
  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
887
  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
404k
  static const Type & get () { return Null (Type); }
CrapOrNullHelper<OT::IntType<unsigned char, 1u> const>::get()
Line
Count
Source
196
9.02k
  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
2.82M
#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
6.32M
  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
5.68M
  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
316k
  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
316k
  hb_nonnull_ptr_t (T *v_ = nullptr) : v (v_) {}
211
12.3M
  T * operator = (T *v_)   { return v = v_; }
hb_nonnull_ptr_t<hb_blob_t>::operator=(hb_blob_t*)
Line
Count
Source
211
11.6M
  T * operator = (T *v_)   { return v = v_; }
hb_nonnull_ptr_t<OT::CmapSubtable const>::operator=(OT::CmapSubtable const*)
Line
Count
Source
211
316k
  T * operator = (T *v_)   { return v = v_; }
hb_nonnull_ptr_t<OT::CmapSubtableFormat14 const>::operator=(OT::CmapSubtableFormat14 const*)
Line
Count
Source
211
318k
  T * operator = (T *v_)   { return v = v_; }
212
131M
  T * operator -> () const { return get (); }
hb_nonnull_ptr_t<hb_blob_t>::operator->() const
Line
Count
Source
212
129M
  T * operator -> () const { return get (); }
hb_nonnull_ptr_t<OT::CmapSubtable const>::operator->() const
Line
Count
Source
212
681k
  T * operator -> () const { return get (); }
hb_nonnull_ptr_t<OT::CmapSubtableFormat14 const>::operator->() const
Line
Count
Source
212
957k
  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
316k
  template <typename C> operator const C * () const { return get (); }
217
  operator const char * () const { return (const char *) get (); }
218
135M
  T * get () const { return v ? v : const_cast<T *> (&Null (T)); }
hb_nonnull_ptr_t<hb_blob_t>::get() const
Line
Count
Source
218
133M
  T * get () const { return v ? v : const_cast<T *> (&Null (T)); }
hb_nonnull_ptr_t<OT::CmapSubtable const>::get() const
Line
Count
Source
218
998k
  T * get () const { return v ? v : const_cast<T *> (&Null (T)); }
hb_nonnull_ptr_t<OT::CmapSubtableFormat14 const>::get() const
Line
Count
Source
218
957k
  T * get () const { return v ? v : const_cast<T *> (&Null (T)); }
219
7.27M
  T * get_raw () const { return v; }
220
221
  private:
222
  T *v;
223
};
224
225
226
#endif /* HB_NULL_HH */