Home
last modified time | relevance | path

Searched refs:dotR (Results 1 – 10 of 10) sorted by relevance

/dports/astro/astrometry/astrometry.net-0.85/gsl-an/cblas/
H A Dsource_gemv_c.h75 BASE dotR = 0.0; variable
84 dotR += A_real * x_real - A_imag * x_imag;
89 REAL(Y, iy) += alpha_real * dotR - alpha_imag * dotI;
90 IMAG(Y, iy) += alpha_real * dotI + alpha_imag * dotR;
136 BASE dotR = 0.0; variable
145 dotR += A_real * x_real - (-A_imag) * x_imag;
150 REAL(Y, iy) += alpha_real * dotR - alpha_imag * dotI;
151 IMAG(Y, iy) += alpha_real * dotI + alpha_imag * dotR;
/dports/audio/praat/praat-6.2.03/external/gsl/
H A Dgsl_cblas__source_gemv_c.h75 BASE dotR = 0.0;
84 dotR += A_real * x_real - A_imag * x_imag;
89 REAL(Y, iy) += alpha_real * dotR - alpha_imag * dotI;
90 IMAG(Y, iy) += alpha_real * dotI + alpha_imag * dotR;
136 BASE dotR = 0.0;
145 dotR += A_real * x_real - (-A_imag) * x_imag;
150 REAL(Y, iy) += alpha_real * dotR - alpha_imag * dotI;
151 IMAG(Y, iy) += alpha_real * dotI + alpha_imag * dotR;
H A Dgsl_cblas__source_gbmv_c.h78 BASE dotR = 0.0; variable
89 dotR += A_real * x_real - A_imag * x_imag;
94 REAL(Y, iy) += alpha_real * dotR - alpha_imag * dotI;
95 IMAG(Y, iy) += alpha_real * dotI + alpha_imag * dotR;
147 BASE dotR = 0.0; variable
158 dotR += A_real * x_real - (-A_imag) * x_imag;
163 REAL(Y, iy) += alpha_real * dotR - alpha_imag * dotI;
164 IMAG(Y, iy) += alpha_real * dotI + alpha_imag * dotR;
/dports/math/gsl/gsl-2.7/cblas/
H A Dsource_gemv_c.h77 BASE dotR = 0.0; variable
86 dotR += A_real * x_real - A_imag * x_imag;
91 REAL(Y, iy) += alpha_real * dotR - alpha_imag * dotI;
92 IMAG(Y, iy) += alpha_real * dotI + alpha_imag * dotR;
138 BASE dotR = 0.0; variable
147 dotR += A_real * x_real - (-A_imag) * x_imag;
152 REAL(Y, iy) += alpha_real * dotR - alpha_imag * dotI;
153 IMAG(Y, iy) += alpha_real * dotI + alpha_imag * dotR;
H A Dsource_gbmv_c.h80 BASE dotR = 0.0; variable
91 dotR += A_real * x_real - A_imag * x_imag;
96 REAL(Y, iy) += alpha_real * dotR - alpha_imag * dotI;
97 IMAG(Y, iy) += alpha_real * dotI + alpha_imag * dotR;
149 BASE dotR = 0.0; variable
160 dotR += A_real * x_real - (-A_imag) * x_imag;
165 REAL(Y, iy) += alpha_real * dotR - alpha_imag * dotI;
166 IMAG(Y, iy) += alpha_real * dotI + alpha_imag * dotR;
/dports/games/openjk/OpenJK-07675e2/codeJK2/game/
H A Dbg_panimate.cpp1255 float dotR = DotProduct( enemyDir, faceRight ); in PM_AttackForEnemyPos() local
1256 if ( dotR > 0.35 ) in PM_AttackForEnemyPos()
1260 else if ( dotR < -0.35 ) in PM_AttackForEnemyPos()
1264 else if ( dotR > 0.15 ) in PM_AttackForEnemyPos()
1268 else if ( dotR < -0.15 ) in PM_AttackForEnemyPos()
H A Dbg_pmove.cpp707 float dotR = DotProduct( facingRight, pm->ps->velocity ); in PM_CheckJump() local
709 if ( fabs(dotR) > fabs(dotF) * 1.5 ) in PM_CheckJump()
711 if ( dotR > 150 ) in PM_CheckJump()
715 else if ( dotR < -150 ) in PM_CheckJump()
/dports/games/openjk/OpenJK-07675e2/code/game/
H A Dbg_panimate.cpp2393 float dotR = DotProduct( enemyDir, faceRight ); in PM_AttackForEnemyPos() local
2394 if ( dotR > 0.35 ) in PM_AttackForEnemyPos()
2398 else if ( dotR < -0.35 ) in PM_AttackForEnemyPos()
2402 else if ( dotR > 0.15 ) in PM_AttackForEnemyPos()
2406 else if ( dotR < -0.15 ) in PM_AttackForEnemyPos()
H A Dbg_pmove.cpp1323 float dotR = DotProduct( facingRight, pm->ps->velocity ); in PM_CheckJump() local
1325 if ( fabs(dotR) > fabs(dotF) * 1.5 ) in PM_CheckJump()
1327 if ( dotR > 150 ) in PM_CheckJump()
1331 else if ( dotR < -150 ) in PM_CheckJump()
7831 float dotR = DotProduct( facingRight, pm->ps->velocity ); in PM_JetPackAnim() local
7833 if ( fabs(dotR) > fabs(dotF) * 1.5 ) in PM_JetPackAnim()
7835 if ( dotR > 150 ) in PM_JetPackAnim()
7839 else if ( dotR < -150 ) in PM_JetPackAnim()
/dports/games/openjk/OpenJK-07675e2/codemp/game/
H A Dbg_pmove.c1949 float dotR, dotF; in PM_CheckJump() local
1954 dotR = DotProduct( facingRight, pm->ps->velocity ); in PM_CheckJump()
1957 if ( fabs(dotR) > fabs(dotF) * 1.5 ) in PM_CheckJump()
1959 if ( dotR > 150 ) in PM_CheckJump()
1963 else if ( dotR < -150 ) in PM_CheckJump()