Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Vincent Wei
harfbuzz
Commits
2a4cdfad
Unverified
Commit
2a4cdfad
authored
6 years ago
by
Ebrahim Byagowi
Committed by
GitHub
6 years ago
Browse files
Options
Download
Email Patches
Plain Diff
[aat/kerx] Minor (#1003)
parent
ce17340b
master
arabic-table-x
bot-check
coverity_scan
decltype
inttype-constructors
iter
metrics
rand
rvalue-reference
test-str-literal-constness
typename-outside-template
use-sinhala
var-subset
2.3.1
2.3.0
2.2.0
2.1.3
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
1.9.0
1.8.8
1.8.7
1.8.6
1.8.5
1.8.4
1.8.3
1.8.2
1.8.1
1.8.0
1.7.7
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/hb-aat-layout-kerx-table.hh
+24
-22
src/hb-aat-layout-kerx-table.hh
with
24 additions
and
22 deletions
+24
-22
src/hb-aat-layout-kerx-table.hh
View file @
2a4cdfad
...
...
@@ -30,6 +30,7 @@
#include "hb-open-type-private.hh"
#include "hb-aat-layout-common-private.hh"
#include "hb-aat-layout-ankr-table.hh"
/*
* kerx -- Extended Kerning
...
...
@@ -48,7 +49,7 @@ struct KerxFormat0Records
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
{
TRACE_SANITIZE
(
this
);
return_trace
(
c
->
check_struct
(
this
));
return_trace
(
likely
(
c
->
check_struct
(
this
))
)
;
}
protected:
...
...
@@ -74,8 +75,8 @@ struct KerxSubTableFormat0
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
{
TRACE_SANITIZE
(
this
);
return_trace
(
c
->
check_struct
(
this
)
&&
recordsZ
.
sanitize
(
c
,
nPairs
));
return_trace
(
likely
(
c
->
check_struct
(
this
)
&&
recordsZ
.
sanitize
(
c
,
nPairs
))
)
;
}
protected:
...
...
@@ -98,8 +99,8 @@ struct KerxSubTableFormat1
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
{
TRACE_SANITIZE
(
this
);
return_trace
(
c
->
check_struct
(
this
)
&&
stateHeader
.
sanitize
(
c
));
return_trace
(
likely
(
c
->
check_struct
(
this
)
&&
stateHeader
.
sanitize
(
c
))
)
;
}
protected:
...
...
@@ -117,7 +118,8 @@ struct KerxClassTable
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
{
TRACE_SANITIZE
(
this
);
return_trace
(
firstGlyph
.
sanitize
(
c
)
&&
classes
.
sanitize
(
c
));
return_trace
(
likely
(
firstGlyph
.
sanitize
(
c
)
&&
classes
.
sanitize
(
c
)));
}
protected:
...
...
@@ -146,11 +148,11 @@ struct KerxSubTableFormat2
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
{
TRACE_SANITIZE
(
this
);
return_trace
(
c
->
check_struct
(
this
)
&&
rowWidth
.
sanitize
(
c
)
&&
leftClassTable
.
sanitize
(
c
,
this
)
&&
rightClassTable
.
sanitize
(
c
,
this
)
&&
array
.
sanitize
(
c
,
this
));
return_trace
(
likely
(
c
->
check_struct
(
this
)
&&
rowWidth
.
sanitize
(
c
)
&&
leftClassTable
.
sanitize
(
c
,
this
)
&&
rightClassTable
.
sanitize
(
c
,
this
)
&&
array
.
sanitize
(
c
,
this
))
)
;
}
protected:
...
...
@@ -173,11 +175,11 @@ struct KerxSubTableFormat4
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
{
TRACE_SANITIZE
(
this
);
return_trace
(
c
->
check_struct
(
this
)
&&
rowWidth
.
sanitize
(
c
)
&&
leftClassTable
.
sanitize
(
c
,
this
)
&&
rightClassTable
.
sanitize
(
c
,
this
)
&&
array
.
sanitize
(
c
,
this
));
return_trace
(
likely
(
c
->
check_struct
(
this
)
&&
rowWidth
.
sanitize
(
c
)
&&
leftClassTable
.
sanitize
(
c
,
this
)
&&
rightClassTable
.
sanitize
(
c
,
this
)
&&
array
.
sanitize
(
c
,
this
))
)
;
}
protected:
...
...
@@ -200,11 +202,11 @@ struct KerxSubTableFormat6
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
{
TRACE_SANITIZE
(
this
);
return_trace
(
c
->
check_struct
(
this
)
&&
rowIndexTable
.
sanitize
(
c
,
this
)
&&
columnIndexTable
.
sanitize
(
c
,
this
)
&&
kerningArray
.
sanitize
(
c
,
this
)
&&
kerningVector
.
sanitize
(
c
,
this
));
return_trace
(
likely
(
c
->
check_struct
(
this
)
&&
rowIndexTable
.
sanitize
(
c
,
this
)
&&
columnIndexTable
.
sanitize
(
c
,
this
)
&&
kerningArray
.
sanitize
(
c
,
this
)
&&
kerningVector
.
sanitize
(
c
,
this
))
)
;
}
protected:
...
...
@@ -276,7 +278,7 @@ struct SubtableGlyphCoverageArray
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
{
TRACE_SANITIZE
(
this
);
return_trace
(
c
->
check_struct
(
this
));
return_trace
(
likely
(
c
->
check_struct
(
this
))
)
;
}
protected:
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help