Home
last modified time | relevance | path

Searched refs:invSqrt (Results 1 – 16 of 16) sorted by relevance

/dports/graphics/aloadimage/arcan-0.6.1/src/tools/vrbridge/
H A Dahrs.c23 static float invSqrt(float x);
67 recipNorm = invSqrt(ax * ax + ay * ay + az * az); in update_IMU()
92 recipNorm = invSqrt(s0 * s0 + s1 * s1 + s2 * s2 + s3 * s3); // normalise step magnitude in update_IMU()
112 recipNorm = invSqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3); in update_IMU()
157 recipNorm = invSqrt(ax * ax + ay * ay + az * az); in AHRS_update()
163 recipNorm = invSqrt(mx * mx + my * my + mz * mz); in AHRS_update()
233 recipNorm = invSqrt(s0 * s0 + s1 * s1 + s2 * s2 + s3 * s3); in AHRS_update()
253 recipNorm = invSqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3); in AHRS_update()
269 static float invSqrt(float x) in invSqrt() function
/dports/sysutils/acfgfs/arcan-0.6.1/src/tools/vrbridge/
H A Dahrs.c23 static float invSqrt(float x);
67 recipNorm = invSqrt(ax * ax + ay * ay + az * az); in update_IMU()
92 recipNorm = invSqrt(s0 * s0 + s1 * s1 + s2 * s2 + s3 * s3); // normalise step magnitude in update_IMU()
112 recipNorm = invSqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3); in update_IMU()
157 recipNorm = invSqrt(ax * ax + ay * ay + az * az); in AHRS_update()
163 recipNorm = invSqrt(mx * mx + my * my + mz * mz); in AHRS_update()
233 recipNorm = invSqrt(s0 * s0 + s1 * s1 + s2 * s2 + s3 * s3); in AHRS_update()
253 recipNorm = invSqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3); in AHRS_update()
269 static float invSqrt(float x) in invSqrt() function
/dports/x11/aclip/arcan-0.6.1/src/tools/vrbridge/
H A Dahrs.c23 static float invSqrt(float x);
67 recipNorm = invSqrt(ax * ax + ay * ay + az * az); in update_IMU()
92 recipNorm = invSqrt(s0 * s0 + s1 * s1 + s2 * s2 + s3 * s3); // normalise step magnitude in update_IMU()
112 recipNorm = invSqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3); in update_IMU()
157 recipNorm = invSqrt(ax * ax + ay * ay + az * az); in AHRS_update()
163 recipNorm = invSqrt(mx * mx + my * my + mz * mz); in AHRS_update()
233 recipNorm = invSqrt(s0 * s0 + s1 * s1 + s2 * s2 + s3 * s3); in AHRS_update()
253 recipNorm = invSqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3); in AHRS_update()
269 static float invSqrt(float x) in invSqrt() function
/dports/x11/arcan-trayicon/arcan-0.6.1/src/tools/vrbridge/
H A Dahrs.c23 static float invSqrt(float x);
67 recipNorm = invSqrt(ax * ax + ay * ay + az * az); in update_IMU()
92 recipNorm = invSqrt(s0 * s0 + s1 * s1 + s2 * s2 + s3 * s3); // normalise step magnitude in update_IMU()
112 recipNorm = invSqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3); in update_IMU()
157 recipNorm = invSqrt(ax * ax + ay * ay + az * az); in AHRS_update()
163 recipNorm = invSqrt(mx * mx + my * my + mz * mz); in AHRS_update()
233 recipNorm = invSqrt(s0 * s0 + s1 * s1 + s2 * s2 + s3 * s3); in AHRS_update()
253 recipNorm = invSqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3); in AHRS_update()
269 static float invSqrt(float x) in invSqrt() function
/dports/math/stanmath/math-4.2.0/test/unit/math/mix/fun/
H A Dinv_sqrt_test.cpp3 TEST(mathMixMatFun, invSqrt) { in TEST() argument
/dports/graphics/opencv/opencv-4.5.3/modules/core/src/
H A Dmathfuncs_core.dispatch.cpp220 void invSqrt(const float* src, float* dst, int len) in invSqrt() function
225 void invSqrt(const double* src, double* dst, int len) in invSqrt() function
/dports/games/dhewm3/dhewm3-1.5.1/neo/idlib/math/
H A DVector.h1865 float invSqrt, sum = 0.0f; in Normalize() local
1871 invSqrt = idMath::InvSqrt( sum ); in Normalize()
1873 m.p[i] = p[i] * invSqrt; in Normalize()
1879 float invSqrt, sum = 0.0f; in NormalizeSelf() local
1884 invSqrt = idMath::InvSqrt( sum ); in NormalizeSelf()
1886 p[i] *= invSqrt; in NormalizeSelf()
1888 return invSqrt * sum; in NormalizeSelf()
H A DMatrix.cpp5303 float *invSqrt; in Cholesky_Factor() local
5308 invSqrt = (float *) _alloca16( numRows * sizeof( float ) ); in Cholesky_Factor()
5318 (*this)[i][j] = sum * invSqrt[j]; in Cholesky_Factor()
5330 invSqrt[i] = idMath::InvSqrt( sum ); in Cholesky_Factor()
5331 (*this)[i][i] = invSqrt[i] * sum; in Cholesky_Factor()
/dports/graphics/opencv/opencv-4.5.3/modules/core/include/opencv2/core/hal/
H A Dhal.hpp249 CV_EXPORTS void invSqrt(const float* src, float* dst, int len);
250 CV_EXPORTS void invSqrt(const double* src, double* dst, int len);
/dports/emulators/mess/mame-mame0226/3rdparty/bx/include/bx/inline/
H A Dsimd_ni.inl472 const Ty invSqrt = simd_rsqrt(dot3); local
473 const Ty result = simd_mul(_a, invSqrt);
/dports/emulators/mame/mame-mame0226/3rdparty/bx/include/bx/inline/
H A Dsimd_ni.inl472 const Ty invSqrt = simd_rsqrt(dot3); local
473 const Ty result = simd_mul(_a, invSqrt);
/dports/devel/bullet/bullet3-3.21/examples/ThirdPartyLibs/openvr/samples/shared/
H A DVectors.h150 inline float invSqrt(float x) in invSqrt() function
/dports/devel/py-bullet3/bullet3-3.21/examples/ThirdPartyLibs/openvr/samples/shared/
H A DVectors.h150 inline float invSqrt(float x) in invSqrt() function
/dports/devel/bullet/bullet3-3.21/test/Bullet2/vectormath/sse/
H A Dmat_aos.h1994 __m128 radicand, invSqrt, scale; in Quat() local
2028 invSqrt = newtonrapson_rsqrt4(radicand); in Quat()
2042 scale = vec_mul(invSqrt, _mm_set1_ps(0.5f)); in Quat()
/dports/devel/py-bullet3/bullet3-3.21/test/Bullet2/vectormath/sse/
H A Dmat_aos.h1994 __m128 radicand, invSqrt, scale; in Quat() local
2028 invSqrt = newtonrapson_rsqrt4(radicand); in Quat()
2042 scale = vec_mul(invSqrt, _mm_set1_ps(0.5f)); in Quat()
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/bullet/src/vectormath/sse/
H A Dmat_aos.h2030 __m128 radicand, invSqrt, scale; in Quat() local
2064 invSqrt = newtonrapson_rsqrt4( radicand ); in Quat()
2080 scale = vec_mul( invSqrt, _mm_set1_ps(0.5f) ); in Quat()