提交 0d5798a1 编写于 作者: B Behdad Esfahbod

Improve hb_set_digest_t

Make Amiri rendering faster a whopping 45% again!  Speends up pretty
much anything I tested.
上级 c7851efc
...@@ -167,11 +167,29 @@ struct hb_set_digest_combiner_t ...@@ -167,11 +167,29 @@ struct hb_set_digest_combiner_t
tail_t tail; tail_t tail;
}; };
typedef hb_set_digest_combiner_t<
hb_set_digest_common_bits_t, /*
hb_set_digest_lowest_bits_t<unsigned long, 0> * hb_set_digest_t
> *
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
*/
/* TODO Make this faster and memmory efficient. */ /* TODO Make this faster and memmory efficient. */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册