Home
last modified time | relevance | path

Searched defs:ImRsqrt (Results 1 – 1 of 1) sorted by relevance

/third_party/skia/third_party/externals/imgui/
Dimgui_internal.h407 static inline float ImRsqrt(float x) { return _mm_cvtss_f32(_mm_rsqrt_ss(_mm_set_ss(x)))… in ImRsqrt() function
409 static inline float ImRsqrt(float x) { return 1.0f / sqrtf(x); } in ImRsqrt() function
411 static inline double ImRsqrt(double x) { return 1.0 / sqrt(x); } in ImRsqrt() function