Lines Matching refs:ptr
8 bfloat16x4_t test_vld1_lane_bf16(bfloat16_t const *ptr, bfloat16x4_t src) { in test_vld1_lane_bf16() argument
9 …(void)vld1_lane_bf16(ptr, src, -1); // expected-error-re {{argument value {{.*}} is outside the va… in test_vld1_lane_bf16()
10 …(void)vld1_lane_bf16(ptr, src, 4); // expected-error-re {{argument value {{.*}} is outside the va… in test_vld1_lane_bf16()
11 …return vld1_lane_bf16(ptr, src, x); // expected-error-re {{argument {{.*}} must be a constant inte… in test_vld1_lane_bf16()
14 bfloat16x8_t test_vld1q_lane_bf16(bfloat16_t const *ptr, bfloat16x8_t src) { in test_vld1q_lane_bf16() argument
15 …(void)vld1q_lane_bf16(ptr, src, -1); // expected-error-re {{argument value {{.*}} is outside the v… in test_vld1q_lane_bf16()
16 …(void)vld1q_lane_bf16(ptr, src, 8); // expected-error-re {{argument value {{.*}} is outside the v… in test_vld1q_lane_bf16()
17 …return vld1q_lane_bf16(ptr, src, x); // expected-error-re {{argument {{.*}} must be a constant int… in test_vld1q_lane_bf16()
20 bfloat16x4x2_t test_vld2_lane_bf16(bfloat16_t const *ptr, bfloat16x4x2_t src) { in test_vld2_lane_bf16() argument
21 …(void)vld2_lane_bf16(ptr, src, -1); // expected-error-re {{argument value {{.*}} is outside the va… in test_vld2_lane_bf16()
22 …(void)vld2_lane_bf16(ptr, src, 4); // expected-error-re {{argument value {{.*}} is outside the va… in test_vld2_lane_bf16()
23 …return vld2_lane_bf16(ptr, src, x); // expected-error-re {{argument {{.*}} must be a constant inte… in test_vld2_lane_bf16()
26 bfloat16x8x2_t test_vld2q_lane_bf16(bfloat16_t const *ptr, bfloat16x8x2_t src) { in test_vld2q_lane_bf16() argument
27 …(void)vld2q_lane_bf16(ptr, src, -1); // expected-error-re {{argument value {{.*}} is outside the v… in test_vld2q_lane_bf16()
28 …(void)vld2q_lane_bf16(ptr, src, 8); // expected-error-re {{argument value {{.*}} is outside the v… in test_vld2q_lane_bf16()
29 …return vld2q_lane_bf16(ptr, src, x); // expected-error-re {{argument {{.*}} must be a constant int… in test_vld2q_lane_bf16()
32 bfloat16x4x3_t test_vld3_lane_bf16(bfloat16_t const *ptr, bfloat16x4x3_t src) { in test_vld3_lane_bf16() argument
33 …(void)vld3_lane_bf16(ptr, src, -1); // expected-error-re {{argument value {{.*}} is outside the va… in test_vld3_lane_bf16()
34 …(void)vld3_lane_bf16(ptr, src, 4); // expected-error-re {{argument value {{.*}} is outside the va… in test_vld3_lane_bf16()
35 …return vld3_lane_bf16(ptr, src, x); // expected-error-re {{argument {{.*}} must be a constant inte… in test_vld3_lane_bf16()
38 bfloat16x8x3_t test_vld3q_lane_bf16(bfloat16_t const *ptr, bfloat16x8x3_t src) { in test_vld3q_lane_bf16() argument
39 …(void)vld3q_lane_bf16(ptr, src, -1); // expected-error-re {{argument value {{.*}} is outside the v… in test_vld3q_lane_bf16()
40 …(void)vld3q_lane_bf16(ptr, src, 8); // expected-error-re {{argument value {{.*}} is outside the v… in test_vld3q_lane_bf16()
41 …return vld3q_lane_bf16(ptr, src, x); // expected-error-re {{argument {{.*}} must be a constant int… in test_vld3q_lane_bf16()
44 bfloat16x4x4_t test_vld4_lane_bf16(bfloat16_t const *ptr, bfloat16x4x4_t src) { in test_vld4_lane_bf16() argument
45 …(void)vld4_lane_bf16(ptr, src, -1); // expected-error-re {{argument value {{.*}} is outside the va… in test_vld4_lane_bf16()
46 …(void)vld4_lane_bf16(ptr, src, 4); // expected-error-re {{argument value {{.*}} is outside the va… in test_vld4_lane_bf16()
47 …return vld4_lane_bf16(ptr, src, x); // expected-error-re {{argument {{.*}} must be a constant inte… in test_vld4_lane_bf16()
50 bfloat16x8x4_t test_vld4q_lane_bf16(bfloat16_t const *ptr, bfloat16x8x4_t src) { in test_vld4q_lane_bf16() argument
51 …(void)vld4q_lane_bf16(ptr, src, -1); // expected-error-re {{argument value {{.*}} is outside the v… in test_vld4q_lane_bf16()
52 …(void)vld4q_lane_bf16(ptr, src, 8); // expected-error-re {{argument value {{.*}} is outside the v… in test_vld4q_lane_bf16()
53 …return vld4q_lane_bf16(ptr, src, x); // expected-error-re {{argument {{.*}} must be a constant int… in test_vld4q_lane_bf16()
56 void test_vst1_lane_bf16(bfloat16_t *ptr, bfloat16x4_t val) { in test_vst1_lane_bf16() argument
57 …vst1_lane_bf16(ptr, val, -1); // expected-error-re {{argument value {{.*}} is outside the valid ra… in test_vst1_lane_bf16()
58 …vst1_lane_bf16(ptr, val, 4); // expected-error-re {{argument value {{.*}} is outside the valid ra… in test_vst1_lane_bf16()
59 vst1_lane_bf16(ptr, val, x); // expected-error-re {{argument {{.*}} must be a constant integer}} in test_vst1_lane_bf16()
62 void test_vst1q_lane_bf16(bfloat16_t *ptr, bfloat16x8_t val) { in test_vst1q_lane_bf16() argument
63 …vst1q_lane_bf16(ptr, val, -1); // expected-error-re {{argument value {{.*}} is outside the valid r… in test_vst1q_lane_bf16()
64 …vst1q_lane_bf16(ptr, val, 8); // expected-error-re {{argument value {{.*}} is outside the valid r… in test_vst1q_lane_bf16()
65 vst1q_lane_bf16(ptr, val, x); // expected-error-re {{argument {{.*}} must be a constant integer}} in test_vst1q_lane_bf16()
68 void test_vst2_lane_bf16(bfloat16_t *ptr, bfloat16x4x2_t val) { in test_vst2_lane_bf16() argument
69 …vst2_lane_bf16(ptr, val, -1); // expected-error-re {{argument value {{.*}} is outside the valid ra… in test_vst2_lane_bf16()
70 …vst2_lane_bf16(ptr, val, 4); // expected-error-re {{argument value {{.*}} is outside the valid ra… in test_vst2_lane_bf16()
71 vst2_lane_bf16(ptr, val, x); // expected-error-re {{argument {{.*}} must be a constant integer}} in test_vst2_lane_bf16()
74 void test_vst2q_lane_bf16(bfloat16_t *ptr, bfloat16x8x2_t val) { in test_vst2q_lane_bf16() argument
75 …vst2q_lane_bf16(ptr, val, -1); // expected-error-re {{argument value {{.*}} is outside the valid r… in test_vst2q_lane_bf16()
76 …vst2q_lane_bf16(ptr, val, 8); // expected-error-re {{argument value {{.*}} is outside the valid r… in test_vst2q_lane_bf16()
77 vst2q_lane_bf16(ptr, val, x); // expected-error-re {{argument {{.*}} must be a constant integer}} in test_vst2q_lane_bf16()
80 void test_vst3_lane_bf16(bfloat16_t *ptr, bfloat16x4x3_t val) { in test_vst3_lane_bf16() argument
81 …vst3_lane_bf16(ptr, val, -1); // expected-error-re {{argument value {{.*}} is outside the valid ra… in test_vst3_lane_bf16()
82 …vst3_lane_bf16(ptr, val, 4); // expected-error-re {{argument value {{.*}} is outside the valid ra… in test_vst3_lane_bf16()
83 vst3_lane_bf16(ptr, val, x); // expected-error-re {{argument {{.*}} must be a constant integer}} in test_vst3_lane_bf16()
86 void test_vst3q_lane_bf16(bfloat16_t *ptr, bfloat16x8x3_t val) { in test_vst3q_lane_bf16() argument
87 …vst3q_lane_bf16(ptr, val, -1); // expected-error-re {{argument value {{.*}} is outside the valid r… in test_vst3q_lane_bf16()
88 …vst3q_lane_bf16(ptr, val, 8); // expected-error-re {{argument value {{.*}} is outside the valid r… in test_vst3q_lane_bf16()
89 vst3q_lane_bf16(ptr, val, x); // expected-error-re {{argument {{.*}} must be a constant integer}} in test_vst3q_lane_bf16()
92 void test_vst4_lane_bf16(bfloat16_t *ptr, bfloat16x4x4_t val) { in test_vst4_lane_bf16() argument
93 …vst4_lane_bf16(ptr, val, -1); // expected-error-re {{argument value {{.*}} is outside the valid ra… in test_vst4_lane_bf16()
94 …vst4_lane_bf16(ptr, val, 4); // expected-error-re {{argument value {{.*}} is outside the valid ra… in test_vst4_lane_bf16()
95 vst4_lane_bf16(ptr, val, x); // expected-error-re {{argument {{.*}} must be a constant integer}} in test_vst4_lane_bf16()
98 void test_vst4q_lane_bf16(bfloat16_t *ptr, bfloat16x8x4_t val) { in test_vst4q_lane_bf16() argument
99 …vst4q_lane_bf16(ptr, val, -1); // expected-error-re {{argument value {{.*}} is outside the valid r… in test_vst4q_lane_bf16()
100 …vst4q_lane_bf16(ptr, val, 8); // expected-error-re {{argument value {{.*}} is outside the valid r… in test_vst4q_lane_bf16()
101 vst4q_lane_bf16(ptr, val, x); // expected-error-re {{argument {{.*}} must be a constant integer}} in test_vst4q_lane_bf16()