aboutsummaryrefslogtreecommitdiffstats
path: root/ref_vcvt.c
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2014-12-16 10:26:00 +0100
committerChristophe Lyon <christophe.lyon@linaro.org>2014-12-16 10:26:00 +0100
commitf20536724d4cc8432d5b804082415c8391f88f9b (patch)
tree170a405bc9244e0ec5464e9e6b3eb50dcafa895c /ref_vcvt.c
parent464d02e432a0fe5fb0afec8459631b4467b706f3 (diff)
downloadplatform_external_arm-neon-tests-f20536724d4cc8432d5b804082415c8391f88f9b.tar.gz
platform_external_arm-neon-tests-f20536724d4cc8432d5b804082415c8391f88f9b.tar.bz2
platform_external_arm-neon-tests-f20536724d4cc8432d5b804082415c8391f88f9b.zip
Rename helper macros:
TEST_VLOAD into VLOAD TEST_VDUP into VDUP
Diffstat (limited to 'ref_vcvt.c')
-rw-r--r--ref_vcvt.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/ref_vcvt.c b/ref_vcvt.c
index 94a570f..12216d7 100644
--- a/ref_vcvt.c
+++ b/ref_vcvt.c
@@ -99,12 +99,12 @@ void exec_vcvt (void)
/* Initialize input "vector" from "buffer" */
- TEST_MACRO_ALL_VARIANTS_2_5(TEST_VLOAD, vector, buffer);
- TEST_VLOAD(vector, buffer, , float, f, 32, 2);
- TEST_VLOAD(vector, buffer, q, float, f, 32, 4);
+ TEST_MACRO_ALL_VARIANTS_2_5(VLOAD, vector, buffer);
+ VLOAD(vector, buffer, , float, f, 32, 2);
+ VLOAD(vector, buffer, q, float, f, 32, 4);
#if defined(__ARM_FP16_FORMAT_IEEE)
- TEST_VLOAD(vector, buffer, , float, f, 16, 4);
- TEST_VLOAD(vector, buffer, q, float, f, 16, 8);
+ VLOAD(vector, buffer, , float, f, 16, 4);
+ VLOAD(vector, buffer, q, float, f, 16, 8);
#endif
/* Make sure some elements have a fractional part, to exercise
@@ -187,8 +187,8 @@ void exec_vcvt (void)
#undef TEST_MSG
#define TEST_MSG "VCVT/VCVTQ"
fprintf(ref_file, "\n%s output:\n", TEST_MSG " (check rounding)");
- TEST_VDUP(vector, , float, f, 32, 2, 10.4f);
- TEST_VDUP(vector, q, float, f, 32, 4, 125.9f);
+ VDUP(vector, , float, f, 32, 2, 10.4f);
+ VDUP(vector, q, float, f, 32, 4, 125.9f);
/* vcvt_xx_f32 */
TEST_VCVT(, int, s, 32, 2, float, f);
TEST_VCVT(, uint, u, 32, 2, float, f);