Lines Matching refs:f
53 xinv.f = ax; in vrecip_medprec_f32()
56 xinv.f = 1.41176471f - 0.47058824f * xinv.f; in vrecip_medprec_f32()
59 b = 2.0f - xinv.f * ax; in vrecip_medprec_f32()
60 xinv.f = xinv.f * b; in vrecip_medprec_f32()
62 b = 2.0f - xinv.f * ax; in vrecip_medprec_f32()
63 xinv.f = xinv.f * b; in vrecip_medprec_f32()
65 b = 2.0f - xinv.f * ax; in vrecip_medprec_f32()
66 xinv.f = xinv.f * b; in vrecip_medprec_f32()
68 xinv.f = vdupq_m(xinv.f, INFINITY, vcmpeqq(x, 0.0f)); in vrecip_medprec_f32()
72 xinv.f = vnegq_m(xinv.f, xinv.f, vcmpltq(x, 0.0f)); in vrecip_medprec_f32()
74 return xinv.f; in vrecip_medprec_f32()
86 xinv.f = ax; in vrecip_hiprec_f32()
90 xinv.f = 1.41176471f - 0.47058824f * xinv.f; in vrecip_hiprec_f32()
93 b = 2.0f - xinv.f * ax; in vrecip_hiprec_f32()
94 xinv.f = xinv.f * b; in vrecip_hiprec_f32()
96 b = 2.0f - xinv.f * ax; in vrecip_hiprec_f32()
97 xinv.f = xinv.f * b; in vrecip_hiprec_f32()
99 b = 2.0f - xinv.f * ax; in vrecip_hiprec_f32()
100 xinv.f = xinv.f * b; in vrecip_hiprec_f32()
102 b = 2.0f - xinv.f * ax; in vrecip_hiprec_f32()
103 xinv.f = xinv.f * b; in vrecip_hiprec_f32()
105 xinv.f = vdupq_m(xinv.f, INFINITY, vcmpeqq(x, 0.0f)); in vrecip_hiprec_f32()
109 xinv.f = vnegq_m(xinv.f, xinv.f, vcmpltq(x, 0.0f)); in vrecip_hiprec_f32()
111 return xinv.f; in vrecip_hiprec_f32()
149 r.f = x; in vmant_exp_f32()
155 return r.f; in vmant_exp_f32()
254 v.f = vecIn; in vrecip_f32()
257 vecW = vmulq(vecSx, v.f); in vrecip_f32()
267 v.f = vmulq(v.f, vecTmp); in vrecip_f32()
269 v.f = vdupq_m(v.f, INFINITY, vcmpeqq(vecIn, 0.0f)); in vrecip_f32()
273 v.f = vnegq_m(v.f, v.f, vcmpltq(vecIn, 0.0f)); in vrecip_f32()
274 return v.f; in vrecip_f32()