Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
04ed7ad5
Commit
04ed7ad5
authored
Aug 29, 2016
by
Pascal Massimino
Browse files
fix uint32_t <-> size_t mismatch in tests
Change-Id: Ifde4d57957219560e01ebd1657f1c0721f041054
parent
f7a86585
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/blend_a64_mask_1d_test.cc
View file @
04ed7ad5
...
...
@@ -93,16 +93,16 @@ class BlendA64Mask1DTest : public FunctionEquivalenceTest<F> {
T
dst_ref_
[
kBufSize
];
T
dst_tst_
[
kBufSize
];
size
_t
dst_stride_
;
size
_t
dst_offset_
;
uint32
_t
dst_stride_
;
uint32
_t
dst_offset_
;
T
src0_
[
kBufSize
];
size
_t
src0_stride_
;
size
_t
src0_offset_
;
uint32
_t
src0_stride_
;
uint32
_t
src0_offset_
;
T
src1_
[
kBufSize
];
size
_t
src1_stride_
;
size
_t
src1_offset_
;
uint32
_t
src1_stride_
;
uint32
_t
src1_offset_
;
uint8_t
mask_
[
kMaxMaskSize
];
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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