(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
fp16_fmul_high.h
       1  #include "arm_neon.h"
       2  
       3  float32x2_t
       4  test_vfmlal_high_f16 (float32x2_t r, float16x4_t a, float16x4_t b)
       5  {
       6    return vfmlal_high_f16 (r, a, b);
       7  }
       8  
       9  float32x4_t
      10  test_vfmlalq_high_f16 (float32x4_t r, float16x8_t a, float16x8_t b)
      11  {
      12    return vfmlalq_high_f16 (r, a, b);
      13  }
      14  
      15  float32x2_t
      16  test_vfmlsl_high_f16 (float32x2_t r, float16x4_t a, float16x4_t b)
      17  {
      18    return vfmlsl_high_f16 (r, a, b);
      19  }
      20  
      21  float32x4_t
      22  test_vfmlslq_high_f16 (float32x4_t r, float16x8_t a, float16x8_t b)
      23  {
      24    return vfmlslq_high_f16 (r, a, b);
      25  }