Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
b961518b
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看板
提交
b961518b
编写于
5月 10, 2010
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Simplify array access
上级
54842374
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
25 addition
and
34 deletion
+25
-34
src/hb-open-type-private.hh
src/hb-open-type-private.hh
+10
-19
src/hb-ot-layout-common-private.hh
src/hb-ot-layout-common-private.hh
+4
-4
src/hb-ot-layout-gsub-private.hh
src/hb-ot-layout-gsub-private.hh
+3
-3
src/hb-ot-layout-gsubgpos-private.hh
src/hb-ot-layout-gsubgpos-private.hh
+8
-8
未找到文件。
src/hb-open-type-private.hh
浏览文件 @
b961518b
...
...
@@ -89,7 +89,6 @@ inline Type& StructAfter(TObject &X)
#define DEFINE_SIZE_STATIC(size) \
_DEFINE_SIZE_ASSERTION (size); \
static inline unsigned int get_size (void) { return (size); } \
static const unsigned int static_size = (size); \
static const unsigned int min_size = (size)
...
...
@@ -515,9 +514,6 @@ struct LongOffsetTo : GenericOffsetTo<LongOffset, Type> {};
template
<
typename
LenType
,
typename
Type
>
struct
GenericArrayOf
{
const
Type
*
array
(
void
)
const
{
return
&
StructAfter
<
Type
>
(
len
);
}
Type
*
array
(
void
)
{
return
&
StructAfter
<
Type
>
(
len
);
}
const
Type
*
sub_array
(
unsigned
int
start_offset
,
unsigned
int
*
pcount
/* IN/OUT */
)
const
{
unsigned
int
count
=
len
;
...
...
@@ -527,13 +523,13 @@ struct GenericArrayOf
count
-=
start_offset
;
count
=
MIN
(
count
,
*
pcount
);
*
pcount
=
count
;
return
array
()
+
start_offset
;
return
array
+
start_offset
;
}
inline
const
Type
&
operator
[]
(
unsigned
int
i
)
const
{
if
(
unlikely
(
i
>=
len
))
return
Null
(
Type
);
return
array
()
[
i
];
return
array
[
i
];
}
inline
unsigned
int
get_size
()
const
{
return
len
.
static_size
+
len
*
Type
::
static_size
;
}
...
...
@@ -551,7 +547,7 @@ struct GenericArrayOf
* other structs. */
unsigned
int
count
=
len
;
for
(
unsigned
int
i
=
0
;
i
<
count
;
i
++
)
if
(
array
()
[
i
].
sanitize
(
context
))
if
(
array
[
i
].
sanitize
(
context
))
return
false
;
return
true
;
}
...
...
@@ -560,7 +556,7 @@ struct GenericArrayOf
if
(
!
likely
(
sanitize_shallow
(
context
)))
return
false
;
unsigned
int
count
=
len
;
for
(
unsigned
int
i
=
0
;
i
<
count
;
i
++
)
if
(
!
array
()
[
i
].
sanitize
(
context
,
base
))
if
(
!
array
[
i
].
sanitize
(
context
,
base
))
return
false
;
return
true
;
}
...
...
@@ -570,7 +566,7 @@ struct GenericArrayOf
if
(
!
likely
(
sanitize_shallow
(
context
)))
return
false
;
unsigned
int
count
=
len
;
for
(
unsigned
int
i
=
0
;
i
<
count
;
i
++
)
if
(
!
array
()
[
i
].
sanitize
(
context
,
base
,
user_data
))
if
(
!
array
[
i
].
sanitize
(
context
,
base
,
user_data
))
return
false
;
return
true
;
}
...
...
@@ -584,8 +580,7 @@ struct GenericArrayOf
public:
LenType
len
;
private:
Type
arrayX
[
VAR
];
Type
array
[
VAR
];
public:
DEFINE_SIZE_VAR
(
sizeof
(
LenType
),
Type
);
};
...
...
@@ -617,7 +612,7 @@ struct OffsetListOf : OffsetArrayOf<Type>
inline
const
Type
&
operator
[]
(
unsigned
int
i
)
const
{
if
(
unlikely
(
i
>=
this
->
len
))
return
Null
(
Type
);
return
this
+
this
->
array
()
[
i
];
return
this
+
this
->
array
[
i
];
}
inline
bool
sanitize
(
hb_sanitize_context_t
*
context
)
{
...
...
@@ -637,13 +632,10 @@ struct OffsetListOf : OffsetArrayOf<Type>
template
<
typename
Type
>
struct
HeadlessArrayOf
{
const
Type
*
array
(
void
)
const
{
return
&
StructAfter
<
Type
>
(
len
);
}
Type
*
array
(
void
)
{
return
&
StructAfter
<
Type
>
(
len
);
}
inline
const
Type
&
operator
[]
(
unsigned
int
i
)
const
{
if
(
unlikely
(
i
>=
len
||
!
i
))
return
Null
(
Type
);
return
array
()
[
i
-
1
];
return
array
[
i
-
1
];
}
inline
unsigned
int
get_size
()
const
{
return
len
.
static_size
+
(
len
?
len
-
1
:
0
)
*
Type
::
static_size
;
}
...
...
@@ -665,7 +657,7 @@ struct HeadlessArrayOf
* to do have a simple sanitize(), ie. they do not reference
* other structs. */
unsigned
int
count
=
len
?
len
-
1
:
0
;
Type
*
a
=
array
()
;
Type
*
a
=
array
;
for
(
unsigned
int
i
=
0
;
i
<
count
;
i
++
)
if
(
!
a
[
i
].
sanitize
(
context
))
return
false
;
...
...
@@ -673,8 +665,7 @@ struct HeadlessArrayOf
}
USHORT
len
;
private:
Type
arrayX
[
VAR
];
Type
array
[
VAR
];
public:
DEFINE_SIZE_VAR
(
sizeof
(
USHORT
),
Type
);
};
...
...
src/hb-ot-layout-common-private.hh
浏览文件 @
b961518b
...
...
@@ -89,7 +89,7 @@ struct RecordArrayOf : ArrayOf<Record<Type> > {
Tag
t
;
t
.
set
(
tag
);
/* TODO: bsearch (need to sort in sanitize) */
const
Record
<
Type
>
*
a
=
this
->
array
()
;
const
Record
<
Type
>
*
a
=
this
->
array
;
unsigned
int
count
=
this
->
len
;
for
(
unsigned
int
i
=
0
;
i
<
count
;
i
++
)
{
...
...
@@ -123,7 +123,7 @@ struct IndexArray : ArrayOf<USHORT>
{
if
(
unlikely
(
i
>=
this
->
len
))
return
NO_INDEX
;
return
this
->
array
()
[
i
];
return
this
->
array
[
i
];
}
inline
unsigned
int
get_indexes
(
unsigned
int
start_offset
,
unsigned
int
*
_count
/* IN/OUT */
,
...
...
@@ -600,8 +600,8 @@ struct Device
inline
unsigned
int
get_size
()
const
{
unsigned
int
f
=
deltaFormat
;
if
(
unlikely
(
f
<
1
||
f
>
3
||
startSize
>
endSize
))
return
3
*
USHORT
::
get_size
()
;
return
USHORT
::
get_size
()
*
(
4
+
((
endSize
-
startSize
)
>>
(
4
-
f
)));
if
(
unlikely
(
f
<
1
||
f
>
3
||
startSize
>
endSize
))
return
3
*
USHORT
::
static_size
;
return
USHORT
::
static_size
*
(
4
+
((
endSize
-
startSize
)
>>
(
4
-
f
)));
}
inline
bool
sanitize
(
hb_sanitize_context_t
*
context
)
{
...
...
src/hb-ot-layout-gsub-private.hh
浏览文件 @
b961518b
...
...
@@ -167,7 +167,7 @@ struct Sequence
return
false
;
_hb_buffer_add_output_glyphs_be16
(
context
->
buffer
,
1
,
substitute
.
len
,
(
const
uint16_t
*
)
substitute
.
array
()
,
substitute
.
len
,
(
const
uint16_t
*
)
substitute
.
array
,
0xFFFF
,
0xFFFF
);
/* This is a guess only ... */
...
...
@@ -616,10 +616,10 @@ struct ReverseChainSingleSubstFormat1
const
ArrayOf
<
GlyphID
>
&
substitute
=
StructAfter
<
ArrayOf
<
GlyphID
>
>
(
lookahead
);
if
(
match_backtrack
(
context
,
backtrack
.
len
,
(
USHORT
*
)
backtrack
.
array
()
,
backtrack
.
len
,
(
USHORT
*
)
backtrack
.
array
,
match_coverage
,
this
)
&&
match_lookahead
(
context
,
lookahead
.
len
,
(
USHORT
*
)
lookahead
.
array
()
,
lookahead
.
len
,
(
USHORT
*
)
lookahead
.
array
,
match_coverage
,
this
,
1
))
{
...
...
src/hb-ot-layout-gsubgpos-private.hh
浏览文件 @
b961518b
...
...
@@ -560,10 +560,10 @@ struct ChainRule
const
ArrayOf
<
USHORT
>
&
lookahead
=
StructAfter
<
ArrayOf
<
USHORT
>
>
(
input
);
const
ArrayOf
<
LookupRecord
>
&
lookup
=
StructAfter
<
ArrayOf
<
LookupRecord
>
>
(
lookahead
);
return
chain_context_lookup
(
context
,
backtrack
.
len
,
backtrack
.
array
()
,
input
.
len
,
input
.
array
()
,
lookahead
.
len
,
lookahead
.
array
()
,
lookup
.
len
,
lookup
.
array
()
,
backtrack
.
len
,
backtrack
.
array
,
input
.
len
,
input
.
array
,
lookahead
.
len
,
lookahead
.
array
,
lookup
.
len
,
lookup
.
array
,
lookup_context
);
return
false
;
}
...
...
@@ -749,10 +749,10 @@ struct ChainContextFormat3
{
this
,
this
,
this
}
};
return
chain_context_lookup
(
context
,
backtrack
.
len
,
(
const
USHORT
*
)
backtrack
.
array
()
,
input
.
len
,
(
const
USHORT
*
)
input
.
array
()
+
1
,
lookahead
.
len
,
(
const
USHORT
*
)
lookahead
.
array
()
,
lookup
.
len
,
lookup
.
array
()
,
backtrack
.
len
,
(
const
USHORT
*
)
backtrack
.
array
,
input
.
len
,
(
const
USHORT
*
)
input
.
array
+
1
,
lookahead
.
len
,
(
const
USHORT
*
)
lookahead
.
array
,
lookup
.
len
,
lookup
.
array
,
lookup_context
);
return
false
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录