Lines Matching refs:f

55     xinv.f = ax;  in vrecip_medprec_f16()
59 xinv.f = 1.41176471f16 - 0.47058824f16 * xinv.f; in vrecip_medprec_f16()
62 b = 2.0f16 - xinv.f * ax; in vrecip_medprec_f16()
63 xinv.f = xinv.f * b; in vrecip_medprec_f16()
65 b = 2.0f16 - xinv.f * ax; in vrecip_medprec_f16()
66 xinv.f = xinv.f * b; in vrecip_medprec_f16()
68 b = 2.0f16 - xinv.f * ax; in vrecip_medprec_f16()
69 xinv.f = xinv.f * b; in vrecip_medprec_f16()
71 xinv.f = vdupq_m_n_f16(xinv.f, F16INFINITY, vcmpeqq_n_f16(x, 0.0f)); in vrecip_medprec_f16()
75 xinv.f = vnegq_m(xinv.f, xinv.f, vcmpltq_n_f16(x, 0.0f)); in vrecip_medprec_f16()
77 return xinv.f; in vrecip_medprec_f16()
89 xinv.f = ax; in vrecip_hiprec_f16()
93 xinv.f = 1.41176471f16 - 0.47058824f16 * xinv.f; in vrecip_hiprec_f16()
96 b = 2.0f16 - xinv.f * ax; in vrecip_hiprec_f16()
97 xinv.f = xinv.f * b; in vrecip_hiprec_f16()
99 b = 2.0f16 - xinv.f * ax; in vrecip_hiprec_f16()
100 xinv.f = xinv.f * b; in vrecip_hiprec_f16()
102 b = 2.0f16 - xinv.f * ax; in vrecip_hiprec_f16()
103 xinv.f = xinv.f * b; in vrecip_hiprec_f16()
105 b = 2.0f16 - xinv.f * ax; in vrecip_hiprec_f16()
106 xinv.f = xinv.f * b; in vrecip_hiprec_f16()
108 xinv.f = vdupq_m_n_f16(xinv.f, F16INFINITY, vcmpeqq_n_f16(x, 0.0f)); in vrecip_hiprec_f16()
112 xinv.f = vnegq_m(xinv.f, xinv.f, vcmpltq_n_f16(x, 0.0f)); in vrecip_hiprec_f16()
114 return xinv.f; in vrecip_hiprec_f16()
150 r.f = x; \
156 vecTmpFlt1 = r.f;
262 v.f = vecIn; in vrecip_f16()
265 vecW = vmulq(vecSx, v.f); in vrecip_f16()
275 v.f = vmulq(v.f, vecTmp); in vrecip_f16()
277 v.f = vdupq_m_n_f16(v.f, F16INFINITY, vcmpeqq_n_f16(vecIn, 0.0f)); in vrecip_f16()
281 v.f = vnegq_m(v.f, v.f, vcmpltq_n_f16(vecIn, 0.0f)); in vrecip_f16()
282 return v.f; in vrecip_f16()