2012-04-24 04:41:09 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2012 Google, Inc.
|
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
* Google Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HB_SET_PRIVATE_HH
|
|
|
|
#define HB_SET_PRIVATE_HH
|
|
|
|
|
|
|
|
#include "hb-private.hh"
|
|
|
|
#include "hb-object-private.hh"
|
|
|
|
|
|
|
|
|
2013-04-17 23:26:56 +02:00
|
|
|
/*
|
|
|
|
* The set digests here implement various "filters" that support
|
|
|
|
* "approximate member query". Conceptually these are like Bloom
|
|
|
|
* Filter and Quotient Filter, however, much smaller, faster, and
|
|
|
|
* designed to fit the requirements of our uses for glyph coverage
|
2015-07-25 17:36:46 +02:00
|
|
|
* queries.
|
|
|
|
*
|
|
|
|
* Our filters are highly accurate if the lookup covers fairly local
|
|
|
|
* set of glyphs, but fully flooded and ineffective if coverage is
|
|
|
|
* all over the place.
|
|
|
|
*
|
|
|
|
* The frozen-set can be used instead of a digest, to trade more
|
|
|
|
* memory for 100% accuracy, but in practice, that doesn't look like
|
|
|
|
* an attractive trade-off.
|
2013-04-17 23:26:56 +02:00
|
|
|
*/
|
|
|
|
|
2013-04-17 23:45:39 +02:00
|
|
|
template <typename mask_t, unsigned int shift>
|
2012-08-02 03:06:27 +02:00
|
|
|
struct hb_set_digest_lowest_bits_t
|
|
|
|
{
|
|
|
|
ASSERT_POD ();
|
|
|
|
|
2013-05-02 19:59:46 +02:00
|
|
|
static const unsigned int mask_bytes = sizeof (mask_t);
|
|
|
|
static const unsigned int mask_bits = sizeof (mask_t) * 8;
|
2013-04-17 23:45:39 +02:00
|
|
|
static const unsigned int num_bits = 0
|
2013-05-02 19:59:46 +02:00
|
|
|
+ (mask_bytes >= 1 ? 3 : 0)
|
|
|
|
+ (mask_bytes >= 2 ? 1 : 0)
|
|
|
|
+ (mask_bytes >= 4 ? 1 : 0)
|
|
|
|
+ (mask_bytes >= 8 ? 1 : 0)
|
|
|
|
+ (mask_bytes >= 16? 1 : 0)
|
2013-04-17 23:45:39 +02:00
|
|
|
+ 0;
|
|
|
|
|
|
|
|
ASSERT_STATIC (shift < sizeof (hb_codepoint_t) * 8);
|
|
|
|
ASSERT_STATIC (shift + num_bits <= sizeof (hb_codepoint_t) * 8);
|
2012-08-02 03:06:27 +02:00
|
|
|
|
|
|
|
inline void init (void) {
|
|
|
|
mask = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void add (hb_codepoint_t g) {
|
|
|
|
mask |= mask_for (g);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void add_range (hb_codepoint_t a, hb_codepoint_t b) {
|
2013-05-02 19:59:46 +02:00
|
|
|
if ((b >> shift) - (a >> shift) >= mask_bits - 1)
|
2012-08-05 03:04:57 +02:00
|
|
|
mask = (mask_t) -1;
|
|
|
|
else {
|
|
|
|
mask_t ma = mask_for (a);
|
|
|
|
mask_t mb = mask_for (b);
|
|
|
|
mask |= mb + (mb - ma) - (mb < ma);
|
|
|
|
}
|
2012-08-02 03:06:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool may_have (hb_codepoint_t g) const {
|
|
|
|
return !!(mask & mask_for (g));
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2013-04-18 01:01:49 +02:00
|
|
|
static inline mask_t mask_for (hb_codepoint_t g) {
|
2013-05-02 19:59:46 +02:00
|
|
|
return ((mask_t) 1) << ((g >> shift) & (mask_bits - 1));
|
2013-04-17 23:45:39 +02:00
|
|
|
}
|
2012-08-02 03:06:27 +02:00
|
|
|
mask_t mask;
|
|
|
|
};
|
|
|
|
|
2013-04-17 05:21:38 +02:00
|
|
|
template <typename head_t, typename tail_t>
|
|
|
|
struct hb_set_digest_combiner_t
|
2012-08-02 03:06:27 +02:00
|
|
|
{
|
|
|
|
ASSERT_POD ();
|
|
|
|
|
|
|
|
inline void init (void) {
|
2013-04-17 05:21:38 +02:00
|
|
|
head.init ();
|
|
|
|
tail.init ();
|
2012-08-02 03:06:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void add (hb_codepoint_t g) {
|
2013-04-17 05:21:38 +02:00
|
|
|
head.add (g);
|
|
|
|
tail.add (g);
|
2012-08-02 03:06:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void add_range (hb_codepoint_t a, hb_codepoint_t b) {
|
2013-04-17 05:21:38 +02:00
|
|
|
head.add_range (a, b);
|
|
|
|
tail.add_range (a, b);
|
2012-08-02 03:06:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool may_have (hb_codepoint_t g) const {
|
2013-04-17 05:21:38 +02:00
|
|
|
return head.may_have (g) && tail.may_have (g);
|
2012-08-02 03:06:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2013-04-17 05:21:38 +02:00
|
|
|
head_t head;
|
|
|
|
tail_t tail;
|
2012-08-02 03:06:27 +02:00
|
|
|
};
|
|
|
|
|
2013-04-18 00:19:21 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* hb_set_digest_t
|
|
|
|
*
|
|
|
|
* This is a combination of digests that performs "best".
|
|
|
|
* There is not much science to this: it's a result of intuition
|
|
|
|
* and testing.
|
|
|
|
*/
|
|
|
|
typedef hb_set_digest_combiner_t
|
|
|
|
<
|
|
|
|
hb_set_digest_lowest_bits_t<unsigned long, 4>,
|
|
|
|
hb_set_digest_combiner_t
|
|
|
|
<
|
|
|
|
hb_set_digest_lowest_bits_t<unsigned long, 0>,
|
|
|
|
hb_set_digest_lowest_bits_t<unsigned long, 9>
|
|
|
|
>
|
|
|
|
> hb_set_digest_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* hb_set_t
|
|
|
|
*/
|
2013-04-17 05:21:38 +02:00
|
|
|
|
2012-08-02 03:06:27 +02:00
|
|
|
|
2012-05-25 20:17:54 +02:00
|
|
|
/* TODO Make this faster and memmory efficient. */
|
2012-04-24 04:41:09 +02:00
|
|
|
|
2012-06-16 21:21:55 +02:00
|
|
|
struct hb_set_t
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
2015-01-29 06:46:07 +01:00
|
|
|
friend struct hb_frozen_set_t;
|
|
|
|
|
2012-06-06 09:30:09 +02:00
|
|
|
hb_object_header_t header;
|
|
|
|
ASSERT_POD ();
|
2013-01-03 05:50:36 +01:00
|
|
|
bool in_error;
|
2012-06-06 09:30:09 +02:00
|
|
|
|
2012-04-24 22:56:37 +02:00
|
|
|
inline void init (void) {
|
2014-08-14 18:57:02 +02:00
|
|
|
hb_object_init (this);
|
2012-04-24 22:56:37 +02:00
|
|
|
clear ();
|
|
|
|
}
|
2012-04-25 06:14:46 +02:00
|
|
|
inline void fini (void) {
|
|
|
|
}
|
2012-04-24 04:41:09 +02:00
|
|
|
inline void clear (void) {
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (hb_object_is_inert (this)))
|
|
|
|
return;
|
|
|
|
in_error = false;
|
2012-04-24 04:41:09 +02:00
|
|
|
memset (elts, 0, sizeof elts);
|
|
|
|
}
|
2012-11-16 01:15:42 +01:00
|
|
|
inline bool is_empty (void) const {
|
2012-04-24 20:21:15 +02:00
|
|
|
for (unsigned int i = 0; i < ARRAY_LENGTH (elts); i++)
|
|
|
|
if (elts[i])
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
2012-04-24 05:03:12 +02:00
|
|
|
inline void add (hb_codepoint_t g)
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (in_error)) return;
|
2013-09-06 21:29:22 +02:00
|
|
|
if (unlikely (g == INVALID)) return;
|
2012-04-24 05:03:12 +02:00
|
|
|
if (unlikely (g > MAX_G)) return;
|
|
|
|
elt (g) |= mask (g);
|
2012-04-24 04:41:09 +02:00
|
|
|
}
|
2012-06-09 08:02:46 +02:00
|
|
|
inline void add_range (hb_codepoint_t a, hb_codepoint_t b)
|
|
|
|
{
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (in_error)) return;
|
2012-11-16 01:15:42 +01:00
|
|
|
/* TODO Speedup */
|
2012-06-09 08:02:46 +02:00
|
|
|
for (unsigned int i = a; i < b + 1; i++)
|
|
|
|
add (i);
|
|
|
|
}
|
2012-04-24 05:03:12 +02:00
|
|
|
inline void del (hb_codepoint_t g)
|
2012-04-24 04:41:09 +02:00
|
|
|
{
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (in_error)) return;
|
2012-04-24 05:03:12 +02:00
|
|
|
if (unlikely (g > MAX_G)) return;
|
|
|
|
elt (g) &= ~mask (g);
|
2012-04-24 04:41:09 +02:00
|
|
|
}
|
2012-11-16 01:15:42 +01:00
|
|
|
inline void del_range (hb_codepoint_t a, hb_codepoint_t b)
|
|
|
|
{
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (in_error)) return;
|
2012-11-16 01:15:42 +01:00
|
|
|
/* TODO Speedup */
|
|
|
|
for (unsigned int i = a; i < b + 1; i++)
|
|
|
|
del (i);
|
|
|
|
}
|
2012-04-24 04:41:09 +02:00
|
|
|
inline bool has (hb_codepoint_t g) const
|
|
|
|
{
|
|
|
|
if (unlikely (g > MAX_G)) return false;
|
|
|
|
return !!(elt (g) & mask (g));
|
|
|
|
}
|
|
|
|
inline bool intersects (hb_codepoint_t first,
|
|
|
|
hb_codepoint_t last) const
|
|
|
|
{
|
|
|
|
if (unlikely (first > MAX_G)) return false;
|
|
|
|
if (unlikely (last > MAX_G)) last = MAX_G;
|
|
|
|
unsigned int end = last + 1;
|
|
|
|
for (hb_codepoint_t i = first; i < end; i++)
|
|
|
|
if (has (i))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
2012-11-16 01:15:42 +01:00
|
|
|
inline bool is_equal (const hb_set_t *other) const
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < ELTS; i++)
|
|
|
|
if (elts[i] != other->elts[i])
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
inline void set (const hb_set_t *other)
|
|
|
|
{
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (in_error)) return;
|
2012-04-24 20:21:15 +02:00
|
|
|
for (unsigned int i = 0; i < ELTS; i++)
|
|
|
|
elts[i] = other->elts[i];
|
|
|
|
}
|
|
|
|
inline void union_ (const hb_set_t *other)
|
|
|
|
{
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (in_error)) return;
|
2012-04-24 20:21:15 +02:00
|
|
|
for (unsigned int i = 0; i < ELTS; i++)
|
|
|
|
elts[i] |= other->elts[i];
|
|
|
|
}
|
|
|
|
inline void intersect (const hb_set_t *other)
|
|
|
|
{
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (in_error)) return;
|
2012-04-24 20:21:15 +02:00
|
|
|
for (unsigned int i = 0; i < ELTS; i++)
|
|
|
|
elts[i] &= other->elts[i];
|
|
|
|
}
|
|
|
|
inline void subtract (const hb_set_t *other)
|
|
|
|
{
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (in_error)) return;
|
2012-04-24 20:21:15 +02:00
|
|
|
for (unsigned int i = 0; i < ELTS; i++)
|
|
|
|
elts[i] &= ~other->elts[i];
|
|
|
|
}
|
2012-05-25 19:48:00 +02:00
|
|
|
inline void symmetric_difference (const hb_set_t *other)
|
|
|
|
{
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (in_error)) return;
|
2012-05-25 19:48:00 +02:00
|
|
|
for (unsigned int i = 0; i < ELTS; i++)
|
|
|
|
elts[i] ^= other->elts[i];
|
|
|
|
}
|
2013-01-03 05:50:36 +01:00
|
|
|
inline void invert (void)
|
|
|
|
{
|
2013-01-03 06:02:59 +01:00
|
|
|
if (unlikely (in_error)) return;
|
2013-01-03 05:50:36 +01:00
|
|
|
for (unsigned int i = 0; i < ELTS; i++)
|
|
|
|
elts[i] = ~elts[i];
|
|
|
|
}
|
2012-11-16 01:15:42 +01:00
|
|
|
inline bool next (hb_codepoint_t *codepoint) const
|
2012-05-25 20:17:54 +02:00
|
|
|
{
|
2013-09-06 21:29:22 +02:00
|
|
|
if (unlikely (*codepoint == INVALID)) {
|
2012-05-25 20:17:54 +02:00
|
|
|
hb_codepoint_t i = get_min ();
|
2013-09-06 21:29:22 +02:00
|
|
|
if (i != INVALID) {
|
2012-05-25 20:17:54 +02:00
|
|
|
*codepoint = i;
|
|
|
|
return true;
|
2013-09-06 21:29:22 +02:00
|
|
|
} else {
|
|
|
|
*codepoint = INVALID;
|
2012-05-25 20:17:54 +02:00
|
|
|
return false;
|
2013-09-06 21:29:22 +02:00
|
|
|
}
|
2012-05-25 20:17:54 +02:00
|
|
|
}
|
|
|
|
for (hb_codepoint_t i = *codepoint + 1; i < MAX_G + 1; i++)
|
|
|
|
if (has (i)) {
|
|
|
|
*codepoint = i;
|
|
|
|
return true;
|
|
|
|
}
|
2013-09-06 21:29:22 +02:00
|
|
|
*codepoint = INVALID;
|
2012-05-25 20:17:54 +02:00
|
|
|
return false;
|
|
|
|
}
|
2012-11-16 01:15:42 +01:00
|
|
|
inline bool next_range (hb_codepoint_t *first, hb_codepoint_t *last) const
|
|
|
|
{
|
|
|
|
hb_codepoint_t i;
|
|
|
|
|
|
|
|
i = *last;
|
|
|
|
if (!next (&i))
|
2013-09-06 21:29:22 +02:00
|
|
|
{
|
|
|
|
*last = *first = INVALID;
|
2012-11-16 01:15:42 +01:00
|
|
|
return false;
|
2013-09-06 21:29:22 +02:00
|
|
|
}
|
2012-11-16 01:15:42 +01:00
|
|
|
|
|
|
|
*last = *first = i;
|
|
|
|
while (next (&i) && i == *last + 1)
|
|
|
|
(*last)++;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned int get_population (void) const
|
|
|
|
{
|
|
|
|
unsigned int count = 0;
|
|
|
|
for (unsigned int i = 0; i < ELTS; i++)
|
|
|
|
count += _hb_popcount32 (elts[i]);
|
|
|
|
return count;
|
|
|
|
}
|
2012-05-18 02:55:12 +02:00
|
|
|
inline hb_codepoint_t get_min (void) const
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < ELTS; i++)
|
|
|
|
if (elts[i])
|
2013-05-14 21:30:55 +02:00
|
|
|
for (unsigned int j = 0; j < BITS; j++)
|
2016-08-09 02:24:04 +02:00
|
|
|
if (elts[i] & (1u << j))
|
2012-04-24 20:21:15 +02:00
|
|
|
return i * BITS + j;
|
2013-09-06 21:29:22 +02:00
|
|
|
return INVALID;
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
2012-05-18 02:55:12 +02:00
|
|
|
inline hb_codepoint_t get_max (void) const
|
2012-04-24 20:21:15 +02:00
|
|
|
{
|
|
|
|
for (unsigned int i = ELTS; i; i--)
|
|
|
|
if (elts[i - 1])
|
|
|
|
for (unsigned int j = BITS; j; j--)
|
2016-08-09 02:24:04 +02:00
|
|
|
if (elts[i - 1] & (1u << (j - 1)))
|
2012-04-24 20:21:15 +02:00
|
|
|
return (i - 1) * BITS + (j - 1);
|
2013-09-06 21:29:22 +02:00
|
|
|
return INVALID;
|
2012-04-24 20:21:15 +02:00
|
|
|
}
|
2012-04-24 04:41:09 +02:00
|
|
|
|
|
|
|
typedef uint32_t elt_t;
|
2012-05-25 20:17:54 +02:00
|
|
|
static const unsigned int MAX_G = 65536 - 1; /* XXX Fix this... */
|
2012-04-24 04:41:09 +02:00
|
|
|
static const unsigned int SHIFT = 5;
|
|
|
|
static const unsigned int BITS = (1 << SHIFT);
|
|
|
|
static const unsigned int MASK = BITS - 1;
|
2012-04-24 20:21:15 +02:00
|
|
|
static const unsigned int ELTS = (MAX_G + 1 + (BITS - 1)) / BITS;
|
2013-09-06 21:29:22 +02:00
|
|
|
static const hb_codepoint_t INVALID = HB_SET_VALUE_INVALID;
|
2012-04-24 04:41:09 +02:00
|
|
|
|
|
|
|
elt_t &elt (hb_codepoint_t g) { return elts[g >> SHIFT]; }
|
2015-01-29 06:46:07 +01:00
|
|
|
elt_t const &elt (hb_codepoint_t g) const { return elts[g >> SHIFT]; }
|
2012-04-24 04:41:09 +02:00
|
|
|
elt_t mask (hb_codepoint_t g) const { return elt_t (1) << (g & MASK); }
|
|
|
|
|
2012-05-10 23:09:48 +02:00
|
|
|
elt_t elts[ELTS]; /* XXX 8kb */
|
2012-04-24 04:41:09 +02:00
|
|
|
|
|
|
|
ASSERT_STATIC (sizeof (elt_t) * 8 == BITS);
|
2012-05-05 22:38:20 +02:00
|
|
|
ASSERT_STATIC (sizeof (elt_t) * 8 * ELTS > MAX_G);
|
2012-04-24 04:41:09 +02:00
|
|
|
};
|
|
|
|
|
2015-01-29 06:46:07 +01:00
|
|
|
struct hb_frozen_set_t
|
|
|
|
{
|
|
|
|
static const unsigned int SHIFT = hb_set_t::SHIFT;
|
|
|
|
static const unsigned int BITS = hb_set_t::BITS;
|
|
|
|
static const unsigned int MASK = hb_set_t::MASK;
|
|
|
|
typedef hb_set_t::elt_t elt_t;
|
|
|
|
|
|
|
|
inline void init (const hb_set_t &set)
|
|
|
|
{
|
|
|
|
start = count = 0;
|
|
|
|
elts = NULL;
|
|
|
|
|
|
|
|
unsigned int max = set.get_max ();
|
|
|
|
if (max == set.INVALID)
|
|
|
|
return;
|
|
|
|
unsigned int min = set.get_min ();
|
|
|
|
const elt_t &min_elt = set.elt (min);
|
|
|
|
|
|
|
|
start = min & ~MASK;
|
|
|
|
count = max - start + 1;
|
|
|
|
unsigned int num_elts = (count + BITS - 1) / BITS;
|
|
|
|
unsigned int elts_size = num_elts * sizeof (elt_t);
|
|
|
|
elts = (elt_t *) malloc (elts_size);
|
|
|
|
if (unlikely (!elts))
|
|
|
|
{
|
|
|
|
start = count = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
memcpy (elts, &min_elt, elts_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void fini (void)
|
|
|
|
{
|
|
|
|
if (elts)
|
|
|
|
free (elts);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool has (hb_codepoint_t g) const
|
|
|
|
{
|
|
|
|
/* hb_codepoint_t is unsigned. */
|
|
|
|
g -= start;
|
|
|
|
if (unlikely (g > count)) return false;
|
|
|
|
return !!(elt (g) & mask (g));
|
|
|
|
}
|
|
|
|
|
|
|
|
elt_t const &elt (hb_codepoint_t g) const { return elts[g >> SHIFT]; }
|
|
|
|
elt_t mask (hb_codepoint_t g) const { return elt_t (1) << (g & MASK); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
hb_codepoint_t start, count;
|
|
|
|
elt_t *elts;
|
|
|
|
};
|
2012-04-24 04:41:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* HB_SET_PRIVATE_HH */
|