Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
c918a670
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
1 年多 前同步成功
通知
0
Star
18
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Harfbuzz
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
c918a670
编写于
4月 16, 2019
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Properly prioritize hb_hash()
上级
75fd845a
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
23 addition
and
23 deletion
+23
-23
src/hb-algs.hh
src/hb-algs.hh
+23
-23
未找到文件。
src/hb-algs.hh
浏览文件 @
c918a670
...
...
@@ -48,27 +48,22 @@ struct
struct
{
/* Don't know how to set priority of following. Doesn't work right now. */
//template <typename T>
//uint32_t operator () (const T& v) const
//{ return hb_deref_pointer (v).hash (); }
/* Instead, the following ugly soution: */
template
<
typename
T
,
hb_enable_if
(
!
hb_is_integer
(
hb_remove_const
<
hb_remove_reference
<
T
>
>
)
&&
!
hb_is_pointer
(
T
))
>
uint32_t
operator
()
(
T
&&
v
)
const
{
return
v
.
hash
();
}
template
<
typename
T
>
uint32_t
operator
()
(
const
T
*
v
)
const
{
return
operator
()
(
*
v
);
}
private:
template
<
typename
T
>
auto
impl
(
const
T
&
v
,
hb_priority
<
1
>
)
const
HB_AUTO_RETURN_EXPR
(
hb_deref_pointer
(
v
).
hash
())
template
<
typename
T
,
hb_enable_if
(
hb_is_integer
(
T
))>
uint32_t
operator
()
(
T
v
)
const
{
hb_enable_if
(
hb_is_integer
(
T
))>
auto
impl
(
const
T
&
v
,
hb_priority
<
0
>
)
const
HB_AUTO_RETURN_EXPR
(
/* Knuth's multiplicative method: */
return
(
uint32_t
)
v
*
2654435761u
;
}
(
uint32_t
)
v
*
2654435761u
)
public:
template
<
typename
T
>
auto
operator
()
(
const
T
&
v
)
const
HB_AUTO_RETURN_EXPR
((
uint32_t
)
impl
(
v
,
hb_prioritize
))
}
HB_FUNCOBJ
(
hb_hash
);
struct
...
...
@@ -96,7 +91,8 @@ struct
public:
template
<
typename
Appl
,
typename
Val
>
auto
operator
()
(
Appl
&&
a
,
Val
&&
v
)
const
HB_AUTO_RETURN_EXPR
(
operator
()
(
Appl
&&
a
,
Val
&&
v
)
const
HB_AUTO_RETURN_EXPR
(
impl
(
hb_forward
<
Appl
>
(
a
),
hb_forward
<
Val
>
(
v
),
hb_prioritize
)
...
...
@@ -114,7 +110,8 @@ struct
impl
(
Pred
&&
p
,
Val
&&
v
,
hb_priority
<
1
>
)
const
HB_AUTO_RETURN_EXPR
(
p
.
has
(
v
))
template
<
typename
Pred
,
typename
Val
>
auto
impl
(
Pred
&&
p
,
Val
&&
v
,
hb_priority
<
0
>
)
const
HB_AUTO_RETURN_EXPR
(
impl
(
Pred
&&
p
,
Val
&&
v
,
hb_priority
<
0
>
)
const
HB_AUTO_RETURN_EXPR
(
hb_invoke
(
hb_forward
<
Pred
>
(
p
),
hb_forward
<
Val
>
(
v
))
)
...
...
@@ -122,7 +119,8 @@ struct
public:
template
<
typename
Pred
,
typename
Val
>
auto
operator
()
(
Pred
&&
p
,
Val
&&
v
)
const
HB_AUTO_RETURN_EXPR
(
operator
()
(
Pred
&&
p
,
Val
&&
v
)
const
HB_AUTO_RETURN_EXPR
(
(
bool
)
impl
(
hb_forward
<
Pred
>
(
p
),
hb_forward
<
Val
>
(
v
),
hb_prioritize
)
...
...
@@ -140,7 +138,8 @@ struct
impl
(
Proj
&&
f
,
Val
&&
v
,
hb_priority
<
1
>
)
const
HB_AUTO_RETURN_EXPR
(
f
.
get
(
hb_forward
<
Val
>
(
v
)))
template
<
typename
Proj
,
typename
Val
>
auto
impl
(
Proj
&&
f
,
Val
&&
v
,
hb_priority
<
0
>
)
const
HB_AUTO_RETURN_EXPR
(
impl
(
Proj
&&
f
,
Val
&&
v
,
hb_priority
<
0
>
)
const
HB_AUTO_RETURN_EXPR
(
hb_invoke
(
hb_forward
<
Proj
>
(
f
),
hb_forward
<
Val
>
(
v
))
)
...
...
@@ -148,7 +147,8 @@ struct
public:
template
<
typename
Proj
,
typename
Val
>
auto
operator
()
(
Proj
&&
f
,
Val
&&
v
)
const
HB_AUTO_RETURN_EXPR
(
operator
()
(
Proj
&&
f
,
Val
&&
v
)
const
HB_AUTO_RETURN_EXPR
(
impl
(
hb_forward
<
Proj
>
(
f
),
hb_forward
<
Val
>
(
v
),
hb_prioritize
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录