Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
2b737451
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看板
提交
2b737451
编写于
12月 26, 2006
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Device tables.
上级
eb32e374
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
45 addition
and
4 deletion
+45
-4
src/harfbuzz-ng.cc
src/harfbuzz-ng.cc
+45
-4
未找到文件。
src/harfbuzz-ng.cc
浏览文件 @
2b737451
...
...
@@ -82,7 +82,7 @@ typedef uint32_t hb_tag_t;
#define DEFINE_OFFSET_INDEX_OPERATOR(const, Type, array, num) \
inline const Type& operator[] (unsigned int i) const { \
assert (i < num); \
assert (array[i]); \
assert (array[i]);
/* TODO: should just skip them */
\
return *(const Type *)((const char*)this + array[i]); \
}
...
...
@@ -93,7 +93,7 @@ typedef uint32_t hb_tag_t;
#define DEFINE_RECORD_ACCESSOR(const, Type, array, num) \
inline const Type& operator[] (unsigned int i) const { \
assert (i < num); \
assert (array[i].offset); \
assert (array[i].offset);
/* TODO: should just skip them */
\
return *(const Type *)((const char*)this + array[i].offset); \
} \
inline const Tag& get_tag (unsigned int i) const { \
...
...
@@ -441,7 +441,7 @@ struct Lookup {
};
/*
* Coverage
* Coverage
Table
*/
struct
CoverageFormat1
{
...
...
@@ -521,7 +521,7 @@ struct Coverage {
};
/*
* Class Definition
* Class Definition
Table
*/
struct
ClassDefFormat1
{
...
...
@@ -597,7 +597,48 @@ struct ClassDef {
USHORT
classFormat
;
/* Format identifier */
};
/*
* Device Tables
*/
struct
Device
{
inline
unsigned
int
get_size
(
void
)
const
{
int
count
=
endSize
-
startSize
+
1
;
if
(
count
<
0
)
count
=
0
;
switch
(
deltaFormat
)
{
case
1
:
return
sizeof
(
Device
)
+
sizeof
(
USHORT
)
*
((
count
+
7
)
/
8
);
case
2
:
return
sizeof
(
Device
)
+
sizeof
(
USHORT
)
*
((
count
+
3
)
/
4
);
case
3
:
return
sizeof
(
Device
)
+
sizeof
(
USHORT
)
*
((
count
+
1
)
/
2
);
default:
return
sizeof
(
Device
);
}
}
inline
int
get_delta
(
int
ppem_size
)
{
if
(
ppem_size
>=
startSize
&&
ppem_size
<=
endSize
&&
deltaFormat
>=
1
&&
deltaFormat
<=
3
)
{
int
s
=
ppem_size
-
startSize
;
int
f
=
deltaFormat
;
uint16_t
byte
=
deltaValue
[
s
>>
(
4
-
f
)];
uint16_t
bits
=
byte
>>
(
16
-
(((
s
&
((
1
<<
(
4
-
f
))
-
1
))
+
1
)
<<
f
));
uint16_t
mask
=
0xFFFF
>>
(
16
-
(
1
<<
f
));
int
delta
=
bits
&
mask
;
if
(
delta
>=
((
mask
+
1
)
>>
1
))
delta
-=
mask
+
1
;
return
delta
;
}
return
0
;
}
USHORT
startSize
;
/* Smallest size to correct--in ppem */
USHORT
endSize
;
/* Largest size to correct--in ppem */
USHORT
deltaFormat
;
/* Format of DeltaValue array data: 1, 2, or 3 */
USHORT
deltaValue
[];
/* Array of compressed data */
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录