Lines Matching refs:f16x8_t
47 __STATIC_INLINE f16x8_t vrecip_medprec_f16( in vrecip_medprec_f16()
48 f16x8_t x) in vrecip_medprec_f16()
51 f16x8_t b; in vrecip_medprec_f16()
53 f16x8_t ax = vabsq(x); in vrecip_medprec_f16()
81 __STATIC_INLINE f16x8_t vrecip_hiprec_f16( in vrecip_hiprec_f16()
82 f16x8_t x) in vrecip_hiprec_f16()
85 f16x8_t b; in vrecip_hiprec_f16()
87 f16x8_t ax = vabsq(x); in vrecip_hiprec_f16()
117 __STATIC_INLINE f16x8_t vdiv_f16( in vdiv_f16()
118 f16x8_t num, f16x8_t den) in vdiv_f16()
246 __STATIC_INLINE f16x8_t vpowq_f16( in vpowq_f16()
247 f16x8_t val, in vpowq_f16()
248 f16x8_t n) in vpowq_f16()
255 __STATIC_INLINE f16x8_t vrecip_f16(f16x8_t vecIn) in vrecip_f16()
257 f16x8_t vecSx, vecW, vecTmp; in vrecip_f16()
285 __STATIC_INLINE f16x8_t vtanhq_f16( in vtanhq_f16()
286 f16x8_t val) in vtanhq_f16()
288 f16x8_t x = in vtanhq_f16()
290 f16x8_t exp2x = vexpq_f16(vmulq_n_f16(x, 2.f16)); in vtanhq_f16()
291 f16x8_t num = vsubq_n_f16(exp2x, 1.f16); in vtanhq_f16()
292 f16x8_t den = vaddq_n_f16(exp2x, 1.f16); in vtanhq_f16()
293 f16x8_t tanh = vmulq_f16(num, vrecip_f16(den)); in vtanhq_f16()