Lines Matching refs:small
6 void test_vext_8bit(int8x8_t small, int8x16_t big) { in test_vext_8bit() argument
7 vext_s8(small, small, 7); in test_vext_8bit()
8 vext_u8(small, small, 7); in test_vext_8bit()
9 vext_p8(small, small, 7); in test_vext_8bit()
14 vext_s8(small, small, 8); // expected-error {{argument should be a value from 0 to 7}} in test_vext_8bit()
15 vext_u8(small, small, 8); // expected-error {{argument should be a value from 0 to 7}} in test_vext_8bit()
16 vext_p8(small, small, 8); // expected-error {{argument should be a value from 0 to 7}} in test_vext_8bit()
22 void test_mul_lane_f64(float64x1_t small, float64x2_t big, float64x2_t rhs) { in test_mul_lane_f64() argument
23 vmul_lane_f64(small, small, 0); in test_mul_lane_f64()
24 vmul_laneq_f64(small, big, 1); in test_mul_lane_f64()
25 vmulq_lane_f64(big, small, 0); in test_mul_lane_f64()
27 vfma_lane_f64(small, small, small, 0); in test_mul_lane_f64()
28 vfma_laneq_f64(small, small, big, 1); in test_mul_lane_f64()
29 vfmaq_lane_f64(big, big, small, 0); in test_mul_lane_f64()
32 vmul_lane_f64(small, small, 1); // expected-error {{argument should be a value from 0 to 0}} in test_mul_lane_f64()
33 vmul_laneq_f64(small, big, 2); // expected-error {{argument should be a value from 0 to 1}} in test_mul_lane_f64()
34 …vfma_lane_f64(small, small, small, 1); // expected-error {{argument should be a value from 0 to 0}} in test_mul_lane_f64()
35 vfma_laneq_f64(small, small, big, 2); // expected-error {{argument should be a value from 0 to 1}} in test_mul_lane_f64()
39 void test_ld1st1(int8x8_t small, int8x16_t big, void *addr) { in test_ld1st1() argument
40 vld1_lane_s8(addr, small, 7); in test_ld1st1()
41 vld1_lane_s16(addr, small, 3); in test_ld1st1()
42 vld1_lane_s32(addr, small, 1); in test_ld1st1()
43 vld1_lane_s64(addr, small, 0); in test_ld1st1()
50 vld1_lane_s8(addr, small, 8); // expected-error {{argument should be a value from 0 to 7}} in test_ld1st1()
51 vld1_lane_s16(addr, small, 4); // expected-error {{argument should be a value from 0 to 3}} in test_ld1st1()
52 vld1_lane_s32(addr, small, 2); // expected-error {{argument should be a value from 0 to 1}} in test_ld1st1()
53 vld1_lane_s64(addr, small, 1); // expected-error {{argument should be a value from 0 to 0}} in test_ld1st1()
60 vst1_lane_s8(addr, small, 7); in test_ld1st1()
61 vst1_lane_s16(addr, small, 3); in test_ld1st1()
62 vst1_lane_s32(addr, small, 1); in test_ld1st1()
63 vst1_lane_s64(addr, small, 0); in test_ld1st1()
70 vst1_lane_s8(addr, small, 8); // expected-error {{argument should be a value from 0 to 7}} in test_ld1st1()
71 vst1_lane_s16(addr, small, 4); // expected-error {{argument should be a value from 0 to 3}} in test_ld1st1()
72 vst1_lane_s32(addr, small, 2); // expected-error {{argument should be a value from 0 to 1}} in test_ld1st1()
73 vst1_lane_s64(addr, small, 1); // expected-error {{argument should be a value from 0 to 0}} in test_ld1st1()