/work/workdir/UnpackedTarball/harfbuzz/src/hb-bit-set.hh
Line | Count | Source |
1 | | /* |
2 | | * Copyright © 2012,2017 Google, Inc. |
3 | | * Copyright © 2021 Behdad Esfahbod |
4 | | * |
5 | | * This is part of HarfBuzz, a text shaping library. |
6 | | * |
7 | | * Permission is hereby granted, without written agreement and without |
8 | | * license or royalty fees, to use, copy, modify, and distribute this |
9 | | * software and its documentation for any purpose, provided that the |
10 | | * above copyright notice and the following two paragraphs appear in |
11 | | * all copies of this software. |
12 | | * |
13 | | * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR |
14 | | * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES |
15 | | * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN |
16 | | * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH |
17 | | * DAMAGE. |
18 | | * |
19 | | * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, |
20 | | * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
21 | | * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS |
22 | | * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO |
23 | | * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
24 | | * |
25 | | * Google Author(s): Behdad Esfahbod |
26 | | */ |
27 | | |
28 | | #ifndef HB_BIT_SET_HH |
29 | | #define HB_BIT_SET_HH |
30 | | |
31 | | #include "hb.hh" |
32 | | #include "hb-bit-page.hh" |
33 | | |
34 | | |
35 | | struct hb_bit_set_t |
36 | | { |
37 | 201k | hb_bit_set_t () = default; |
38 | 201k | ~hb_bit_set_t () = default; |
39 | | |
40 | 0 | hb_bit_set_t (const hb_bit_set_t& other) : hb_bit_set_t () { set (other, true); } |
41 | 0 | hb_bit_set_t ( hb_bit_set_t&& other) noexcept : hb_bit_set_t () { hb_swap (*this, other); } |
42 | 0 | hb_bit_set_t& operator= (const hb_bit_set_t& other) { set (other); return *this; } |
43 | 0 | hb_bit_set_t& operator= (hb_bit_set_t&& other) noexcept { hb_swap (*this, other); return *this; } |
44 | | friend void swap (hb_bit_set_t &a, hb_bit_set_t &b) noexcept |
45 | 0 | { |
46 | 0 | if (likely (!a.successful || !b.successful)) |
47 | 0 | return; |
48 | 0 | hb_swap (a.population, b.population); |
49 | 0 | hb_swap (a.last_page_lookup, b.last_page_lookup); |
50 | 0 | hb_swap (a.page_map, b.page_map); |
51 | 0 | hb_swap (a.pages, b.pages); |
52 | 0 | } |
53 | | |
54 | | void init () |
55 | 201k | { |
56 | 201k | successful = true; |
57 | 201k | population = 0; |
58 | 201k | last_page_lookup = 0; |
59 | 201k | page_map.init (); |
60 | 201k | pages.init (); |
61 | 201k | } |
62 | | void fini () |
63 | 201k | { |
64 | 201k | page_map.fini (); |
65 | 201k | pages.fini (); |
66 | 201k | } |
67 | | |
68 | | using page_t = hb_bit_page_t; |
69 | | struct page_map_t |
70 | | { |
71 | 22.9M | int cmp (const page_map_t &o) const { return cmp (o.major); } |
72 | 23.2M | int cmp (uint32_t o_major) const { return (int) o_major - (int) major; } |
73 | | |
74 | | uint32_t major; |
75 | | uint32_t index; |
76 | | }; |
77 | | |
78 | | bool successful = true; /* Allocations successful */ |
79 | | mutable unsigned int population = 0; |
80 | | mutable hb_atomic_t<unsigned> last_page_lookup = 0; |
81 | | hb_sorted_vector_t<page_map_t> page_map; |
82 | | hb_vector_t<page_t> pages; |
83 | | |
84 | 0 | void err () { if (successful) successful = false; } /* TODO Remove */ |
85 | 210k | bool in_error () const { return !successful; } |
86 | | |
87 | | bool resize (unsigned int count, bool clear = true, bool exact_size = false) |
88 | 3.84M | { |
89 | 3.84M | if (unlikely (!successful)) return false; |
90 | | |
91 | 3.84M | if (pages.length < count && (unsigned) pages.allocated < count && count <= 2) |
92 | 169k | exact_size = true; // Most sets are small and local |
93 | | |
94 | 3.84M | if (unlikely (!pages.resize_full (count, clear, exact_size) || |
95 | 3.84M | !page_map.resize_full (count, clear, false))) |
96 | 0 | { |
97 | 0 | pages.resize_full (page_map.length, clear, exact_size); |
98 | 0 | successful = false; |
99 | 0 | return false; |
100 | 0 | } |
101 | 3.84M | return true; |
102 | 3.84M | } |
103 | | |
104 | | void alloc (unsigned sz) |
105 | 0 | { |
106 | 0 | sz >>= (page_t::PAGE_BITS_LOG_2 - 1); |
107 | 0 | pages.alloc (sz); |
108 | 0 | page_map.alloc (sz); |
109 | 0 | } |
110 | | |
111 | | hb_bit_set_t& reset () |
112 | 0 | { |
113 | 0 | successful = true; |
114 | 0 | clear (); |
115 | 0 | return *this; |
116 | 0 | } |
117 | | |
118 | | void clear () |
119 | 26.4M | { |
120 | | /* Early-out on already-empty. Protects the Null singleton |
121 | | * (which is zero-initialized) from any writes. Any non-empty |
122 | | * instance is a real heap object with writable storage, so |
123 | | * clearing through the vector's always-safe clear() is fine |
124 | | * even if we entered error state. */ |
125 | 26.4M | if (!pages.length && !population) return; |
126 | 2.64M | pages.clear (); |
127 | 2.64M | page_map.clear (); |
128 | 2.64M | population = 0; |
129 | 2.64M | } |
130 | | bool is_empty () const |
131 | 0 | { |
132 | 0 | unsigned int count = pages.length; |
133 | 0 | for (unsigned int i = 0; i < count; i++) |
134 | 0 | if (!pages[i].is_empty ()) |
135 | 0 | return false; |
136 | 0 | return true; |
137 | 0 | } |
138 | 0 | explicit operator bool () const { return !is_empty (); } |
139 | | |
140 | | uint32_t hash () const |
141 | 0 | { |
142 | 0 | uint32_t h = 0; |
143 | 0 | for (auto &map : page_map) |
144 | 0 | { |
145 | 0 | auto &page = pages.arrayZ[map.index]; |
146 | 0 | if (unlikely (page.is_empty ())) continue; |
147 | 0 | h = h * 31 + hb_hash (map.major) + hb_hash (page); |
148 | 0 | } |
149 | 0 | return h; |
150 | 0 | } |
151 | | |
152 | | private: |
153 | 18.7M | void dirty () { population = UINT_MAX; } |
154 | | public: |
155 | | |
156 | | void add (hb_codepoint_t g) |
157 | 15.9M | { |
158 | 15.9M | if (unlikely (!successful)) return; |
159 | 15.9M | if (unlikely (g == INVALID)) return; |
160 | 15.9M | dirty (); |
161 | 15.9M | page_t *page = page_for (g, true); if (unlikely (!page)) return; |
162 | 15.9M | page->add (g); |
163 | 15.9M | } |
164 | | bool add_range (hb_codepoint_t a, hb_codepoint_t b) |
165 | 93.5k | { |
166 | 93.5k | if (unlikely (!successful)) return true; /* https://github.com/harfbuzz/harfbuzz/issues/657 */ |
167 | 93.5k | if (unlikely (a > b || a == INVALID || b == INVALID)) return false; |
168 | 93.5k | dirty (); |
169 | 93.5k | unsigned int ma = get_major (a); |
170 | 93.5k | unsigned int mb = get_major (b); |
171 | 93.5k | if (ma == mb) |
172 | 93.5k | { |
173 | 93.5k | page_t *page = page_for (a, true); if (unlikely (!page)) return false; |
174 | 93.5k | page->add_range (a, b); |
175 | 93.5k | } |
176 | 15 | else |
177 | 15 | { |
178 | 15 | page_t *page = page_for (a, true); if (unlikely (!page)) return false; |
179 | 15 | page->add_range (a, major_start (ma + 1) - 1); |
180 | | |
181 | 15 | for (unsigned int m = ma + 1; m < mb; m++) |
182 | 0 | { |
183 | 0 | page = page_for (major_start (m), true); if (unlikely (!page)) return false; |
184 | 0 | page->init1 (); |
185 | 0 | } |
186 | | |
187 | 15 | page = page_for (b, true); if (unlikely (!page)) return false; |
188 | 15 | page->add_range (major_start (mb), b); |
189 | 15 | } |
190 | 93.5k | return true; |
191 | 93.5k | } |
192 | | |
193 | | /* Duplicated here from hb-machinery.hh to avoid including it. */ |
194 | | template<typename Type> |
195 | | static inline const Type& StructAtOffsetUnaligned(const void *P, unsigned int offset) |
196 | 158M | { |
197 | 158M | #pragma GCC diagnostic push |
198 | 158M | #pragma GCC diagnostic ignored "-Wcast-align" |
199 | 158M | return * reinterpret_cast<const Type*> ((const char *) P + offset); |
200 | 158M | #pragma GCC diagnostic pop |
201 | 158M | } unsigned int const& hb_bit_set_t::StructAtOffsetUnaligned<unsigned int>(void const*, unsigned int) Line | Count | Source | 196 | 158M | { | 197 | 158M | #pragma GCC diagnostic push | 198 | 158M | #pragma GCC diagnostic ignored "-Wcast-align" | 199 | 158M | return * reinterpret_cast<const Type*> ((const char *) P + offset); | 200 | 158M | #pragma GCC diagnostic pop | 201 | 158M | } |
Unexecuted instantiation: OT::HBGlyphID16 const& hb_bit_set_t::StructAtOffsetUnaligned<OT::HBGlyphID16>(void const*, unsigned int) Unexecuted instantiation: OT::Index const& hb_bit_set_t::StructAtOffsetUnaligned<OT::Index>(void const*, unsigned int) |
202 | | |
203 | | template <typename T> |
204 | | void set_array (bool v, const T *array, unsigned int count, unsigned int stride=sizeof(T)) |
205 | 2.67M | { |
206 | 2.67M | if (unlikely (!successful)) return; |
207 | 2.67M | if (!count) return; |
208 | 2.67M | dirty (); |
209 | 2.67M | hb_codepoint_t g = *array; |
210 | 6.36M | while (count) |
211 | 3.69M | { |
212 | 3.69M | unsigned int m = get_major (g); |
213 | 3.69M | page_t *page = page_for (g, v); if (unlikely (v && !page)) return; |
214 | 3.69M | unsigned int start = major_start (m); |
215 | 3.69M | unsigned int end = major_start (m + 1); |
216 | 3.69M | do |
217 | 158M | { |
218 | 158M | if (g != INVALID && (v || page)) /* The v check is to optimize out the page check if v is true. */ |
219 | 158M | page->set (g, v); |
220 | | |
221 | 158M | array = &StructAtOffsetUnaligned<T> (array, stride); |
222 | 158M | count--; |
223 | 158M | } |
224 | 158M | while (count && (g = *array, start <= g && g < end)); |
225 | 3.69M | } |
226 | 2.67M | } void hb_bit_set_t::set_array<unsigned int>(bool, unsigned int const*, unsigned int, unsigned int) Line | Count | Source | 205 | 2.67M | { | 206 | 2.67M | if (unlikely (!successful)) return; | 207 | 2.67M | if (!count) return; | 208 | 2.67M | dirty (); | 209 | 2.67M | hb_codepoint_t g = *array; | 210 | 6.36M | while (count) | 211 | 3.69M | { | 212 | 3.69M | unsigned int m = get_major (g); | 213 | 3.69M | page_t *page = page_for (g, v); if (unlikely (v && !page)) return; | 214 | 3.69M | unsigned int start = major_start (m); | 215 | 3.69M | unsigned int end = major_start (m + 1); | 216 | 3.69M | do | 217 | 158M | { | 218 | 158M | if (g != INVALID && (v || page)) /* The v check is to optimize out the page check if v is true. */ | 219 | 158M | page->set (g, v); | 220 | | | 221 | 158M | array = &StructAtOffsetUnaligned<T> (array, stride); | 222 | 158M | count--; | 223 | 158M | } | 224 | 158M | while (count && (g = *array, start <= g && g < end)); | 225 | 3.69M | } | 226 | 2.67M | } |
Unexecuted instantiation: void hb_bit_set_t::set_array<OT::HBGlyphID16>(bool, OT::HBGlyphID16 const*, unsigned int, unsigned int) Unexecuted instantiation: void hb_bit_set_t::set_array<OT::Index>(bool, OT::Index const*, unsigned int, unsigned int) |
227 | | |
228 | | template <typename T> |
229 | | void add_array (const T *array, unsigned int count, unsigned int stride=sizeof(T)) |
230 | 2.67M | { set_array (true, array, count, stride); }void hb_bit_set_t::add_array<unsigned int>(unsigned int const*, unsigned int, unsigned int) Line | Count | Source | 230 | 2.67M | { set_array (true, array, count, stride); } |
Unexecuted instantiation: void hb_bit_set_t::add_array<OT::HBGlyphID16>(OT::HBGlyphID16 const*, unsigned int, unsigned int) Unexecuted instantiation: void hb_bit_set_t::add_array<OT::Index>(OT::Index const*, unsigned int, unsigned int) |
231 | | template <typename T> |
232 | | void add_array (const hb_array_t<const T>& arr) { add_array (&arr, arr.len ()); } |
233 | | |
234 | | template <typename T> |
235 | | void del_array (const T *array, unsigned int count, unsigned int stride=sizeof(T)) |
236 | 0 | { set_array (false, array, count, stride); }Unexecuted instantiation: void hb_bit_set_t::del_array<OT::Index>(OT::Index const*, unsigned int, unsigned int) Unexecuted instantiation: void hb_bit_set_t::del_array<OT::HBGlyphID16>(OT::HBGlyphID16 const*, unsigned int, unsigned int) Unexecuted instantiation: void hb_bit_set_t::del_array<unsigned int>(unsigned int const*, unsigned int, unsigned int) |
237 | | template <typename T> |
238 | | void del_array (const hb_array_t<const T>& arr) { del_array (&arr, arr.len ()); } |
239 | | |
240 | | /* Might return false if array looks unsorted. |
241 | | * Used for faster rejection of corrupt data. */ |
242 | | template <typename T> |
243 | | bool set_sorted_array (bool v, const T *array, unsigned int count, unsigned int stride=sizeof(T)) |
244 | 6.02k | { |
245 | 6.02k | if (unlikely (!successful)) return true; /* https://github.com/harfbuzz/harfbuzz/issues/657 */ |
246 | 6.02k | if (unlikely (!count)) return true; |
247 | 6.02k | dirty (); |
248 | 6.02k | hb_codepoint_t g = *array; |
249 | 6.02k | hb_codepoint_t last_g = g; |
250 | 15.0k | while (count) |
251 | 9.06k | { |
252 | 9.06k | unsigned int m = get_major (g); |
253 | 9.06k | page_t *page = page_for (g, v); if (unlikely (v && !page)) return false; |
254 | 9.06k | unsigned int end = major_start (m + 1); |
255 | 9.06k | do |
256 | 200k | { |
257 | | /* If we try harder we can change the following comparison to <=; |
258 | | * Not sure if it's worth it. */ |
259 | 200k | if (g < last_g) return false; |
260 | 200k | last_g = g; |
261 | | |
262 | 200k | if (g != INVALID && (v || page)) /* The v check is to optimize out the page check if v is true. */ |
263 | 200k | page->add (g); |
264 | | |
265 | 200k | array = &StructAtOffsetUnaligned<T> (array, stride); |
266 | 200k | count--; |
267 | 200k | } |
268 | 200k | while (count && (g = *array, g < end)); |
269 | 9.06k | } |
270 | 6.02k | return true; |
271 | 6.02k | } Unexecuted instantiation: bool hb_bit_set_t::set_sorted_array<OT::HBGlyphID16>(bool, OT::HBGlyphID16 const*, unsigned int, unsigned int) bool hb_bit_set_t::set_sorted_array<unsigned int>(bool, unsigned int const*, unsigned int, unsigned int) Line | Count | Source | 244 | 6.02k | { | 245 | 6.02k | if (unlikely (!successful)) return true; /* https://github.com/harfbuzz/harfbuzz/issues/657 */ | 246 | 6.02k | if (unlikely (!count)) return true; | 247 | 6.02k | dirty (); | 248 | 6.02k | hb_codepoint_t g = *array; | 249 | 6.02k | hb_codepoint_t last_g = g; | 250 | 15.0k | while (count) | 251 | 9.06k | { | 252 | 9.06k | unsigned int m = get_major (g); | 253 | 9.06k | page_t *page = page_for (g, v); if (unlikely (v && !page)) return false; | 254 | 9.06k | unsigned int end = major_start (m + 1); | 255 | 9.06k | do | 256 | 200k | { | 257 | | /* If we try harder we can change the following comparison to <=; | 258 | | * Not sure if it's worth it. */ | 259 | 200k | if (g < last_g) return false; | 260 | 200k | last_g = g; | 261 | | | 262 | 200k | if (g != INVALID && (v || page)) /* The v check is to optimize out the page check if v is true. */ | 263 | 200k | page->add (g); | 264 | | | 265 | 200k | array = &StructAtOffsetUnaligned<T> (array, stride); | 266 | 200k | count--; | 267 | 200k | } | 268 | 200k | while (count && (g = *array, g < end)); | 269 | 9.06k | } | 270 | 6.02k | return true; | 271 | 6.02k | } |
|
272 | | |
273 | | template <typename T> |
274 | | bool add_sorted_array (const T *array, unsigned int count, unsigned int stride=sizeof(T)) |
275 | 6.02k | { return set_sorted_array (true, array, count, stride); }Unexecuted instantiation: bool hb_bit_set_t::add_sorted_array<OT::HBGlyphID16>(OT::HBGlyphID16 const*, unsigned int, unsigned int) bool hb_bit_set_t::add_sorted_array<unsigned int>(unsigned int const*, unsigned int, unsigned int) Line | Count | Source | 275 | 6.02k | { return set_sorted_array (true, array, count, stride); } |
|
276 | | template <typename T> |
277 | | bool add_sorted_array (const hb_sorted_array_t<const T>& arr) { return add_sorted_array (&arr, arr.len ()); } |
278 | | |
279 | | template <typename T> |
280 | | bool del_sorted_array (const T *array, unsigned int count, unsigned int stride=sizeof(T)) |
281 | 0 | { return set_sorted_array (false, array, count, stride); }Unexecuted instantiation: bool hb_bit_set_t::del_sorted_array<OT::HBGlyphID16>(OT::HBGlyphID16 const*, unsigned int, unsigned int) Unexecuted instantiation: bool hb_bit_set_t::del_sorted_array<unsigned int>(unsigned int const*, unsigned int, unsigned int) |
282 | | template <typename T> |
283 | | bool del_sorted_array (const hb_sorted_array_t<const T>& arr) { return del_sorted_array (&arr, arr.len ()); } |
284 | | |
285 | | void del (hb_codepoint_t g) |
286 | 82.8k | { |
287 | 82.8k | if (unlikely (!successful)) return; |
288 | 82.8k | page_t *page = page_for (g); |
289 | 82.8k | if (!page) |
290 | 0 | return; |
291 | 82.8k | dirty (); |
292 | 82.8k | page->del (g); |
293 | 82.8k | } |
294 | | |
295 | | private: |
296 | | void del_pages (int ds, int de) |
297 | 12.7k | { |
298 | 12.7k | if (ds <= de) |
299 | 12.7k | { |
300 | | // Pre-allocate the workspace that compact() will need so we can bail on allocation failure |
301 | | // before attempting to rewrite the page map. |
302 | 12.7k | hb_vector_t<unsigned> compact_workspace; |
303 | 12.7k | if (unlikely (!allocate_compact_workspace (compact_workspace))) return; |
304 | | |
305 | 12.7k | unsigned int write_index = 0; |
306 | 34.2k | for (unsigned int i = 0; i < page_map.length; i++) |
307 | 21.4k | { |
308 | 21.4k | int m = (int) page_map.arrayZ[i].major; |
309 | 21.4k | if (m < ds || de < m) |
310 | 21.4k | page_map.arrayZ[write_index++] = page_map.arrayZ[i]; |
311 | 21.4k | } |
312 | 12.7k | compact (compact_workspace, write_index); |
313 | 12.7k | resize (write_index); |
314 | 12.7k | } |
315 | 12.7k | } |
316 | | |
317 | | |
318 | | public: |
319 | | void del_range (hb_codepoint_t a, hb_codepoint_t b) |
320 | 12.7k | { |
321 | 12.7k | if (unlikely (!successful)) return; |
322 | 12.7k | if (unlikely (a > b || a == INVALID)) return; |
323 | 12.7k | dirty (); |
324 | 12.7k | unsigned int ma = get_major (a); |
325 | 12.7k | unsigned int mb = get_major (b); |
326 | | /* Delete pages from ds through de if ds <= de. */ |
327 | 12.7k | int ds = (a == major_start (ma))? (int) ma: (int) (ma + 1); |
328 | 12.7k | int de = (b + 1 == major_start (mb + 1))? (int) mb: ((int) mb - 1); |
329 | 12.7k | if (ds > de || (int) ma < ds) |
330 | 12.7k | { |
331 | 12.7k | page_t *page = page_for (a); |
332 | 12.7k | if (page) |
333 | 0 | { |
334 | 0 | if (ma == mb) |
335 | 0 | page->del_range (a, b); |
336 | 0 | else |
337 | 0 | page->del_range (a, major_start (ma + 1) - 1); |
338 | 0 | } |
339 | 12.7k | } |
340 | 12.7k | if (de < (int) mb && ma != mb) |
341 | 0 | { |
342 | 0 | page_t *page = page_for (b); |
343 | 0 | if (page) |
344 | 0 | page->del_range (major_start (mb), b); |
345 | 0 | } |
346 | 12.7k | del_pages (ds, de); |
347 | 12.7k | } |
348 | | |
349 | | bool get (hb_codepoint_t g) const |
350 | 56.5M | { |
351 | 56.5M | const page_t *page = page_for (g); |
352 | 56.5M | if (!page) |
353 | 25.8M | return false; |
354 | 30.6M | return page->get (g); |
355 | 56.5M | } |
356 | 0 | bool may_have (hb_codepoint_t g) const { return get (g); } |
357 | | |
358 | | /* Has interface. */ |
359 | 25.9M | bool operator [] (hb_codepoint_t k) const { return get (k); } |
360 | 23.8M | bool has (hb_codepoint_t k) const { return (*this)[k]; } |
361 | | /* Predicate. */ |
362 | 0 | bool operator () (hb_codepoint_t k) const { return has (k); } |
363 | | |
364 | | /* Sink interface. */ |
365 | | hb_bit_set_t& operator << (hb_codepoint_t v) |
366 | 0 | { add (v); return *this; } |
367 | | hb_bit_set_t& operator << (const hb_codepoint_pair_t& range) |
368 | 0 | { add_range (range.first, range.second); return *this; } |
369 | | |
370 | | bool intersects (const hb_bit_set_t &other) const |
371 | 2.54M | { |
372 | 2.54M | unsigned int na = pages.length; |
373 | 2.54M | unsigned int nb = other.pages.length; |
374 | | |
375 | 2.54M | unsigned int a = 0, b = 0; |
376 | 4.64M | for (; a < na && b < nb; ) |
377 | 2.94M | { |
378 | 2.94M | if (page_map.arrayZ[a].major == other.page_map.arrayZ[b].major) |
379 | 2.70M | { |
380 | 2.70M | if (page_at (a).intersects (other.page_at (b))) |
381 | 851k | return true; |
382 | 1.85M | a++; |
383 | 1.85M | b++; |
384 | 1.85M | } |
385 | 245k | else if (page_map.arrayZ[a].major < other.page_map.arrayZ[b].major) |
386 | 0 | a++; |
387 | 245k | else |
388 | 245k | b++; |
389 | 2.94M | } |
390 | 1.69M | return false; |
391 | 2.54M | } |
392 | | bool may_intersect (const hb_bit_set_t &other) const |
393 | 0 | { return intersects (other); } |
394 | | |
395 | | bool intersects (hb_codepoint_t first, hb_codepoint_t last) const |
396 | 0 | { |
397 | 0 | hb_codepoint_t c = first - 1; |
398 | 0 | return next (&c) && c <= last; |
399 | 0 | } |
400 | | void set (const hb_bit_set_t &other, bool exact_size = false) |
401 | 70.1k | { |
402 | 70.1k | if (unlikely (!successful)) return; |
403 | 70.1k | unsigned int count = other.pages.length; |
404 | 70.1k | if (unlikely (!resize (count, false, exact_size))) |
405 | 0 | return; |
406 | 70.1k | population = other.population; |
407 | | |
408 | 70.1k | page_map = other.page_map; |
409 | 70.1k | pages = other.pages; |
410 | 70.1k | } |
411 | | |
412 | | bool is_equal (const hb_bit_set_t &other) const |
413 | 0 | { |
414 | 0 | if (has_population () && other.has_population () && |
415 | 0 | population != other.population) |
416 | 0 | return false; |
417 | | |
418 | 0 | unsigned int na = pages.length; |
419 | 0 | unsigned int nb = other.pages.length; |
420 | |
|
421 | 0 | unsigned int a = 0, b = 0; |
422 | 0 | for (; a < na && b < nb; ) |
423 | 0 | { |
424 | 0 | if (page_at (a).is_empty ()) { a++; continue; } |
425 | 0 | if (other.page_at (b).is_empty ()) { b++; continue; } |
426 | 0 | if (page_map.arrayZ[a].major != other.page_map.arrayZ[b].major || |
427 | 0 | !page_at (a).is_equal (other.page_at (b))) |
428 | 0 | return false; |
429 | 0 | a++; |
430 | 0 | b++; |
431 | 0 | } |
432 | 0 | for (; a < na; a++) |
433 | 0 | if (!page_at (a).is_empty ()) { return false; } |
434 | 0 | for (; b < nb; b++) |
435 | 0 | if (!other.page_at (b).is_empty ()) { return false; } |
436 | | |
437 | 0 | return true; |
438 | 0 | } |
439 | | |
440 | | bool is_subset (const hb_bit_set_t &larger_set) const |
441 | 0 | { |
442 | 0 | if (has_population () && larger_set.has_population () && |
443 | 0 | population > larger_set.population) |
444 | 0 | return false; |
445 | | |
446 | 0 | uint32_t spi = 0; |
447 | 0 | uint32_t lpi = 0; |
448 | 0 | while (spi < page_map.length && lpi < larger_set.page_map.length) |
449 | 0 | { |
450 | 0 | uint32_t spm = page_map.arrayZ[spi].major; |
451 | 0 | uint32_t lpm = larger_set.page_map.arrayZ[lpi].major; |
452 | 0 | auto sp = page_at (spi); |
453 | |
|
454 | 0 | if (spm < lpm) { |
455 | 0 | if (!sp.is_empty ()) |
456 | 0 | return false; |
457 | 0 | spi++; |
458 | 0 | continue; |
459 | 0 | } |
460 | | |
461 | 0 | if (lpm < spm) { |
462 | 0 | lpi++; |
463 | 0 | continue; |
464 | 0 | } |
465 | | |
466 | 0 | auto lp = larger_set.page_at (lpi); |
467 | 0 | if (!sp.is_subset (lp)) |
468 | 0 | return false; |
469 | | |
470 | 0 | spi++; |
471 | 0 | lpi++; |
472 | 0 | } |
473 | | |
474 | 0 | while (spi < page_map.length) |
475 | 0 | if (!page_at (spi++).is_empty ()) |
476 | 0 | return false; |
477 | | |
478 | 0 | return true; |
479 | 0 | } |
480 | | |
481 | | private: |
482 | | bool allocate_compact_workspace (hb_vector_t<unsigned>& workspace) |
483 | 12.7k | { |
484 | 12.7k | if (unlikely (!workspace.resize_exact (pages.length))) |
485 | 0 | { |
486 | 0 | successful = false; |
487 | 0 | return false; |
488 | 0 | } |
489 | | |
490 | 12.7k | return true; |
491 | 12.7k | } |
492 | | |
493 | | /* |
494 | | * workspace should be a pre-sized vector allocated to hold at exactly pages.length |
495 | | * elements. |
496 | | */ |
497 | | void compact (hb_vector_t<unsigned>& workspace, |
498 | | unsigned int length) |
499 | 12.7k | { |
500 | 12.7k | assert(workspace.length == pages.length); |
501 | 12.7k | hb_vector_t<unsigned>& old_index_to_page_map_index = workspace; |
502 | | |
503 | 12.7k | hb_fill (old_index_to_page_map_index.writer(), 0xFFFFFFFF); |
504 | 34.2k | for (unsigned i = 0; i < length; i++) |
505 | 21.4k | old_index_to_page_map_index[page_map[i].index] = i; |
506 | | |
507 | 12.7k | compact_pages (old_index_to_page_map_index); |
508 | 12.7k | } |
509 | | void compact_pages (const hb_vector_t<unsigned>& old_index_to_page_map_index) |
510 | 12.7k | { |
511 | 12.7k | unsigned int write_index = 0; |
512 | 34.2k | for (unsigned int i = 0; i < pages.length; i++) |
513 | 21.4k | { |
514 | 21.4k | if (old_index_to_page_map_index[i] == 0xFFFFFFFF) continue; |
515 | | |
516 | 21.4k | if (write_index < i) |
517 | 0 | pages[write_index] = pages[i]; |
518 | | |
519 | 21.4k | page_map[old_index_to_page_map_index[i]].index = write_index; |
520 | 21.4k | write_index++; |
521 | 21.4k | } |
522 | 12.7k | } |
523 | | public: |
524 | | |
525 | | void process_ (hb_bit_page_t::vector_t (*op) (const hb_bit_page_t::vector_t &, const hb_bit_page_t::vector_t &), |
526 | | bool passthru_left, bool passthru_right, |
527 | | const hb_bit_set_t &other) |
528 | 0 | { |
529 | 0 | if (unlikely (!successful)) return; |
530 | | |
531 | 0 | dirty (); |
532 | |
|
533 | 0 | unsigned int na = pages.length; |
534 | 0 | unsigned int nb = other.pages.length; |
535 | 0 | unsigned int next_page = na; |
536 | |
|
537 | 0 | unsigned int count = 0, newCount = 0; |
538 | 0 | unsigned int a = 0, b = 0; |
539 | 0 | unsigned int write_index = 0; |
540 | | |
541 | | // Pre-allocate the workspace that compact() will need so we can bail on allocation failure |
542 | | // before attempting to rewrite the page map. |
543 | 0 | hb_vector_t<unsigned> compact_workspace; |
544 | 0 | if (!passthru_left && unlikely (!allocate_compact_workspace (compact_workspace))) return; |
545 | | |
546 | 0 | for (; a < na && b < nb; ) |
547 | 0 | { |
548 | 0 | if (page_map.arrayZ[a].major == other.page_map.arrayZ[b].major) |
549 | 0 | { |
550 | 0 | if (!passthru_left) |
551 | 0 | { |
552 | | // Move page_map entries that we're keeping from the left side set |
553 | | // to the front of the page_map vector. This isn't necessary if |
554 | | // passthru_left is set since no left side pages will be removed |
555 | | // in that case. |
556 | 0 | if (write_index < a) |
557 | 0 | page_map.arrayZ[write_index] = page_map.arrayZ[a]; |
558 | 0 | write_index++; |
559 | 0 | } |
560 | |
|
561 | 0 | count++; |
562 | 0 | a++; |
563 | 0 | b++; |
564 | 0 | } |
565 | 0 | else if (page_map.arrayZ[a].major < other.page_map.arrayZ[b].major) |
566 | 0 | { |
567 | 0 | if (passthru_left) |
568 | 0 | count++; |
569 | 0 | a++; |
570 | 0 | } |
571 | 0 | else |
572 | 0 | { |
573 | 0 | if (passthru_right) |
574 | 0 | count++; |
575 | 0 | b++; |
576 | 0 | } |
577 | 0 | } |
578 | 0 | if (passthru_left) |
579 | 0 | count += na - a; |
580 | 0 | if (passthru_right) |
581 | 0 | count += nb - b; |
582 | |
|
583 | 0 | if (!passthru_left) |
584 | 0 | { |
585 | 0 | na = write_index; |
586 | 0 | next_page = write_index; |
587 | 0 | compact (compact_workspace, write_index); |
588 | 0 | } |
589 | |
|
590 | 0 | if (unlikely (!resize (count))) |
591 | 0 | return; |
592 | | |
593 | 0 | newCount = count; |
594 | | |
595 | | /* Process in-place backward. */ |
596 | 0 | a = na; |
597 | 0 | b = nb; |
598 | 0 | for (; a && b; ) |
599 | 0 | { |
600 | 0 | if (page_map.arrayZ[a - 1].major == other.page_map.arrayZ[b - 1].major) |
601 | 0 | { |
602 | 0 | a--; |
603 | 0 | b--; |
604 | 0 | count--; |
605 | 0 | page_map.arrayZ[count] = page_map.arrayZ[a]; |
606 | 0 | page_at (count).v = op (page_at (a).v, other.page_at (b).v); |
607 | 0 | page_at (count).dirty (); |
608 | 0 | } |
609 | 0 | else if (page_map.arrayZ[a - 1].major > other.page_map.arrayZ[b - 1].major) |
610 | 0 | { |
611 | 0 | a--; |
612 | 0 | if (passthru_left) |
613 | 0 | { |
614 | 0 | count--; |
615 | 0 | page_map.arrayZ[count] = page_map.arrayZ[a]; |
616 | 0 | } |
617 | 0 | } |
618 | 0 | else |
619 | 0 | { |
620 | 0 | b--; |
621 | 0 | if (passthru_right) |
622 | 0 | { |
623 | 0 | count--; |
624 | 0 | page_map.arrayZ[count].major = other.page_map.arrayZ[b].major; |
625 | 0 | page_map.arrayZ[count].index = next_page++; |
626 | 0 | page_at (count) = other.page_at (b); |
627 | 0 | } |
628 | 0 | } |
629 | 0 | } |
630 | 0 | if (passthru_left) |
631 | 0 | while (a) |
632 | 0 | { |
633 | 0 | a--; |
634 | 0 | count--; |
635 | 0 | page_map.arrayZ[count] = page_map.arrayZ[a]; |
636 | 0 | } |
637 | 0 | if (passthru_right) |
638 | 0 | while (b) |
639 | 0 | { |
640 | 0 | b--; |
641 | 0 | count--; |
642 | 0 | page_map.arrayZ[count].major = other.page_map.arrayZ[b].major; |
643 | 0 | page_map.arrayZ[count].index = next_page++; |
644 | 0 | page_at (count) = other.page_at (b); |
645 | 0 | } |
646 | 0 | assert (!count); |
647 | 0 | resize (newCount); |
648 | 0 | } |
649 | | template <typename Op> |
650 | | static hb_bit_page_t::vector_t |
651 | | op_ (const hb_bit_page_t::vector_t &a, const hb_bit_page_t::vector_t &b) |
652 | 0 | { return Op{} (a, b); }Unexecuted instantiation: hb-aat-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-aat-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-aat-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-aat-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-aat-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-aat-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-aat-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-aat-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-aat-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-aat-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-buffer.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-buffer.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-buffer.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-buffer.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-buffer.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-face.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-face.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-face.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_17>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-face.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_19>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-face.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_27>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-face-builder.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-face-builder.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_13>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-face-builder.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-face-builder.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-face-builder.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_24>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-font.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_13>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-font.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-font.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-font.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_17>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-font.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_25>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-color.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_13>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-color.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-color.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-color.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_17>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-color.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_25>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-face.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-face.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-face.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_17>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-face.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_19>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-face.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_27>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-font.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-font.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-font.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_17>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-font.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_19>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-font.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_27>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: VARC.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: VARC.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: VARC.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: VARC.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: VARC.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-metrics.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_13>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-metrics.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-metrics.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-metrics.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_17>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-metrics.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_25>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-name.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-name.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-name.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-name.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-name.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_13>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_17>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_25>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-set.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_9>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-set.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_8>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-set.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-set.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_21>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-set.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-static.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-static.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-static.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_17>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-static.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_19>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-static.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_27>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-style.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-style.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-style.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-style.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-style.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-cff1-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_13>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-cff1-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-cff1-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-cff1-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_17>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-cff1-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_25>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-cff2-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_13>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-cff2-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-cff2-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-cff2-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_17>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-cff2-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_25>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-map.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-default.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-default.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-default.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-default.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-default.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-use.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-use.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-use.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_13>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-use.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-use.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_23>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-input.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-input.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-input.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-input.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-input.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_21>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_23>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_33>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_25>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_19>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_20>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_30>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-plan-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-layout.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-var.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-cff.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-cff.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-cff.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-cff.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-cff.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-color.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-color.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-color.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-color.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-color.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-other.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-other.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-other.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_17>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-other.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_27>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-table-other.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_19>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: gsubgpos-context.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: gsubgpos-context.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: gsubgpos-context.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: gsubgpos-context.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: gsubgpos-context.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_26>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff1.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff1.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff1.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_16>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff1.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff1.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_25>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff2.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_17>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff2.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_18>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff2.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_19>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff2.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_21>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff2.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_28>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-instancer-iup.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_10>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-instancer-iup.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_11>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-instancer-iup.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_12>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-instancer-iup.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-instancer-iup.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_22>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff-common.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_13>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff-common.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_14>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff-common.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_15>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff-common.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_17>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) Unexecuted instantiation: hb-subset-cff-common.cc:hb_vector_size_t<unsigned long long, 64u> hb_bit_set_t::op_<$_25>(hb_vector_size_t<unsigned long long, 64u> const&, hb_vector_size_t<unsigned long long, 64u> const&) |
653 | | template <typename Op> |
654 | | void process (const Op& op, const hb_bit_set_t &other) |
655 | 0 | { |
656 | 0 | process_ (op_<Op>, op (1, 0), op (0, 1), other); |
657 | 0 | } Unexecuted instantiation: hb-aat-layout.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-aat-layout.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-aat-layout.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-aat-layout.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-aat-layout.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-aat-map.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-aat-map.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-aat-map.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-aat-map.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-aat-map.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-buffer.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-buffer.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-buffer.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-buffer.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-buffer.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-face.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-face.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-face.cc:void hb_bit_set_t::process<$_17>($_17 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-face.cc:void hb_bit_set_t::process<$_19>($_19 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-face.cc:void hb_bit_set_t::process<$_27>($_27 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-face-builder.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-face-builder.cc:void hb_bit_set_t::process<$_13>($_13 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-face-builder.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-face-builder.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-face-builder.cc:void hb_bit_set_t::process<$_24>($_24 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-font.cc:void hb_bit_set_t::process<$_13>($_13 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-font.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-font.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-font.cc:void hb_bit_set_t::process<$_17>($_17 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-font.cc:void hb_bit_set_t::process<$_25>($_25 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-map.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-map.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-map.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-map.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-map.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-color.cc:void hb_bit_set_t::process<$_13>($_13 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-color.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-color.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-color.cc:void hb_bit_set_t::process<$_17>($_17 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-color.cc:void hb_bit_set_t::process<$_25>($_25 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-face.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-face.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-face.cc:void hb_bit_set_t::process<$_17>($_17 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-face.cc:void hb_bit_set_t::process<$_19>($_19 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-face.cc:void hb_bit_set_t::process<$_27>($_27 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-font.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-font.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-font.cc:void hb_bit_set_t::process<$_17>($_17 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-font.cc:void hb_bit_set_t::process<$_19>($_19 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-font.cc:void hb_bit_set_t::process<$_27>($_27 const&, hb_bit_set_t const&) Unexecuted instantiation: VARC.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: VARC.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: VARC.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: VARC.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: VARC.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-layout.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-layout.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-layout.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-layout.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-layout.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-metrics.cc:void hb_bit_set_t::process<$_13>($_13 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-metrics.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-metrics.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-metrics.cc:void hb_bit_set_t::process<$_17>($_17 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-metrics.cc:void hb_bit_set_t::process<$_25>($_25 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-name.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-name.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-name.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-name.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-name.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-var.cc:void hb_bit_set_t::process<$_13>($_13 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-var.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-var.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-var.cc:void hb_bit_set_t::process<$_17>($_17 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-var.cc:void hb_bit_set_t::process<$_25>($_25 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-set.cc:void hb_bit_set_t::process<$_9>($_9 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-set.cc:void hb_bit_set_t::process<$_8>($_8 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-set.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-set.cc:void hb_bit_set_t::process<$_21>($_21 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-set.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-static.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-static.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-static.cc:void hb_bit_set_t::process<$_17>($_17 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-static.cc:void hb_bit_set_t::process<$_19>($_19 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-static.cc:void hb_bit_set_t::process<$_27>($_27 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-style.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-style.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-style.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-style.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-style.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-cff1-table.cc:void hb_bit_set_t::process<$_13>($_13 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-cff1-table.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-cff1-table.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-cff1-table.cc:void hb_bit_set_t::process<$_17>($_17 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-cff1-table.cc:void hb_bit_set_t::process<$_25>($_25 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-cff2-table.cc:void hb_bit_set_t::process<$_13>($_13 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-cff2-table.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-cff2-table.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-cff2-table.cc:void hb_bit_set_t::process<$_17>($_17 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-cff2-table.cc:void hb_bit_set_t::process<$_25>($_25 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-map.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-map.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-map.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-map.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-map.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-arabic.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-arabic.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-arabic.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-arabic.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-arabic.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-default.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-default.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-default.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-default.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-default.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-hangul.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-hangul.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-hangul.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-hangul.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-hangul.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-hebrew.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-hebrew.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-hebrew.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-hebrew.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-hebrew.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-indic.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-indic.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-indic.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-indic.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-indic.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-khmer.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-khmer.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-khmer.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-khmer.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-khmer.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-myanmar.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-myanmar.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-myanmar.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-myanmar.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-myanmar.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-syllabic.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-syllabic.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-syllabic.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-syllabic.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-syllabic.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-thai.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-thai.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-thai.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-thai.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-thai.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-use.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-use.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-use.cc:void hb_bit_set_t::process<$_13>($_13 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-use.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-use.cc:void hb_bit_set_t::process<$_23>($_23 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape-fallback.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape-fallback.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape-fallback.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape-fallback.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape-fallback.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape-normalize.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape-normalize.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape-normalize.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape-normalize.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shape-normalize.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-indic-table.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-indic-table.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-indic-table.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-indic-table.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-ot-shaper-indic-table.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-input.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-input.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-input.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-input.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-input.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset.cc:void hb_bit_set_t::process<$_21>($_21 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset.cc:void hb_bit_set_t::process<$_23>($_23 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset.cc:void hb_bit_set_t::process<$_33>($_33 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset.cc:void hb_bit_set_t::process<$_25>($_25 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan.cc:void hb_bit_set_t::process<$_19>($_19 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan.cc:void hb_bit_set_t::process<$_20>($_20 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan.cc:void hb_bit_set_t::process<$_30>($_30 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan-layout.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan-layout.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan-layout.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan-layout.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan-layout.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan-var.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan-var.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan-var.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan-var.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-plan-var.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-layout.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-layout.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-layout.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-layout.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-layout.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-var.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-var.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-var.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-var.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-var.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-cff.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-cff.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-cff.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-cff.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-cff.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-color.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-color.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-color.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-color.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-color.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-other.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-other.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-other.cc:void hb_bit_set_t::process<$_17>($_17 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-other.cc:void hb_bit_set_t::process<$_27>($_27 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-table-other.cc:void hb_bit_set_t::process<$_19>($_19 const&, hb_bit_set_t const&) Unexecuted instantiation: gsubgpos-context.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: gsubgpos-context.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: gsubgpos-context.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: gsubgpos-context.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: gsubgpos-context.cc:void hb_bit_set_t::process<$_26>($_26 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff1.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff1.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff1.cc:void hb_bit_set_t::process<$_16>($_16 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff1.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff1.cc:void hb_bit_set_t::process<$_25>($_25 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff2.cc:void hb_bit_set_t::process<$_17>($_17 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff2.cc:void hb_bit_set_t::process<$_18>($_18 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff2.cc:void hb_bit_set_t::process<$_19>($_19 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff2.cc:void hb_bit_set_t::process<$_21>($_21 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff2.cc:void hb_bit_set_t::process<$_28>($_28 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-instancer-iup.cc:void hb_bit_set_t::process<$_10>($_10 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-instancer-iup.cc:void hb_bit_set_t::process<$_11>($_11 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-instancer-iup.cc:void hb_bit_set_t::process<$_12>($_12 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-instancer-iup.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-instancer-iup.cc:void hb_bit_set_t::process<$_22>($_22 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff-common.cc:void hb_bit_set_t::process<$_13>($_13 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff-common.cc:void hb_bit_set_t::process<$_14>($_14 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff-common.cc:void hb_bit_set_t::process<$_15>($_15 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff-common.cc:void hb_bit_set_t::process<$_17>($_17 const&, hb_bit_set_t const&) Unexecuted instantiation: hb-subset-cff-common.cc:void hb_bit_set_t::process<$_25>($_25 const&, hb_bit_set_t const&) |
658 | | |
659 | 0 | void union_ (const hb_bit_set_t &other) { process (hb_bitwise_or, other); } |
660 | 0 | void intersect (const hb_bit_set_t &other) { process (hb_bitwise_and, other); } |
661 | 0 | void subtract (const hb_bit_set_t &other) { process (hb_bitwise_gt, other); } |
662 | 0 | void symmetric_difference (const hb_bit_set_t &other) { process (hb_bitwise_xor, other); } |
663 | | |
664 | | bool next (hb_codepoint_t *codepoint) const |
665 | 16.9M | { |
666 | 16.9M | if (unlikely (*codepoint == INVALID)) { |
667 | 126k | *codepoint = get_min (); |
668 | 126k | return *codepoint != INVALID; |
669 | 126k | } |
670 | | |
671 | 16.8M | const auto* page_map_array = page_map.arrayZ; |
672 | 16.8M | unsigned int major = get_major (*codepoint); |
673 | 16.8M | unsigned int i = last_page_lookup; |
674 | | |
675 | 16.8M | if (unlikely (i >= page_map.length || page_map_array[i].major != major)) |
676 | 82.5k | { |
677 | 82.5k | page_map.bfind (major, &i, HB_NOT_FOUND_STORE_CLOSEST); |
678 | 82.5k | if (i >= page_map.length) { |
679 | 0 | *codepoint = INVALID; |
680 | 0 | return false; |
681 | 0 | } |
682 | 82.5k | last_page_lookup = i; |
683 | 82.5k | } |
684 | | |
685 | 16.8M | const auto* pages_array = pages.arrayZ; |
686 | 16.8M | const page_map_t ¤t = page_map_array[i]; |
687 | 16.8M | if (likely (current.major == major)) |
688 | 16.8M | { |
689 | 16.8M | if (pages_array[current.index].next (codepoint)) |
690 | 16.5M | { |
691 | 16.5M | *codepoint += current.major * page_t::PAGE_BITS; |
692 | 16.5M | return true; |
693 | 16.5M | } |
694 | 308k | i++; |
695 | 308k | } |
696 | | |
697 | 308k | for (; i < page_map.length; i++) |
698 | 249k | { |
699 | 249k | const page_map_t ¤t = page_map_array[i]; |
700 | 249k | hb_codepoint_t m = pages_array[current.index].get_min (); |
701 | 249k | if (m != INVALID) |
702 | 249k | { |
703 | 249k | *codepoint = current.major * page_t::PAGE_BITS + m; |
704 | 249k | last_page_lookup = i; |
705 | 249k | return true; |
706 | 249k | } |
707 | 249k | } |
708 | 59.2k | *codepoint = INVALID; |
709 | 59.2k | return false; |
710 | 308k | } |
711 | | bool previous (hb_codepoint_t *codepoint) const |
712 | 6.37k | { |
713 | 6.37k | if (unlikely (*codepoint == INVALID)) { |
714 | 6.37k | *codepoint = get_max (); |
715 | 6.37k | return *codepoint != INVALID; |
716 | 6.37k | } |
717 | | |
718 | 0 | page_map_t map = {get_major (*codepoint), 0}; |
719 | 0 | unsigned int i; |
720 | 0 | page_map.bfind (map, &i, HB_NOT_FOUND_STORE_CLOSEST); |
721 | 0 | if (i < page_map.length && page_map.arrayZ[i].major == map.major) |
722 | 0 | { |
723 | 0 | if (pages[page_map.arrayZ[i].index].previous (codepoint)) |
724 | 0 | { |
725 | 0 | *codepoint += page_map.arrayZ[i].major * page_t::PAGE_BITS; |
726 | 0 | return true; |
727 | 0 | } |
728 | 0 | } |
729 | 0 | i--; |
730 | 0 | for (; (int) i >= 0; i--) |
731 | 0 | { |
732 | 0 | hb_codepoint_t m = pages.arrayZ[page_map.arrayZ[i].index].get_max (); |
733 | 0 | if (m != INVALID) |
734 | 0 | { |
735 | 0 | *codepoint = page_map.arrayZ[i].major * page_t::PAGE_BITS + m; |
736 | 0 | return true; |
737 | 0 | } |
738 | 0 | } |
739 | 0 | *codepoint = INVALID; |
740 | 0 | return false; |
741 | 0 | } |
742 | | bool next_range (hb_codepoint_t *first, hb_codepoint_t *last) const |
743 | 896k | { |
744 | 896k | hb_codepoint_t i; |
745 | | |
746 | 896k | i = *last; |
747 | 896k | if (!next (&i)) |
748 | 12.7k | { |
749 | 12.7k | *last = *first = INVALID; |
750 | 12.7k | return false; |
751 | 12.7k | } |
752 | | |
753 | | /* TODO Speed up. */ |
754 | 884k | *last = *first = i; |
755 | 15.0M | while (next (&i) && i == *last + 1) |
756 | 14.1M | (*last)++; |
757 | | |
758 | 884k | return true; |
759 | 896k | } |
760 | | bool previous_range (hb_codepoint_t *first, hb_codepoint_t *last) const |
761 | 0 | { |
762 | 0 | hb_codepoint_t i; |
763 | |
|
764 | 0 | i = *first; |
765 | 0 | if (!previous (&i)) |
766 | 0 | { |
767 | 0 | *last = *first = INVALID; |
768 | 0 | return false; |
769 | 0 | } |
770 | | |
771 | | /* TODO Speed up. */ |
772 | 0 | *last = *first = i; |
773 | 0 | while (previous (&i) && i == *first - 1) |
774 | 0 | (*first)--; |
775 | |
|
776 | 0 | return true; |
777 | 0 | } |
778 | | |
779 | | unsigned int next_many (hb_codepoint_t codepoint, |
780 | | hb_codepoint_t *out, |
781 | | unsigned int size) const |
782 | 0 | { |
783 | | // By default, start at the first bit of the first page of values. |
784 | 0 | unsigned int start_page = 0; |
785 | 0 | unsigned int start_page_value = 0; |
786 | 0 | if (unlikely (codepoint != INVALID)) |
787 | 0 | { |
788 | 0 | const auto* page_map_array = page_map.arrayZ; |
789 | 0 | unsigned int major = get_major (codepoint); |
790 | 0 | unsigned int i = last_page_lookup; |
791 | 0 | if (unlikely (i >= page_map.length || page_map_array[i].major != major)) |
792 | 0 | { |
793 | 0 | page_map.bfind (major, &i, HB_NOT_FOUND_STORE_CLOSEST); |
794 | 0 | if (i >= page_map.length) |
795 | 0 | return 0; // codepoint is greater than our max element. |
796 | 0 | } |
797 | 0 | start_page = i; |
798 | 0 | start_page_value = page_remainder (codepoint + 1); |
799 | 0 | if (unlikely (start_page_value == 0)) |
800 | 0 | { |
801 | | // The export-after value was last in the page. Start on next page. |
802 | 0 | start_page++; |
803 | 0 | start_page_value = 0; |
804 | 0 | } |
805 | 0 | } |
806 | | |
807 | 0 | unsigned int initial_size = size; |
808 | 0 | for (unsigned int i = start_page; i < page_map.length && size; i++) |
809 | 0 | { |
810 | 0 | uint32_t base = major_start (page_map.arrayZ[i].major); |
811 | 0 | unsigned int n = pages[page_map.arrayZ[i].index].write (base, start_page_value, out, size); |
812 | 0 | out += n; |
813 | 0 | size -= n; |
814 | 0 | start_page_value = 0; |
815 | 0 | } |
816 | 0 | return initial_size - size; |
817 | 0 | } |
818 | | |
819 | | unsigned int next_many_inverted (hb_codepoint_t codepoint, |
820 | | hb_codepoint_t *out, |
821 | | unsigned int size) const |
822 | 0 | { |
823 | 0 | unsigned int initial_size = size; |
824 | | // By default, start at the first bit of the first page of values. |
825 | 0 | unsigned int start_page = 0; |
826 | 0 | unsigned int start_page_value = 0; |
827 | 0 | if (unlikely (codepoint != INVALID)) |
828 | 0 | { |
829 | 0 | const auto* page_map_array = page_map.arrayZ; |
830 | 0 | unsigned int major = get_major (codepoint); |
831 | 0 | unsigned int i = last_page_lookup; |
832 | 0 | if (unlikely (i >= page_map.length || page_map_array[i].major != major)) |
833 | 0 | { |
834 | 0 | page_map.bfind(major, &i, HB_NOT_FOUND_STORE_CLOSEST); |
835 | 0 | if (unlikely (i >= page_map.length)) |
836 | 0 | { |
837 | | // codepoint is greater than our max element. |
838 | 0 | while (++codepoint != INVALID && size) |
839 | 0 | { |
840 | 0 | *out++ = codepoint; |
841 | 0 | size--; |
842 | 0 | } |
843 | 0 | return initial_size - size; |
844 | 0 | } |
845 | 0 | } |
846 | 0 | start_page = i; |
847 | 0 | start_page_value = page_remainder (codepoint + 1); |
848 | 0 | if (unlikely (start_page_value == 0)) |
849 | 0 | { |
850 | | // The export-after value was last in the page. Start on next page. |
851 | 0 | start_page++; |
852 | 0 | start_page_value = 0; |
853 | 0 | } |
854 | 0 | } |
855 | | |
856 | 0 | hb_codepoint_t next_value = codepoint + 1; |
857 | 0 | for (unsigned int i=start_page; i<page_map.length && size; i++) |
858 | 0 | { |
859 | 0 | uint32_t base = major_start (page_map.arrayZ[i].major); |
860 | 0 | unsigned int n = pages[page_map.arrayZ[i].index].write_inverted (base, start_page_value, out, size, &next_value); |
861 | 0 | out += n; |
862 | 0 | size -= n; |
863 | 0 | start_page_value = 0; |
864 | 0 | } |
865 | 0 | while (next_value < HB_SET_VALUE_INVALID && size) { |
866 | 0 | *out++ = next_value++; |
867 | 0 | size--; |
868 | 0 | } |
869 | 0 | return initial_size - size; |
870 | 0 | } |
871 | | |
872 | 374k | bool has_population () const { return population != UINT_MAX; } |
873 | | unsigned int get_population () const |
874 | 374k | { |
875 | 374k | if (has_population ()) |
876 | 321k | return population; |
877 | | |
878 | 52.8k | unsigned int pop = 0; |
879 | 52.8k | unsigned int count = pages.length; |
880 | 287k | for (unsigned int i = 0; i < count; i++) |
881 | 234k | pop += pages[i].get_population (); |
882 | | |
883 | 52.8k | population = pop; |
884 | 52.8k | return pop; |
885 | 374k | } |
886 | | hb_codepoint_t get_min () const |
887 | 126k | { |
888 | 126k | unsigned count = pages.length; |
889 | 209k | for (unsigned i = 0; i < count; i++) |
890 | 169k | { |
891 | 169k | const auto& map = page_map.arrayZ[i]; |
892 | 169k | const auto& page = pages.arrayZ[map.index]; |
893 | | |
894 | 169k | if (!page.is_empty ()) |
895 | 86.1k | return map.major * page_t::PAGE_BITS + page.get_min (); |
896 | 169k | } |
897 | 40.1k | return INVALID; |
898 | 126k | } |
899 | | hb_codepoint_t get_max () const |
900 | 6.37k | { |
901 | 6.37k | unsigned count = pages.length; |
902 | 6.37k | for (signed i = count - 1; i >= 0; i--) |
903 | 6.02k | { |
904 | 6.02k | const auto& map = page_map.arrayZ[(unsigned) i]; |
905 | 6.02k | const auto& page = pages.arrayZ[map.index]; |
906 | | |
907 | 6.02k | if (!page.is_empty ()) |
908 | 6.02k | return map.major * page_t::PAGE_BITS + page.get_max (); |
909 | 6.02k | } |
910 | 348 | return INVALID; |
911 | 6.37k | } |
912 | | |
913 | | static constexpr hb_codepoint_t INVALID = page_t::INVALID; |
914 | | |
915 | | /* |
916 | | * Iterator implementation. |
917 | | */ |
918 | | struct iter_t : hb_iter_with_fallback_t<iter_t, hb_codepoint_t> |
919 | | { |
920 | | static constexpr bool is_sorted_iterator = true; |
921 | | static constexpr bool has_fast_len = true; |
922 | | iter_t (const hb_bit_set_t &s_ = Null (hb_bit_set_t), |
923 | | bool init = true) : s (&s_), v (INVALID), l(0) |
924 | 0 | { |
925 | 0 | if (init) |
926 | 0 | { |
927 | 0 | l = s->get_population () + 1; |
928 | 0 | __next__ (); |
929 | 0 | } |
930 | 0 | } |
931 | | |
932 | | typedef hb_codepoint_t __item_t__; |
933 | 0 | hb_codepoint_t __item__ () const { return v; } |
934 | 0 | bool __more__ () const { return v != INVALID; } |
935 | 0 | void __next__ () { s->next (&v); if (l) l--; } |
936 | 0 | void __prev__ () { s->previous (&v); } |
937 | 0 | unsigned __len__ () const { return l; } |
938 | 0 | iter_t end () const { return iter_t (*s, false); } |
939 | | bool operator != (const iter_t& o) const |
940 | 0 | { return v != o.v; } |
941 | | |
942 | | protected: |
943 | | const hb_bit_set_t *s; |
944 | | hb_codepoint_t v; |
945 | | unsigned l; |
946 | | }; |
947 | 0 | iter_t iter () const { return iter_t (*this); } |
948 | 0 | operator iter_t () const { return iter (); } |
949 | | |
950 | | protected: |
951 | | |
952 | | page_t *page_for (hb_codepoint_t g, bool insert = false) |
953 | 19.8M | { |
954 | 19.8M | unsigned major = get_major (g); |
955 | | |
956 | | /* The extra page_map length is necessary; can't just rely on vector here, |
957 | | * since the next check would be tricked because a null page also has |
958 | | * major==0, which we can't distinguish from an actually major==0 page... */ |
959 | 19.8M | unsigned i = last_page_lookup; |
960 | 19.8M | if (likely (i < page_map.length)) |
961 | 17.0M | { |
962 | 17.0M | auto &cached_page = page_map.arrayZ[i]; |
963 | 17.0M | if (cached_page.major == major) |
964 | 15.6M | return &pages.arrayZ[cached_page.index]; |
965 | 17.0M | } |
966 | | |
967 | 4.13M | page_map_t map = {major, pages.length}; |
968 | 4.13M | if (!page_map.bfind (map, &i, HB_NOT_FOUND_STORE_CLOSEST)) |
969 | 3.77M | { |
970 | 3.77M | if (!insert) |
971 | 12.7k | return nullptr; |
972 | | |
973 | 3.76M | if (unlikely (!resize (pages.length + 1))) |
974 | 0 | return nullptr; |
975 | | |
976 | 3.76M | pages.arrayZ[map.index].init0 (); |
977 | 3.76M | memmove (page_map.arrayZ + i + 1, |
978 | 3.76M | page_map.arrayZ + i, |
979 | 3.76M | (page_map.length - 1 - i) * page_map.item_size); |
980 | 3.76M | page_map.arrayZ[i] = map; |
981 | 3.76M | } |
982 | | |
983 | 4.12M | last_page_lookup = i; |
984 | 4.12M | return &pages.arrayZ[page_map.arrayZ[i].index]; |
985 | 4.13M | } |
986 | | const page_t *page_for (hb_codepoint_t g) const |
987 | 56.5M | { |
988 | 56.5M | unsigned major = get_major (g); |
989 | | |
990 | | /* The extra page_map length is necessary; can't just rely on vector here, |
991 | | * since the next check would be tricked because a null page also has |
992 | | * major==0, which we can't distinguish from an actually major==0 page... */ |
993 | 56.5M | unsigned i = last_page_lookup; |
994 | 56.5M | if (likely (i < page_map.length)) |
995 | 41.6M | { |
996 | 41.6M | auto &cached_page = page_map.arrayZ[i]; |
997 | 41.6M | if (cached_page.major == major) |
998 | 29.3M | return &pages.arrayZ[cached_page.index]; |
999 | 41.6M | } |
1000 | | |
1001 | 27.2M | page_map_t key = {major}; |
1002 | 27.2M | if (!page_map.bfind (key, &i)) |
1003 | 25.8M | return nullptr; |
1004 | | |
1005 | 1.33M | last_page_lookup = i; |
1006 | 1.33M | return &pages.arrayZ[page_map.arrayZ[i].index]; |
1007 | 27.2M | } |
1008 | | page_t &page_at (unsigned int i) |
1009 | 0 | { |
1010 | 0 | assert (i < page_map.length); |
1011 | 0 | return pages.arrayZ[page_map.arrayZ[i].index]; |
1012 | 0 | } |
1013 | | const page_t &page_at (unsigned int i) const |
1014 | 5.40M | { |
1015 | 5.40M | assert (i < page_map.length); |
1016 | 5.40M | return pages.arrayZ[page_map.arrayZ[i].index]; |
1017 | 5.40M | } |
1018 | 97.1M | unsigned int get_major (hb_codepoint_t g) const { return g >> page_t::PAGE_BITS_LOG_2; } |
1019 | 0 | unsigned int page_remainder (hb_codepoint_t g) const { return g & page_t::PAGE_BITMASK; } |
1020 | 7.42M | hb_codepoint_t major_start (unsigned int major) const { return major << page_t::PAGE_BITS_LOG_2; } |
1021 | | }; |
1022 | | |
1023 | | |
1024 | | #endif /* HB_BIT_SET_HH */ |