Home | History | Annotate | Download | only in NEON

Lines Matching refs:a_hi

217   float32x2_t a_lo, a_hi;
222 a_hi = vget_high_f32(a_r64);
223 return vcombine_f32(a_hi, a_lo);
226 int32x2_t a_lo, a_hi;
231 a_hi = vget_high_s32(a_r64);
232 return vcombine_s32(a_hi, a_lo);
239 float32x2_t a_lo, a_hi, sum;
243 a_hi = vget_high_f32(a);
244 sum = vpadd_f32(a_lo, a_hi);
273 int32x2_t a_lo, a_hi, sum;
277 a_hi = vget_high_s32(a);
278 sum = vpadd_s32(a_lo, a_hi);
309 float32x2_t a_lo, a_hi, prod;
312 // Get a_lo = |a1|a2| and a_hi = |a3|a4|
314 a_hi = vget_high_f32(a);
315 // Get the product of a_lo * a_hi -> |a1*a3|a2*a4|
316 prod = vmul_f32(a_lo, a_hi);
325 int32x2_t a_lo, a_hi, prod;
328 // Get a_lo = |a1|a2| and a_hi = |a3|a4|
330 a_hi = vget_high_s32(a);
331 // Get the product of a_lo * a_hi -> |a1*a3|a2*a4|
332 prod = vmul_s32(a_lo, a_hi);
343 float32x2_t a_lo, a_hi, min;
347 a_hi = vget_high_f32(a);
348 min = vpmin_f32(a_lo, a_hi);
356 int32x2_t a_lo, a_hi, min;
360 a_hi = vget_high_s32(a);
361 min = vpmin_s32(a_lo, a_hi);
371 float32x2_t a_lo, a_hi, max;
375 a_hi = vget_high_f32(a);
376 max = vpmax_f32(a_lo, a_hi);
384 int32x2_t a_lo, a_hi, max;
388 a_hi = vget_high_s32(a);
389 max = vpmax_s32(a_lo, a_hi);