aboutsummaryrefslogtreecommitdiffstats
path: root/ref_vmul.c
diff options
context:
space:
mode:
Diffstat (limited to 'ref_vmul.c')
-rw-r--r--ref_vmul.c66
1 files changed, 33 insertions, 33 deletions
diff --git a/ref_vmul.c b/ref_vmul.c
index 5489c46..c7b1814 100644
--- a/ref_vmul.c
+++ b/ref_vmul.c
@@ -79,39 +79,39 @@ FNNAME (INSN_NAME)
clean_results ();
- TEST_VLOAD(vector1, buffer, , int, s, 8, 8);
- TEST_VLOAD(vector1, buffer, , int, s, 16, 4);
- TEST_VLOAD(vector1, buffer, , int, s, 32, 2);
- TEST_VLOAD(vector1, buffer, , uint, u, 8, 8);
- TEST_VLOAD(vector1, buffer, , uint, u, 16, 4);
- TEST_VLOAD(vector1, buffer, , uint, u, 32, 2);
- TEST_VLOAD(vector1, buffer, , poly, p, 8, 8);
- TEST_VLOAD(vector1, buffer, , float, f, 32, 2);
- TEST_VLOAD(vector1, buffer, q, int, s, 8, 16);
- TEST_VLOAD(vector1, buffer, q, int, s, 16, 8);
- TEST_VLOAD(vector1, buffer, q, int, s, 32, 4);
- TEST_VLOAD(vector1, buffer, q, uint, u, 8, 16);
- TEST_VLOAD(vector1, buffer, q, uint, u, 16, 8);
- TEST_VLOAD(vector1, buffer, q, uint, u, 32, 4);
- TEST_VLOAD(vector1, buffer, q, poly, p, 8, 16);
- TEST_VLOAD(vector1, buffer, q, float, f, 32, 4);
-
- TEST_VDUP(vector2, , int, s, 8, 8, 0x11);
- TEST_VDUP(vector2, , int, s, 16, 4, 0x22);
- TEST_VDUP(vector2, , int, s, 32, 2, 0x33);
- TEST_VDUP(vector2, , uint, u, 8, 8, 0x44);
- TEST_VDUP(vector2, , uint, u, 16, 4, 0x55);
- TEST_VDUP(vector2, , uint, u, 32, 2, 0x66);
- TEST_VDUP(vector2, , poly, p, 8, 8, 0x44);
- TEST_VDUP(vector2, , float, f, 32, 2, 33.3f);
- TEST_VDUP(vector2, q, int, s, 8, 16, 0x77);
- TEST_VDUP(vector2, q, int, s, 16, 8, 0x88);
- TEST_VDUP(vector2, q, int, s, 32, 4, 0x99);
- TEST_VDUP(vector2, q, uint, u, 8, 16, 0xAA);
- TEST_VDUP(vector2, q, uint, u, 16, 8, 0xBB);
- TEST_VDUP(vector2, q, uint, u, 32, 4, 0xCC);
- TEST_VDUP(vector2, q, poly, p, 8, 16, 0xAA);
- TEST_VDUP(vector2, q, float, f, 32, 4, 99.6f);
+ VLOAD(vector1, buffer, , int, s, 8, 8);
+ VLOAD(vector1, buffer, , int, s, 16, 4);
+ VLOAD(vector1, buffer, , int, s, 32, 2);
+ VLOAD(vector1, buffer, , uint, u, 8, 8);
+ VLOAD(vector1, buffer, , uint, u, 16, 4);
+ VLOAD(vector1, buffer, , uint, u, 32, 2);
+ VLOAD(vector1, buffer, , poly, p, 8, 8);
+ VLOAD(vector1, buffer, , float, f, 32, 2);
+ VLOAD(vector1, buffer, q, int, s, 8, 16);
+ VLOAD(vector1, buffer, q, int, s, 16, 8);
+ VLOAD(vector1, buffer, q, int, s, 32, 4);
+ VLOAD(vector1, buffer, q, uint, u, 8, 16);
+ VLOAD(vector1, buffer, q, uint, u, 16, 8);
+ VLOAD(vector1, buffer, q, uint, u, 32, 4);
+ VLOAD(vector1, buffer, q, poly, p, 8, 16);
+ VLOAD(vector1, buffer, q, float, f, 32, 4);
+
+ VDUP(vector2, , int, s, 8, 8, 0x11);
+ VDUP(vector2, , int, s, 16, 4, 0x22);
+ VDUP(vector2, , int, s, 32, 2, 0x33);
+ VDUP(vector2, , uint, u, 8, 8, 0x44);
+ VDUP(vector2, , uint, u, 16, 4, 0x55);
+ VDUP(vector2, , uint, u, 32, 2, 0x66);
+ VDUP(vector2, , poly, p, 8, 8, 0x44);
+ VDUP(vector2, , float, f, 32, 2, 33.3f);
+ VDUP(vector2, q, int, s, 8, 16, 0x77);
+ VDUP(vector2, q, int, s, 16, 8, 0x88);
+ VDUP(vector2, q, int, s, 32, 4, 0x99);
+ VDUP(vector2, q, uint, u, 8, 16, 0xAA);
+ VDUP(vector2, q, uint, u, 16, 8, 0xBB);
+ VDUP(vector2, q, uint, u, 32, 4, 0xCC);
+ VDUP(vector2, q, poly, p, 8, 16, 0xAA);
+ VDUP(vector2, q, float, f, 32, 4, 99.6f);
TEST_VMUL(INSN_NAME, , int, s, 8, 8);
TEST_VMUL(INSN_NAME, , int, s, 16, 4);