From f20536724d4cc8432d5b804082415c8391f88f9b Mon Sep 17 00:00:00 2001 From: Christophe Lyon Date: Tue, 16 Dec 2014 10:26:00 +0100 Subject: Rename helper macros: TEST_VLOAD into VLOAD TEST_VDUP into VDUP --- ref_vmul_lane.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'ref_vmul_lane.c') diff --git a/ref_vmul_lane.c b/ref_vmul_lane.c index b76bc01..f67d68e 100644 --- a/ref_vmul_lane.c +++ b/ref_vmul_lane.c @@ -69,23 +69,23 @@ void exec_vmul_lane (void) clean_results (); /* Initialize vector from pre-initialized values */ - TEST_VLOAD(vector, buffer, , int, s, 16, 4); - TEST_VLOAD(vector, buffer, , int, s, 32, 2); - TEST_VLOAD(vector, buffer, , uint, u, 16, 4); - TEST_VLOAD(vector, buffer, , uint, u, 32, 2); - TEST_VLOAD(vector, buffer, , float, f, 32, 2); - TEST_VLOAD(vector, buffer, q, int, s, 16, 8); - TEST_VLOAD(vector, buffer, q, int, s, 32, 4); - TEST_VLOAD(vector, buffer, q, uint, u, 16, 8); - TEST_VLOAD(vector, buffer, q, uint, u, 32, 4); - TEST_VLOAD(vector, buffer, q, float, f, 32, 4); + VLOAD(vector, buffer, , int, s, 16, 4); + VLOAD(vector, buffer, , int, s, 32, 2); + VLOAD(vector, buffer, , uint, u, 16, 4); + VLOAD(vector, buffer, , uint, u, 32, 2); + VLOAD(vector, buffer, , float, f, 32, 2); + VLOAD(vector, buffer, q, int, s, 16, 8); + VLOAD(vector, buffer, q, int, s, 32, 4); + VLOAD(vector, buffer, q, uint, u, 16, 8); + VLOAD(vector, buffer, q, uint, u, 32, 4); + VLOAD(vector, buffer, q, float, f, 32, 4); /* Initialize vector2 */ - TEST_VDUP(vector2, , int, s, 16, 4, 0x4); - TEST_VDUP(vector2, , int, s, 32, 2, 0x22); - TEST_VDUP(vector2, , uint, u, 16, 4, 0x444); - TEST_VDUP(vector2, , uint, u, 32, 2, 0x532); - TEST_VDUP(vector2, , float, f, 32, 2, 22.8f); + VDUP(vector2, , int, s, 16, 4, 0x4); + VDUP(vector2, , int, s, 32, 2, 0x22); + VDUP(vector2, , uint, u, 16, 4, 0x444); + VDUP(vector2, , uint, u, 32, 2, 0x532); + VDUP(vector2, , float, f, 32, 2, 22.8f); /* Choose lane arbitrarily */ TEST_VMUL_LANE(, int, s, 16, 4, 4, 2); -- cgit v1.2.3