Searched defs:ImRsqrt (Results 1 – 1 of 1) sorted by relevance
407 static inline float ImRsqrt(float x) { return _mm_cvtss_f32(_mm_rsqrt_ss(_mm_set_ss(x)))… in ImRsqrt() function409 static inline float ImRsqrt(float x) { return 1.0f / sqrtf(x); } in ImRsqrt() function411 static inline double ImRsqrt(double x) { return 1.0 / sqrt(x); } in ImRsqrt() function