Lines Matching refs:p
44 static int16x4_t vld1_s16(const int16_t *p) in vld1_s16() argument
46 return (int16x4_t){ { p[0], p[1], p[2], p[3] } }; in vld1_s16()
141 static float32x2_t vld1_f32(const float *p) in vld1_f32() argument
143 return (float32x2_t){ { p[0], p[1] } }; in vld1_f32()
147 static float32x4_t vld1q_f32(const float *p) in vld1q_f32() argument
149 return (float32x4_t){ { p[0], p[1], p[2], p[3] } }; in vld1q_f32()
153 static float32x4_t vld1q_dup_f32(const float *p) in vld1q_dup_f32() argument
155 return (float32x4_t){ { p[0], p[0], p[0], p[0] } }; in vld1q_dup_f32()
159 static float32x2x2_t vld2_f32(const float *p) in vld2_f32() argument
161 return (float32x2x2_t){ .val[0] = { { p[0], p[2] } }, in vld2_f32()
162 .val[1] = { { p[1], p[3] } } }; in vld2_f32()
166 static float32x4x2_t vld2q_f32(const float *p) in vld2q_f32() argument
168 return (float32x4x2_t){ .val[0] = { { p[0], p[2], p[4], p[6] } }, in vld2q_f32()
169 .val[1] = { { p[1], p[3], p[5], p[7] } } }; in vld2q_f32()
173 static void vst1_f32(float *p, float32x2_t v) in vst1_f32() argument
175 p[0] = v.e[0], p[1] = v.e[1]; in vst1_f32()
179 static void vst1q_f32(float *p, float32x4_t v) in vst1q_f32() argument
181 p[0] = v.e[0], p[1] = v.e[1], p[2] = v.e[2], p[3] = v.e[3]; in vst1q_f32()