Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
bb38d0f6
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看板
提交
bb38d0f6
编写于
9月 11, 2018
作者:
M
Michiharu Ariza
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Implement parse_bcd
上级
45e564a5
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
44 addition
and
15 deletion
+44
-15
src/hb-cff-interp-common.hh
src/hb-cff-interp-common.hh
+0
-15
src/hb-cff-interp-dict-common.hh
src/hb-cff-interp-dict-common.hh
+44
-0
未找到文件。
src/hb-cff-interp-common.hh
浏览文件 @
bb38d0f6
...
...
@@ -371,21 +371,6 @@ struct SubByteStr
unsigned
int
offset
;
/* beginning of the sub-string within str */
};
inline
float
parse_bcd
(
SubByteStr
&
substr
,
float
&
v
)
{
// XXX: TODO
v
=
0
;
for
(;;)
{
if
(
!
substr
.
avail
())
return
false
;
unsigned
char
byte
=
substr
[
0
];
substr
.
inc
();
if
(((
byte
&
0xF0
)
==
0xF0
)
||
((
byte
&
0x0F
)
==
0x0F
))
break
;
}
return
true
;
}
/* stack */
template
<
typename
ELEM
,
int
LIMIT
>
struct
Stack
...
...
src/hb-cff-interp-dict-common.hh
浏览文件 @
bb38d0f6
...
...
@@ -26,6 +26,7 @@
#ifndef HB_CFF_INTERP_DICT_COMMON_HH
#define HB_CFF_INTERP_DICT_COMMON_HH
#include "hb-common.h"
#include "hb-cff-interp-common.hh"
namespace
CFF
{
...
...
@@ -150,6 +151,49 @@ struct DictOpSet : OpSet<Number>
return
true
;
}
static
inline
bool
parse_bcd
(
SubByteStr
&
substr
,
float
&
v
)
{
v
=
0.0
f
;
hb_vector_t
<
char
,
64
>
str
;
str
.
init
();
str
.
push
(
'x'
);
/* hack: disguise a varation option string */
str
.
push
(
'='
);
unsigned
char
byte
=
0
;
for
(
unsigned
int
i
=
0
;
substr
.
avail
();
i
++
)
{
char
c
;
if
((
i
&
1
)
==
0
)
{
byte
=
substr
[
0
];
substr
.
inc
();
c
=
(
byte
&
0xF0
)
>>
4
;
}
else
c
=
byte
&
0x0F
;
if
(
c
==
0x0F
)
{
hb_variation_t
var
;
if
(
unlikely
(
!
hb_variation_from_string
(
&
str
[
0
],
str
.
len
,
&
var
)))
{
str
.
fini
();
return
false
;
}
v
=
var
.
value
;
str
.
fini
();
return
true
;
}
else
if
(
c
==
0x0D
)
return
false
;
str
.
push
(
"0123456789.EE - "
[
c
]);
if
(
c
==
0x0C
)
str
.
push
(
'-'
);
}
str
.
fini
();
return
false
;
}
static
inline
bool
is_hint_op
(
OpCode
op
)
{
switch
(
op
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录